-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial revisions of collected resources
- Loading branch information
Showing
2 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Classification | ||
|
||
Currently collection notes and material on classification. | ||
|
||
## Naive Bayes | ||
|
||
Most classification line Naive Bayes is not really AI, but probabilistic models, but it is a useful tool which can be used instead of AI to solve some types of problems. | ||
|
||
Naive Bayes is very wellknown from spam filters. | ||
|
||
### Perl | ||
|
||
- [MetaCPAN: AI::Categorizer](https://metacpan.org/pod/AI::Categorizer#AI::Categorizer::Learner::NaiveBayes) | ||
- [MetaCPAN: Data::Classifier::NaiveBayes](https://metacpan.org/pod/Data::Classifier::NaiveBayes) | ||
- [MetaCPAN: Algorithm::NaiveBayes](https://metacpan.org/pod/Algorithm::NaiveBayes) | ||
- [MetaCPAN: AI::Classifier::Text](https://metacpan.org/pod/AI::Classifier::Text) | ||
- [MetaCPAN: AI::NaiveBayes::Learner](https://metacpan.org/pod/AI::NaiveBayes::Learner) | ||
- [MetaCPAN: AI::NaiveBayes](https://metacpan.org/pod/AI::NaiveBayes) | ||
|
||
## Resources and References | ||
|
||
- [Geeksforgeeks: "Geeting Started with Classification](https://www.geeksforgeeks.org/getting-started-with-classification/) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# NLP | ||
|
||
Natural Language Processing (NLP). | ||
|
||
Notes on NLP and collection of resources of NodeJS Natural. | ||
|
||
## Resources and References | ||
|
||
- [Blog Logrocket: Natural Language Processing in NodeJS](https://blog.logrocket.com/natural-language-processing-node-js/) | ||
- [Blog Logrocket: Natural Language Processing in NodeJS (installation)](https://blog.logrocket.com/natural-language-processing-node-js/#installation) | ||
- [Blog post by Chris Sumbel](https://chrisumbel.com/article/node_js_natural_language_porter_stemmer_lancaster_bayes_naive_metaphone_soundex/) | ||
- [GitHub: Natural (NodeJS)](https://naturalnode.github.io/natural/) | ||
- [Dzone: Using Natural NLP Module](https://dzone.com/articles/using-natural-nlp-module) | ||
- [GitHub: NLP in JavaScript with Natural](https://github.com/handav/nlp-in-javascript-with-natural) | ||
- [Egghead lessons_ "JavaScript Classify JSON test with matchine learning in Natural"](https://egghead.io/lessons/javascript-classify-json-text-data-with-machine-learning-in-natural) |