Skip to content

Commit

Permalink
Ajusted to use NB algorithm
Browse files Browse the repository at this point in the history
  • Loading branch information
maiquelcraash committed Jun 20, 2018
1 parent c70e5b7 commit 8a2b801
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/properties.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

/* Classifier Config */
exports.EFFECTIVE_PERCENTUAL = 65; // Ponto de corte entre agressivo e não agressivo
exports.CLASSIFIER_ALGORITHM = "LR"; //"NB" (Nayve Bayes) or "LR" (Linear Regression)
exports.CLASSIFIER_ALGORITHM = "NB"; //"NB" (Nayve Bayes) or "LR" (Linear Regression)

if (process.env.NODE_ENV === "development") {
exports.CLASSIFIER_SERVER_PORT = 8082;
Expand All @@ -20,7 +20,7 @@
exports.WEB_SERVER_HOST = "localhost";

exports.MONGODB_CONFIG = {
"mongoUrl": "mongodb://localhost:27017/KeepCalm",
"mongoUrl": "mongodb://localhost:27017/KeepCalm",
};
}

Expand Down

0 comments on commit 8a2b801

Please sign in to comment.