このプロジェクトは、Node.js と Natural ライブラリを使用して、電子メールを スパム または 非スパム として分類する AI ベースのアプリケーションを作成します。 🎜>。このアプリケーションは、スパム検出に 単純ベイズ分類器 を使用します。これは、テキスト分類タスクの一般的なアルゴリズムです。
始める前に、以下がインストールされていることを確認してください:
mkdir spam-email-classifier cd spam-email-classifier
npm init -y
次のコマンドを実行して、必要な依存関係をインストールします。
npm install natural
新しい JavaScript ファイル (例: spamClassifier.js) を作成し、次のコードを追加します。
const natural = require('natural'); // Create a new Naive Bayes classifier const classifier = new natural.BayesClassifier(); // Sample spam and non-spam data const spamData = [ { text: "Congratulations, you've won a 00 gift card!", label: 'spam' }, { text: "You are eligible for a free trial, click here to sign up.", label: 'spam' }, { text: "Important meeting tomorrow at 10 AM", label: 'not_spam' }, { text: "Let's grab lunch this weekend!", label: 'not_spam' } ]; // Add documents to the classifier (training data) spamData.forEach(item => { classifier.addDocument(item.text, item.label); }); // Train the classifier classifier.train(); // Function to classify an email function classifyEmail(emailContent) { const result = classifier.classify(emailContent); return result === 'spam' ? "This is a spam email" : "This is not a spam email"; } // Example of using the classifier to detect spam const testEmail = "Congratulations! You have won a 00 gift card."; console.log(classifyEmail(testEmail)); // Output: "This is a spam email" // Save the trained model to a file (optional) classifier.save('spamClassifier.json', function(err, classifier) { if (err) { console.log('Error saving classifier:', err); } else { console.log('Classifier saved successfully!'); } });
分類子を実行するには、ターミナルを開いてプロジェクト フォルダーに移動します。次に、次のコマンドを実行します:
node spamClassifier.js
次のような出力が表示されるはずです:
This is a spam email Classifier saved successfully!
後で分類子モデルをロードして、新しいメールを分類できます。モデルをロードして新しいメールを分類する方法は次のとおりです:
const natural = require('natural'); // Load the saved classifier natural.BayesClassifier.load('spamClassifier.json', null, function(err, classifier) { if (err) { console.log('Error loading classifier:', err); } else { // Classify a new email const testEmail = "You have won a free iPhone!"; console.log(classifier.classify(testEmail)); // Output: 'spam' or 'not_spam' } });
スパム分類子の精度を向上させるには、次のことができます。
アプリからメールを送受信したい場合は、Nodemailer ライブラリを使用してメールを送信できます。
mkdir spam-email-classifier cd spam-email-classifier
npm init -y
このガイドでは、Node.js と Naive Bayes を使用して、電子メールをスパムかスパムではないか分類する AI アプリのセットアップ方法を説明しました。このアプリは次の方法で拡張できます:
以上がAI を使用したスパムメール分類器の構築: 基本的なアプリケーションの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。