├── events.md
├── meetups.md
├── scripts
├── requirements.txt
└── pull_R_packages.py
├── ml-curriculum.md
├── blogs.md
├── courses.md
├── LICENSE
├── books.md
└── README.md
/events.md:
--------------------------------------------------------------------------------
1 | The following is a list of professional events on Machine Learning and Artificial Intelligence
2 |
3 | ## Machine Learning and Artificial Intelligence
4 |
5 | * [AI & ML Events](https://aiml.events) - The best upcoming hand-picked conferences and exhibitions in the field of artificial intelligence and machine learning
6 |
--------------------------------------------------------------------------------
/meetups.md:
--------------------------------------------------------------------------------
1 | The following is a list of free-to-attend meetups and local events on Machine Learning
2 |
3 | - [India](#india)
4 | - [Bangalore](#bangalore)
5 | - [Brazil](#india)
6 | - [São Paulo](#saopaulo)
7 |
8 | ## India
9 |
10 |
11 | ### Bangalore
12 | * [Bangalore Machine Learning Meetup (BangML)](https://www.meetup.com/BangML/)
13 |
14 |
15 | ## Brazil
16 |
17 |
18 | ### São Paulo
19 | * [AI Brasil](https://www.meetup.com/pt-BR/ai-brasil/)
20 |
--------------------------------------------------------------------------------
/scripts/requirements.txt:
--------------------------------------------------------------------------------
1 | pyquery
2 | urllib3
3 | codecs
4 |
5 |
6 | # pyquery : a jquery-like library for python
7 | ## pyquery allows you to make jquery queries on xml documents. The API is as much as possible the similar to jquery.
8 |
9 |
10 | # urllib3 is a powerful, sanity-friendly HTTP client for Python.
11 | ## urllib3 brings many critical features that are missing from the Python standard libraries: ... Helpers for retrying requests and dealing with HTTP redirects.
12 |
13 |
14 | # codecs
15 | ## A codec is a device or computer program for encoding or decoding a digital data stream or signal. Codec is a portmanteau of coder-decoder. A coder encodes a data stream or a signal for transmission or storage, possibly in encrypted form, and the decoder function reverses the encoding for playback or editing.
16 |
--------------------------------------------------------------------------------
/scripts/pull_R_packages.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/python
2 |
3 | """
4 | This script will scrape the r-project.org machine learning selection and
5 | format the packages in github markdown style for this
6 | awesome-machine-learning repo.
7 | """
8 |
9 | from pyquery import PyQuery as pq
10 | import urllib
11 | import codecs
12 | import random
13 |
14 | text_file = codecs.open("Packages.txt", encoding='utf-8', mode="w")
15 | d = pq(url='http://cran.r-project.org/web/views/MachineLearning.html',
16 | opener=lambda url, **kw: urllib.urlopen(url).read())
17 |
18 | for e in d("li").items():
19 | package_name = e("a").html()
20 | package_link = e("a")[0].attrib['href']
21 | if '..' in package_link:
22 | package_link = package_link.replace("..",
23 | 'http://cran.r-project.org/web')
24 | dd = pq(url=package_link, opener=lambda url,
25 | **kw: urllib.urlopen(url).read())
26 | package_description = dd("h2").html()
27 | text_file.write(" [%s](%s) - %s \n" % (package_name, package_link,
28 | package_description))
29 | # print("* [%s](%s) - %s" % (package_name,package_link,
30 | # package_description))
31 |
--------------------------------------------------------------------------------
/ml-curriculum.md:
--------------------------------------------------------------------------------
1 | # How would your curriculum for a machine learning beginner look like?
2 | If I had to put together a study plan for a beginner, I would probably start with an easy-going intro course such as
3 |
4 | - Andrew Ng's [Machine Learning Course on Coursera](https://www.coursera.org/learn/machine-learning)
5 |
6 | Next, I would recommend a good intro book on 'Data Mining' (data mining is essentially about extracting knowledge from data, mainly using machine learning algorithms). I can highly recommend the following book written by one of my former professors:
7 |
8 | - P.-N. Tan, M. Steinbach, and V. Kumar. [Introduction to Data Mining](https://www-users.cs.umn.edu/~kumar/dmbook/index.php), (Second Edition).
9 |
10 | This book will provide you with a great overview of what's currently out there; you will not only learn about different machine learning techniques, but also learn how to "understand" and "handle" and interpret data -- remember; without "good," informative data, a machine learning algorithm is practically worthless. Additionally, you will learn about alternative techniques since machine learning is not always the only and best solution to a problem
11 |
12 | > if all you have is a hammer, everything looks like a nail ...
13 |
14 | Now, After completing the Coursera course, you will have a basic understanding of ML and broadened your understanding via the Data Mining book.
15 | I don't want to self-advertise here, but I think my book would be a good follow-up to learn ML in more depth, understand the algorithms, learn about different data processing pipelines and evaluation techniques, best practices, and learn how to put in into action using Python, NumPy, scikit-learn, and Theano so that you can start working on your personal projects.
16 |
17 | While you work on your individual projects, I would maybe deepen your (statistical learning) knowledge via one of the three below:
18 |
19 |
20 | - T. Hastie, R. Tibshirani, J. Friedman, T. Hastie, J. Friedman, and R. Tibshirani. [The Elements of Statistical Learning](https://statweb.stanford.edu/~tibs/ElemStatLearn/), volume 2. Springer, 2009.
21 | - C. M. Bishop et al. [Pattern Recognition and Machine Learning](https://www.springer.com/us/book/9780387310732), volume 1. Springer New York, 2006.
22 | - Duda, Richard O., Peter E. Hart, and David G. Stork. [Pattern Classification](https://www.wiley.com/WileyCDA/WileyTitle/productCd-0471056693.html). John Wiley & Sons, 2012.
23 |
24 | When you are through all of that and still hungry to learn more, I recommend
25 |
26 | - [The Deep Learning book](https://www.iro.umontreal.ca/~bengioy/dlbook/) by Yoshua Bengio, Ian Goodfellow, and Aaron Courville. The release date is set around 2016, but the 613-page manuscript is already available as as of today (online and for free).
27 |
28 | - And in-between, if you are looking for a less technical yet very inspirational free-time read, I highly recommend [Pedro Domingo's The Master Algorithm: How the Quest for the Ultimate Learning Machine Will Remake Our World](https://homes.cs.washington.edu/~pedrod/)
29 |
--------------------------------------------------------------------------------
/blogs.md:
--------------------------------------------------------------------------------
1 | Blogs/Podcasts
2 | ===============
3 |
4 | [Hacker News for Data Science](https://www.datatau.com/news)
5 | [LightTag's Labeled Data Blog](https://lighttag.io/blog)
6 |
7 | Podcasts
8 | --------
9 |
10 | [The O'Reilly Data Show](http://radar.oreilly.com/tag/oreilly-data-show-podcast)
11 |
12 | [Partially Derivative](http://partiallyderivative.com/)
13 |
14 | [The Talking Machines](https://www.thetalkingmachines.com/)
15 |
16 | [The Data Skeptic](https://dataskeptic.com/)
17 |
18 | [Linear Digressions](https://lineardigressions.com)
19 |
20 | [Data Stories](http://datastori.es/)
21 |
22 | [Learning Machines 101](https://www.learningmachines101.com/)
23 |
24 | [Not So Standard Deviations](https://simplystatistics.org/2015/09/17/not-so-standard-deviations-the-podcast/)
25 |
26 | [TWIMLAI](https://twimlai.com/shows/)
27 |
28 | [Machine Learning Guide](http://ocdevel.com/podcasts/machine-learning)
29 |
30 | Newsletters
31 | -----------
32 |
33 | [AI Digest](https://aidigest.net/). A weekly newsletter to keep up to date with AI, machine learning, and data science. [Archive](https://aidigest.net/digests).
34 |
35 | Data Science / Statistics
36 | -------------------------
37 |
38 | https://blog.dominodatalab.com
39 |
40 | https://ahmedbesbes.com/
41 |
42 | https://jeremykun.com/
43 |
44 | https://iamtrask.github.io/
45 |
46 | https://blog.explainmydata.com/
47 |
48 | https://statmodeling.stat.columbia.edu
49 |
50 | https://simplystatistics.org/
51 |
52 | https://www.evanmiller.org/
53 |
54 | https://jakevdp.github.io/
55 |
56 | http://wesmckinney.com
57 |
58 | https://www.overkillanalytics.net/
59 |
60 | https://newton.cx/~peter/
61 |
62 | https://mbakker7.github.io/exploratory_computing_with_python/
63 |
64 | https://camdavidsonpilon.github.io/Probabilistic-Programming-and-Bayesian-Methods-for-Hackers/
65 |
66 | https://colah.github.io/
67 |
68 | https://sebastianraschka.com/
69 |
70 | http://dogdogfish.com/
71 |
72 | https://www.johnmyleswhite.com/
73 |
74 | http://drewconway.com/zia/
75 |
76 | https://bugra.github.io/
77 |
78 | http://opendata.cern.ch/
79 |
80 | https://alexanderetz.com/
81 |
82 | http://www.sumsar.net/
83 |
84 | https://www.countbayesie.com
85 |
86 | https://karpathy.github.io/ https://medium.com/@karpathy
87 |
88 | http://blog.kaggle.com/
89 |
90 | https://www.danvk.org/
91 |
92 | http://hunch.net/
93 |
94 | http://www.randalolson.com/blog/
95 |
96 | https://www.johndcook.com/blog/r_language_for_programmers/
97 |
98 | https://www.dataschool.io/
99 |
100 | https://www.datasciencecentral.com
101 |
102 | https://mubaris.com
103 |
104 | https://distill.pub
105 |
106 | http://blog.shakirm.com/
107 |
108 | https://www.cs.ox.ac.uk/people/yarin.gal/website/blog.html
109 |
110 | [LightTag NLP Blog](https://www.lighttag.io/blog)
111 |
112 | Math
113 | ----
114 |
115 | https://www.allendowney.com/blog/
116 |
117 | https://healthyalgorithms.com/
118 |
119 | https://petewarden.com/
120 |
121 | https://blog.mrtz.org
122 |
123 | https://www.youtube.com/channel/UCYO_jab_esuFRV4b17AJtAw/videos
124 |
125 | https://www.youtube.com/channel/UCr22xikWUK2yUW4YxOKXclQ/videos
126 |
127 | Security Related
128 | ----------------
129 |
130 | https://jordan-wright.com/blog/
131 |
--------------------------------------------------------------------------------
/courses.md:
--------------------------------------------------------------------------------
1 | The following is a list of free or paid online courses on machine learning, statistics, data-mining, etc.
2 |
3 | ## Machine-Learning / Data Mining
4 |
5 | * [Artificial Intelligence (Columbia University)](https://www.edx.org/course/artificial-intelligence-ai-columbiax-csmm-101x-0) - free
6 | * [Machine Learning (Columbia University)](https://www.edx.org/course/machine-learning-columbiax-csmm-102x-0) - free
7 | * [Machine Learning (Stanford University)](https://www.coursera.org/learn/machine-learning) - free
8 | * [Neural Networks for Machine Learning (University of Toronto)](https://www.coursera.org/learn/neural-networks) - free. Also [available on YouTube](https://www.youtube.com/watch?v=cbeTc-Urqak&list=PLYvFQm7QY5Fy28dST8-qqzJjXr83NKWAr) as a playlist. #This course is no longer available on Coursera.
9 | * [Deep Learning Specialization (by Andrew Ng, deeplearning.ai)](https://www.coursera.org/specializations/deep-learning) - Courses: I Neural Networks and Deep Learning; II Improving Deep Neural Networks: Hyperparameter tuning, Regularization and Optimization; III Structuring Machine Learning Projects; IV Convolutional Neural Networks; V Sequence Models; Paid for grading/certification, financial aid available, free to audit
10 | * [Deep Learning Nano Degree on Udacity](https://www.udacity.com/course/deep-learning-nanodegree--nd101) - $
11 | * [Intro to Deep Learning (MIT)](http://introtodeeplearning.com/)
12 | * [Stanford's CS20 Tensorflow for Deep Learning Research](http://web.stanford.edu/class/cs20si/)
13 | * [fast.ai](https://www.fast.ai/) - deep learning MOOC
14 | * [Machine Learning Specialization (University of Washington)](https://www.coursera.org/specializations/machine-learning) - Courses: Machine Learning Foundations: A Case Study Approach, Machine Learning: Regression, Machine Learning: Classification, Machine Learning: Clustering & Retrieval, Machine Learning: Recommender Systems & Dimensionality Reduction,Machine Learning Capstone: An Intelligent Application with Deep Learning; free
15 | * [Machine Learning Course (2014-15 session) (by Nando de Freitas, University of Oxford)](https://www.cs.ox.ac.uk/people/nando.defreitas/machinelearning/) - Lecture slides and video recordings.
16 | * [Learning from Data (by Yaser S. Abu-Mostafa, Caltech)](http://www.work.caltech.edu/telecourse.html) - Lecture videos available
17 | * [Intro to Machine Learning](https://www.udacity.com/course/intro-to-machine-learning--ud120) - free
18 | * [Probabilistic Graphical Models (by Prof. Daphne Koller, Stanford)](https://www.coursera.org/specializations/probabilistic-graphical-models) Coursera Specialization
19 | * [Reinforcement Learning Course (by David Silver, DeepMind)](https://www.youtube.com/watch?v=2pWv7GOvuf0&list=PLzuuYNsE1EZAXYR4FJ75jcJseBmo4KQ9-) - YouTube playlist and [lecture slides](http://www0.cs.ucl.ac.uk/staff/d.silver/web/Teaching.html).
20 | * [Keras in Motion](https://www.manning.com/livevideo/keras-in-motion) $
21 | * [Stanford's CS231n: CNNs for Visual Recognition](https://www.youtube.com/watch?v=vT1JzLTH4G4&index=1&list=PL3FW7Lu3i5JvHM8ljYj-zLfQRF3EO8sYv) - Spring 2017 iteration, instructors (Fei-Fei Li, Justin Johnson, Serena Yeung), or [Winter 2016 edition](https://www.youtube.com/watch?v=NfnWJUyUJYU&list=PLkt2uSq6rBVctENoVBg1TpCC7OQi31AlC) instructors (Fei-Fei Li, Andrej Karpathy, Justin Johnson). [Course website](http://cs231n.github.io/) has supporting material.
22 | * [University of California, Berkeley's CS294: Deep Reinforcement Learning](https://www.youtube.com/watch?v=8jQIKgTzQd4&list=PLkFD6_40KJIwTmSbCv9OVJB3YaO4sFwkX) - Fall 2017 edition. [Course website](http://rll.berkeley.edu/deeprlcourse/) has lecture slides and other related material.
23 | * [Machine Learning (Georgia Tech) on Udacity](https://www.udacity.com/course/machine-learning--ud262) - free
24 | * [Reinforcement Learning (Georgia Tech) on Udacity ](https://www.udacity.com/course/reinforcement-learning--ud600) - free
25 | * [Machine Learning for Trading](https://www.udacity.com/course/machine-learning-for-trading--ud501) - free
26 | * [Mining of Massive Datasets](https://www.youtube.com/watch?v=xoA5v9AO7S0&list=PLLssT5z_DsK9JDLcT8T62VtzwyW9LNepV) (YouTube playlist) - Course [website](http://mmds.org/) has info about accompanying book, free chapters, and Stanford's [MOOC](https://lagunita.stanford.edu/courses/course-v1:ComputerScience+MMDS+SelfPaced/about)
27 | * [Machine Learning Crash Course (Google)](https://developers.google.com/machine-learning/crash-course/) - free
28 | * [Machine Learning Mini Bootcamp Course (LambdaSchool)](https://lambdaschool.com/courses/data-science/intro/) - free and $
29 | * [Microsoft Professional Program for Artificial Intelligence](https://academy.microsoft.com/en-us/professional-program/tracks/artificial-intelligence/) - free
30 | * [Open Machine Learning Course](https://github.com/Yorko/mlcourse.ai) with [articles](https://medium.com/open-machine-learning-course) on Medium
31 | * [Machine Learning A-Z (Udemy)](https://www.udemy.com/machinelearning/) - Hands-On Python & R In Data Science
32 | * [Deep Learning Crash Course](https://www.manning.com/livevideo/deep-learning-crash-course) - $
33 | * [Reinforcement Learning in Motion](https://www.manning.com/livevideo/reinforcement-learning-in-motion) - $
34 | * [Udemy A-Z Machine learning course](https://www.udemy.com/course/machinelearning/) - $
35 | * [Statistics and Probability-Khan Academy](https://www.khanacademy.org/math/statistics-probability) - free
36 | * [Math and Architectures of Deep Learning](https://www.manning.com/books/math-and-architectures-of-deep-learning) - $
37 | * [Deep Learning with Python, Second Edition](https://www.manning.com/books/deep-learning-with-python-second-edition) - $
38 | * [Transfer Learning for Natural Language Processing](https://www.manning.com/books/transfer-learning-for-natural-language-processing) - $
39 | * [Grokking Artificial Intelligence Algorithms](https://www.manning.com/books/grokking-artificial-intelligence-algorithms) - $
40 | * [Learn ML from experts at Google](https://ai.google/education/) - free
41 | * [Kaggle courses on ML,AI and DS(certificate)](https://www.kaggle.com/learn/overview) - free
42 | * [Ml with python(Cognitive classes)](https://cognitiveclass.ai/courses/machine-learning-with-python) - free
43 | * [Intro to Data science(Cognitive classes)](https://cognitiveclass.ai/courses/data-science-101) - free
44 | * [Machine Learning for Business](https://www.manning.com/books/machine-learning-for-business) - $
45 | * [Transfer Learning for Natural Language Processing](https://www.manning.com/books/transfer-learning-for-natural-language-processing) - $
46 | * [In-depth introduction to machine learning in 15 hours of expert videos (by Prof. Trevor Hastie, Prof. Rob Tibshirani, Stanford)](https://www.dataschool.io/15-hours-of-expert-machine-learning-videos/) - free
47 | * [Data Scientist in Python (Dataquest)](https://www.dataquest.io/path/data-scientist/) - free and $
48 | * [AI Expert Roadmap - Roadmap to becoming an Artificial Intelligence Expert](https://github.com/AMAI-GmbH/AI-Expert-Roadmap) - free
49 | * [Semi-Supervised Deep Learning with GANs for Melanoma Detection](https://www.manning.com/liveproject/semi-supervised-deep-learning-with-gans-for-melanoma-detection) - $
50 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Creative Commons Legal Code
2 |
3 | CC0 1.0 Universal
4 |
5 | CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE
6 | LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN
7 | ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS
8 | INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES
9 | REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS
10 | PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM
11 | THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED
12 | HEREUNDER.
13 |
14 | Statement of Purpose
15 |
16 | The laws of most jurisdictions throughout the world automatically confer
17 | exclusive Copyright and Related Rights (defined below) upon the creator
18 | and subsequent owner(s) (each and all, an "owner") of an original work of
19 | authorship and/or a database (each, a "Work").
20 |
21 | Certain owners wish to permanently relinquish those rights to a Work for
22 | the purpose of contributing to a commons of creative, cultural and
23 | scientific works ("Commons") that the public can reliably and without fear
24 | of later claims of infringement build upon, modify, incorporate in other
25 | works, reuse and redistribute as freely as possible in any form whatsoever
26 | and for any purposes, including without limitation commercial purposes.
27 | These owners may contribute to the Commons to promote the ideal of a free
28 | culture and the further production of creative, cultural and scientific
29 | works, or to gain reputation or greater distribution for their Work in
30 | part through the use and efforts of others.
31 |
32 | For these and/or other purposes and motivations, and without any
33 | expectation of additional consideration or compensation, the person
34 | associating CC0 with a Work (the "Affirmer"), to the extent that he or she
35 | is an owner of Copyright and Related Rights in the Work, voluntarily
36 | elects to apply CC0 to the Work and publicly distribute the Work under its
37 | terms, with knowledge of his or her Copyright and Related Rights in the
38 | Work and the meaning and intended legal effect of CC0 on those rights.
39 |
40 | 1. Copyright and Related Rights. A Work made available under CC0 may be
41 | protected by copyright and related or neighboring rights ("Copyright and
42 | Related Rights"). Copyright and Related Rights include, but are not
43 | limited to, the following:
44 |
45 | i. the right to reproduce, adapt, distribute, perform, display,
46 | communicate, and translate a Work;
47 | ii. moral rights retained by the original author(s) and/or performer(s);
48 | iii. publicity and privacy rights pertaining to a person's image or
49 | likeness depicted in a Work;
50 | iv. rights protecting against unfair competition in regards to a Work,
51 | subject to the limitations in paragraph 4(a), below;
52 | v. rights protecting the extraction, dissemination, use and reuse of data
53 | in a Work;
54 | vi. database rights (such as those arising under Directive 96/9/EC of the
55 | European Parliament and of the Council of 11 March 1996 on the legal
56 | protection of databases, and under any national implementation
57 | thereof, including any amended or successor version of such
58 | directive); and
59 | vii. other similar, equivalent or corresponding rights throughout the
60 | world based on applicable law or treaty, and any national
61 | implementations thereof.
62 |
63 | 2. Waiver. To the greatest extent permitted by, but not in contravention
64 | of, applicable law, Affirmer hereby overtly, fully, permanently,
65 | irrevocably and unconditionally waives, abandons, and surrenders all of
66 | Affirmer's Copyright and Related Rights and associated claims and causes
67 | of action, whether now known or unknown (including existing as well as
68 | future claims and causes of action), in the Work (i) in all territories
69 | worldwide, (ii) for the maximum duration provided by applicable law or
70 | treaty (including future time extensions), (iii) in any current or future
71 | medium and for any number of copies, and (iv) for any purpose whatsoever,
72 | including without limitation commercial, advertising or promotional
73 | purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each
74 | member of the public at large and to the detriment of Affirmer's heirs and
75 | successors, fully intending that such Waiver shall not be subject to
76 | revocation, rescission, cancellation, termination, or any other legal or
77 | equitable action to disrupt the quiet enjoyment of the Work by the public
78 | as contemplated by Affirmer's express Statement of Purpose.
79 |
80 | 3. Public License Fallback. Should any part of the Waiver for any reason
81 | be judged legally invalid or ineffective under applicable law, then the
82 | Waiver shall be preserved to the maximum extent permitted taking into
83 | account Affirmer's express Statement of Purpose. In addition, to the
84 | extent the Waiver is so judged Affirmer hereby grants to each affected
85 | person a royalty-free, non transferable, non sublicensable, non exclusive,
86 | irrevocable and unconditional license to exercise Affirmer's Copyright and
87 | Related Rights in the Work (i) in all territories worldwide, (ii) for the
88 | maximum duration provided by applicable law or treaty (including future
89 | time extensions), (iii) in any current or future medium and for any number
90 | of copies, and (iv) for any purpose whatsoever, including without
91 | limitation commercial, advertising or promotional purposes (the
92 | "License"). The License shall be deemed effective as of the date CC0 was
93 | applied by Affirmer to the Work. Should any part of the License for any
94 | reason be judged legally invalid or ineffective under applicable law, such
95 | partial invalidity or ineffectiveness shall not invalidate the remainder
96 | of the License, and in such case Affirmer hereby affirms that he or she
97 | will not (i) exercise any of his or her remaining Copyright and Related
98 | Rights in the Work or (ii) assert any associated claims and causes of
99 | action with respect to the Work, in either case contrary to Affirmer's
100 | express Statement of Purpose.
101 |
102 | 4. Limitations and Disclaimers.
103 |
104 | a. No trademark or patent rights held by Affirmer are waived, abandoned,
105 | surrendered, licensed or otherwise affected by this document.
106 | b. Affirmer offers the Work as-is and makes no representations or
107 | warranties of any kind concerning the Work, express, implied,
108 | statutory or otherwise, including without limitation warranties of
109 | title, merchantability, fitness for a particular purpose, non
110 | infringement, or the absence of latent or other defects, accuracy, or
111 | the present or absence of errors, whether or not discoverable, all to
112 | the greatest extent permissible under applicable law.
113 | c. Affirmer disclaims responsibility for clearing rights of other persons
114 | that may apply to the Work or any use thereof, including without
115 | limitation any person's Copyright and Related Rights in the Work.
116 | Further, Affirmer disclaims responsibility for obtaining any necessary
117 | consents, permissions or other rights required for any use of the
118 | Work.
119 | d. Affirmer understands and acknowledges that Creative Commons is not a
120 | party to this document and has no duty or obligation with respect to
121 | this CC0 or use of the Work.
122 |
123 |
--------------------------------------------------------------------------------
/books.md:
--------------------------------------------------------------------------------
1 | The following is a list of free and/or open source books on machine learning, statistics, data mining, etc.
2 |
3 | ## Machine Learning / Data Mining
4 |
5 | * [The Hundred-Page Machine Learning Book](http://themlbook.com/wiki/doku.php)
6 | * [Real World Machine Learning](https://www.manning.com/books/real-world-machine-learning) [Free Chapters]
7 | * [An Introduction To Statistical Learning](https://www-bcf.usc.edu/~gareth/ISL/) - Book + R Code
8 | * [Elements of Statistical Learning](https://web.stanford.edu/~hastie/ElemStatLearn/) - Book
9 | * [Computer Age Statistical Inference (CASI)](https://web.stanford.edu/~hastie/CASI_files/PDF/casi.pdf) ([Permalink as of October 2017](https://perma.cc/J8JG-ZVFW)) - Book
10 | * [Probabilistic Programming & Bayesian Methods for Hackers](http://camdavidsonpilon.github.io/Probabilistic-Programming-and-Bayesian-Methods-for-Hackers/) - Book + IPython Notebooks
11 | * [Think Bayes](https://greenteapress.com/wp/think-bayes/) - Book + Python Code
12 | * [Information Theory, Inference, and Learning Algorithms](http://www.inference.phy.cam.ac.uk/mackay/itila/book.html)
13 | * [Gaussian Processes for Machine Learning](http://www.gaussianprocess.org/gpml/chapters/)
14 | * [Data Intensive Text Processing w/ MapReduce](https://lintool.github.io/MapReduceAlgorithms/)
15 | * [Reinforcement Learning: - An Introduction](http://incompleteideas.net/book/the-book-2nd.html) ([Permalink to Nov 2017 Draft](https://perma.cc/83ER-64M3))
16 | * [Mining Massive Datasets](http://infolab.stanford.edu/~ullman/mmds/book.pdf)
17 | * [A First Encounter with Machine Learning](https://www.ics.uci.edu/~welling/teaching/273ASpring10/IntroMLBook.pdf)
18 | * [Pattern Recognition and Machine Learning](http://users.isr.ist.utl.pt/~wurmd/Livros/school/Bishop%20-%20Pattern%20Recognition%20And%20Machine%20Learning%20-%20Springer%20%202006.pdf)
19 | * [Machine Learning & Bayesian Reasoning](http://web4.cs.ucl.ac.uk/staff/D.Barber/textbook/090310.pdf)
20 | * [Introduction to Machine Learning](https://alex.smola.org/drafts/thebook.pdf) - Alex Smola and S.V.N. Vishwanathan
21 | * [A Probabilistic Theory of Pattern Recognition](https://www.szit.bme.hu/~gyorfi/pbook.pdf)
22 | * [Introduction to Information Retrieval](https://nlp.stanford.edu/IR-book/pdf/irbookprint.pdf)
23 | * [Forecasting: principles and practice](https://otexts.com/fpp2/)
24 | * [Practical Artificial Intelligence Programming in Java](https://www.saylor.org/site/wp-content/uploads/2011/11/CS405-1.1-WATSON.pdf)
25 | * [Introduction to Machine Learning](https://arxiv.org/pdf/0904.3664v1.pdf) - Amnon Shashua
26 | * [Reinforcement Learning](https://www.intechopen.com/books/reinforcement_learning)
27 | * [Machine Learning](https://www.intechopen.com/books/machine_learning)
28 | * [A Quest for AI](https://ai.stanford.edu/~nilsson/QAI/qai.pdf)
29 | * [Introduction to Applied Bayesian Statistics and Estimation for Social Scientists](https://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.177.857&rep=rep1&type=pdf) - Scott M. Lynch
30 | * [Bayesian Modeling, Inference and Prediction](https://users.soe.ucsc.edu/~draper/draper-BMIP-dec2005.pdf)
31 | * [A Course in Machine Learning](http://ciml.info/)
32 | * [Machine Learning, Neural and Statistical Classification](https://www1.maths.leeds.ac.uk/~charles/statlog/)
33 | * [Bayesian Reasoning and Machine Learning](http://web4.cs.ucl.ac.uk/staff/D.Barber/pmwiki/pmwiki.php?n=Brml.HomePage) Book+MatlabToolBox
34 | * [R Programming for Data Science](https://leanpub.com/rprogramming)
35 | * [Data Mining - Practical Machine Learning Tools and Techniques](https://cdn.preterhuman.net/texts/science_and_technology/artificial_intelligence/Data%20Mining%20Practical%20Machine%20Learning%20Tools%20and%20Techniques%202d%20ed%20-%20Morgan%20Kaufmann.pdf) Book
36 | * [Machine Learning with TensorFlow](https://www.manning.com/books/machine-learning-with-tensorflow) Early access book
37 | * [Machine Learning Systems](https://www.manning.com/books/machine-learning-systems) Early access book
38 | * [Hands‑On Machine Learning with Scikit‑Learn and TensorFlow](http://index-of.es/Varios-2/Hands%20on%20Machine%20Learning%20with%20Scikit%20Learn%20and%20Tensorflow.pdf) - Aurélien Géron
39 | * [R for Data Science: Import, Tidy, Transform, Visualize, and Model Data](https://r4ds.had.co.nz/) - Wickham and Grolemund. Great as introduction on how to use R.
40 | * [Advanced R](http://adv-r.had.co.nz/) - Hadley Wickham. More advanced usage of R for programming.
41 | * [Graph-Powered Machine Learning](https://www.manning.com/books/graph-powered-machine-learning) - Alessandro Negro. Combining graph theory and models to improve machine learning projects
42 | * [Machine Learning for Dummies](https://mscdss.ds.unipi.gr/wp-content/uploads/2018/02/Untitled-attachment-00056-2-1.pdf)
43 | * [Machine Learning for Mortals (Mere and Otherwise)](https://www.manning.com/books/machine-learning-for-mortals-mere-and-otherwise) - Early access book that provides basics of machine learning and using R programming language.
44 | * [Grokking Machine Learning](https://www.manning.com/books/grokking-machine-learning) - Early access book that introduces the most valuable machine learning techniques.
45 | - [Foundations of Machine Learning](https://cs.nyu.edu/~mohri/mlbook/) - Mehryar Mohri, Afshin Rostamizadeh, and Ameet Talwalkar
46 | - [Understanding Machine Learning](http://www.cs.huji.ac.il/~shais/UnderstandingMachineLearning/) - Shai Shalev-Shwartz and Shai Ben-David
47 | - [How Machine Learning Works](https://www.manning.com/books/how-machine-learning-works) - Mostafa Samir. Early access book that intorduces machine learning from both practical and theoretical aspects in a non-threating way.
48 | - [Fighting Churn With Data](https://www.manning.com/books/fighting-churn-with-data) [Free Chapter] Carl Gold - Hands on course in applied data science in Python and SQL, taught through the use case of customer churn.
49 | - [Machine Learning Bookcamp](https://www.manning.com/books/machine-learning-bookcamp) - Alexey Grigorev - a project-based approach on learning machine learning (early access).
50 | - [AI Summer](https://theaisummer.com/) A blog to help you learn Deep Learning an Artificial Intelligence
51 | - [Python Data Science Handbook- Oriely](https://tanthiamhuat.files.wordpress.com/2018/04/pythondatasciencehandbook.pdf)
52 | ## Deep Learning
53 |
54 | * [Deep Learning - An MIT Press book](https://www.deeplearningbook.org/)
55 | * [Deep Learning with Python](https://www.manning.com/books/deep-learning-with-python)
56 | * [Deep Learning with JavaScript](https://www.manning.com/books/deep-learning-with-javascript) Early access book
57 | * [Grokking Deep Learning](https://www.manning.com/books/grokking-deep-learning) Early access book
58 | * [Deep Learning for Search](https://www.manning.com/books/deep-learning-for-search) Early access book
59 | * [Deep Learning and the Game of Go](https://www.manning.com/books/deep-learning-and-the-game-of-go) Early access book
60 | * [Machine Learning for Business](https://www.manning.com/books/machine-learning-for-business) Early access book
61 | * [Probabilistic Deep Learning with Python](https://www.manning.com/books/probabilistic-deep-learning-with-python) Early access book
62 | * [Deep Learning with Structured Data](https://www.manning.com/books/deep-learning-with-structured-data) Early access book
63 | * [Computer Vision: Algorithms and Applications](http://szeliski.org/Book/drafts/SzeliskiBook_20100903_draft.pdf)
64 | * [Deep Learning](https://www.deeplearningbook.org/)[Ian Goodfellow, Yoshua Bengio and Aaron Courville]
65 |
66 | ## Natural Language Processing
67 |
68 | * [Coursera Course Book on NLP](http://www.cs.columbia.edu/~mcollins/notes-spring2013.html)
69 | * [NLTK](https://www.nltk.org/book/)
70 | * [Foundations of Statistical Natural Language Processing](https://nlp.stanford.edu/fsnlp/promo/)
71 | * [Natural Language Processing in Action](https://www.manning.com/books/natural-language-processing-in-action) Early access book
72 | * [Real-World Natural Language Processing](https://www.manning.com/books/real-world-natural-language-processing) Early access book
73 | * [Essential Natural Language Processing](https://www.manning.com/books/essential-natural-language-processing) Early access book
74 |
75 | ## Information Retrieval
76 |
77 | * [An Introduction to Information Retrieval](https://nlp.stanford.edu/IR-book/pdf/irbookonlinereading.pdf)
78 |
79 | ## Neural Networks
80 |
81 | * [A Brief Introduction to Neural Networks](http://www.dkriesel.com/_media/science/neuronalenetze-en-zeta2-2col-dkrieselcom.pdf)
82 | * [Neural Networks and Deep Learning](http://neuralnetworksanddeeplearning.com/)
83 |
84 | ## Probability & Statistics
85 |
86 | * [Think Stats](https://www.greenteapress.com/thinkstats/) - Book + Python Code
87 | * [From Algorithms to Z-Scores](http://heather.cs.ucdavis.edu/probstatbook) - Book
88 | * [The Art of R Programming](http://heather.cs.ucdavis.edu/~matloff/132/NSPpart.pdf) - Book (Not Finished)
89 | * [Introduction to statistical thought](https://people.math.umass.edu/~lavine/Book/book.pdf)
90 | * [Basic Probability Theory](https://www.math.uiuc.edu/~r-ash/BPT/BPT.pdf)
91 | * [Introduction to probability](https://math.dartmouth.edu/~prob/prob/prob.pdf) - By Dartmouth College
92 | * [Probability & Statistics Cookbook](http://statistics.zone/)
93 | * [Introduction to Probability](http://athenasc.com/probbook.html) - Book and course by MIT
94 | * [The Elements of Statistical Learning: Data Mining, Inference, and Prediction.](https://web.stanford.edu/~hastie/ElemStatLearn/) - Book
95 | * [An Introduction to Statistical Learning with Applications in R](https://www-bcf.usc.edu/~gareth/ISL/) - Book
96 | * [Introduction to Probability and Statistics Using R](http://ipsur.r-forge.r-project.org/book/download/IPSUR.pdf) - Book
97 | * [Advanced R Programming](http://adv-r.had.co.nz) - Book
98 | * [Practical Regression and Anova using R](https://cran.r-project.org/doc/contrib/Faraway-PRA.pdf) - Book
99 | * [R practicals](http://www.columbia.edu/~cjd11/charles_dimaggio/DIRE/resources/R/practicalsBookNoAns.pdf) - Book
100 | * [The R Inferno](https://www.burns-stat.com/pages/Tutor/R_inferno.pdf) - Book
101 | * [Probability Theory: The Logic of Science](https://bayes.wustl.edu/etj/prob/book.pdf) - By Jaynes
102 |
103 | ## Linear Algebra
104 |
105 | * [The Matrix Cookbook](https://www.math.uwaterloo.ca/~hwolkowi/matrixcookbook.pdf)
106 | * [Linear Algebra by Shilov](https://cosmathclub.files.wordpress.com/2014/10/georgi-shilov-linear-algebra4.pdf)
107 | * [Linear Algebra Done Wrong](https://www.math.brown.edu/~treil/papers/LADW/LADW.html)
108 | * [Linear Algebra, Theory, and Applications](https://math.byu.edu/~klkuttle/Linearalgebra.pdf)
109 | * [Convex Optimization](https://web.stanford.edu/~boyd/cvxbook/bv_cvxbook.pdf)
110 | * [Applied Numerical Computing](https://www.seas.ucla.edu/~vandenbe/ee133a.html)
111 |
112 | ## Calculus
113 |
114 | * [Calculus Made Easy](https://github.com/lahorekid/Calculus/blob/master/Calculus%20Made%20Easy.pdf)
115 | * [calculus by ron larson](https://www.spps.org/cms/lib/MN01910242/Centricity/Domain/860/%20CalculusTextbook.pdf)
116 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Awesome Machine Learning [](https://github.com/sindresorhus/awesome)
2 |
3 | A curated list of awesome machine learning frameworks, libraries and software (by language). Inspired by `awesome-php`.
4 |
5 | _If you want to contribute to this list (please do), send me a pull request or contact me [@josephmisiti](https://twitter.com/josephmisiti)._
6 | Also, a listed repository should be deprecated if:
7 |
8 | * Repository's owner explicitly say that "this library is not maintained".
9 | * Not committed for a long time (2~3 years).
10 |
11 | Further resources:
12 |
13 | * For a list of free machine learning books available for download, go [here](https://github.com/josephmisiti/awesome-machine-learning/blob/master/books.md).
14 |
15 | * For a list of professional machine learning events, go [here](https://github.com/josephmisiti/awesome-machine-learning/blob/master/events.md).
16 |
17 | * For a list of (mostly) free machine learning courses available online, go [here](https://github.com/josephmisiti/awesome-machine-learning/blob/master/courses.md).
18 |
19 | * For a list of blogs and newsletters on data science and machine learning, go [here](https://github.com/josephmisiti/awesome-machine-learning/blob/master/blogs.md).
20 |
21 | * For a list of free-to-attend meetups and local events, go [here](https://github.com/josephmisiti/awesome-machine-learning/blob/master/meetups.md).
22 |
23 | ## Table of Contents
24 |
25 | ### Frameworks and Libraries
26 |
27 |
28 | - [Awesome Machine Learning ](#awesome-machine-learning-awesomehttpsgithubcomsindresorhusawesome)
29 | - [Table of Contents](#table-of-contents)
30 | - [Frameworks and Libraries](#frameworks-and-libraries)
31 | - [Tools](#tools)
32 | - [APL](#apl)
33 | - [General-Purpose Machine Learning](#general-purpose-machine-learning)
34 | - [C](#c)
35 | - [General-Purpose Machine Learning](#general-purpose-machine-learning-1)
36 | - [Computer Vision](#computer-vision)
37 | - [C++](#c)
38 | - [Computer Vision](#computer-vision-1)
39 | - [General-Purpose Machine Learning](#general-purpose-machine-learning-2)
40 | - [Natural Language Processing](#natural-language-processing)
41 | - [Speech Recognition](#speech-recognition)
42 | - [Sequence Analysis](#sequence-analysis)
43 | - [Gesture Detection](#gesture-detection)
44 | - [Common Lisp](#common-lisp)
45 | - [General-Purpose Machine Learning](#general-purpose-machine-learning-3)
46 | - [Clojure](#clojure)
47 | - [Natural Language Processing](#clojure-nlp)
48 | - [General-Purpose Machine Learning](#clojure-general-purpose)
49 | - [Deep Learning](#clojure-deep-learning)
50 | - [Data Analysis](#clojure-data-analysis)
51 | - [Data Visualization](#clojure-data-visualization)
52 | - [Interop](#clojure-interop)
53 | - [Misc](#clojure-misc)
54 | - [Extra](#clojure-extra)
55 | - [Crystal](#crystal)
56 | - [General-Purpose Machine Learning](#general-purpose-machine-learning-5)
57 | - [Elixir](#elixir)
58 | - [General-Purpose Machine Learning](#general-purpose-machine-learning-6)
59 | - [Natural Language Processing](#natural-language-processing-2)
60 | - [Erlang](#erlang)
61 | - [General-Purpose Machine Learning](#general-purpose-machine-learning-7)
62 | - [Fortran](#fortran)
63 | - [General-Purpose Machine Learning](#fortran-general-purpose-machine-learning)
64 | - [Data Analysis / Data Visualization](#fortran-data-analysis-visualization)
65 | - [Go](#go)
66 | - [Natural Language Processing](#natural-language-processing-3)
67 | - [General-Purpose Machine Learning](#general-purpose-machine-learning-8)
68 | - [Spatial analysis and geometry](#spatial-analysis-and-geometry)
69 | - [Data Analysis / Data Visualization](#data-analysis--data-visualization-1)
70 | - [Computer vision](#computer-vision-2)
71 | - [Reinforcement learning](#reinforcement-learning)
72 | - [Haskell](#haskell)
73 | - [General-Purpose Machine Learning](#general-purpose-machine-learning-9)
74 | - [Java](#java)
75 | - [Natural Language Processing](#natural-language-processing-4)
76 | - [General-Purpose Machine Learning](#general-purpose-machine-learning-10)
77 | - [Speech Recognition](#speech-recognition-1)
78 | - [Data Analysis / Data Visualization](#data-analysis--data-visualization-2)
79 | - [Deep Learning](#deep-learning)
80 | - [Javascript](#javascript)
81 | - [Natural Language Processing](#natural-language-processing-5)
82 | - [Data Analysis / Data Visualization](#data-analysis--data-visualization-3)
83 | - [General-Purpose Machine Learning](#general-purpose-machine-learning-11)
84 | - [Misc](#misc)
85 | - [Demos and Scripts](#demos-and-scripts)
86 | - [Julia](#julia)
87 | - [General-Purpose Machine Learning](#general-purpose-machine-learning-12)
88 | - [Natural Language Processing](#natural-language-processing-6)
89 | - [Data Analysis / Data Visualization](#data-analysis--data-visualization-4)
90 | - [Misc Stuff / Presentations](#misc-stuff--presentations)
91 | - [Lua](#lua)
92 | - [General-Purpose Machine Learning](#general-purpose-machine-learning-13)
93 | - [Demos and Scripts](#demos-and-scripts-1)
94 | - [Matlab](#matlab)
95 | - [Computer Vision](#computer-vision-3)
96 | - [Natural Language Processing](#natural-language-processing-7)
97 | - [General-Purpose Machine Learning](#general-purpose-machine-learning-14)
98 | - [Data Analysis / Data Visualization](#data-analysis--data-visualization-5)
99 | - [.NET](#net)
100 | - [Computer Vision](#computer-vision-4)
101 | - [Natural Language Processing](#natural-language-processing-8)
102 | - [General-Purpose Machine Learning](#general-purpose-machine-learning-15)
103 | - [Data Analysis / Data Visualization](#data-analysis--data-visualization-6)
104 | - [Objective C](#objective-c)
105 | - [General-Purpose Machine Learning](#general-purpose-machine-learning-16)
106 | - [OCaml](#ocaml)
107 | - [General-Purpose Machine Learning](#general-purpose-machine-learning-17)
108 | - [Perl](#perl)
109 | - [Data Analysis / Data Visualization](#data-analysis--data-visualization-7)
110 | - [General-Purpose Machine Learning](#general-purpose-machine-learning-18)
111 | - [Perl 6](#perl-6)
112 | - [Data Analysis / Data Visualization](#data-analysis--data-visualization-8)
113 | - [General-Purpose Machine Learning](#general-purpose-machine-learning-19)
114 | - [PHP](#php)
115 | - [Natural Language Processing](#natural-language-processing-9)
116 | - [General-Purpose Machine Learning](#general-purpose-machine-learning-20)
117 | - [Python](#python)
118 | - [Computer Vision](#computer-vision-5)
119 | - [Natural Language Processing](#natural-language-processing-10)
120 | - [General-Purpose Machine Learning](#general-purpose-machine-learning-21)
121 | - [Data Analysis / Data Visualization](#data-analysis--data-visualization-9)
122 | - [Misc Scripts / iPython Notebooks / Codebases](#misc-scripts--ipython-notebooks--codebases)
123 | - [Neural Networks](#neural-networks)
124 | - [Kaggle Competition Source Code](#kaggle-competition-source-code)
125 | - [Reinforcement Learning](#reinforcement-learning-1)
126 | - [Ruby](#ruby)
127 | - [Natural Language Processing](#natural-language-processing-11)
128 | - [General-Purpose Machine Learning](#general-purpose-machine-learning-22)
129 | - [Data Analysis / Data Visualization](#data-analysis--data-visualization-10)
130 | - [Misc](#misc-1)
131 | - [Rust](#rust)
132 | - [General-Purpose Machine Learning](#general-purpose-machine-learning-23)
133 | - [R](#r)
134 | - [General-Purpose Machine Learning](#general-purpose-machine-learning-24)
135 | - [Data Analysis / Data Visualization](#data-analysis--data-visualization-11)
136 | - [SAS](#sas)
137 | - [General-Purpose Machine Learning](#general-purpose-machine-learning-25)
138 | - [Data Analysis / Data Visualization](#data-analysis--data-visualization-12)
139 | - [Natural Language Processing](#natural-language-processing-12)
140 | - [Demos and Scripts](#demos-and-scripts-2)
141 | - [Scala](#scala)
142 | - [Natural Language Processing](#natural-language-processing-13)
143 | - [Data Analysis / Data Visualization](#data-analysis--data-visualization-13)
144 | - [General-Purpose Machine Learning](#general-purpose-machine-learning-26)
145 | - [Scheme](#scheme)
146 | - [Neural Networks](#neural-networks-1)
147 | - [Swift](#swift)
148 | - [General-Purpose Machine Learning](#general-purpose-machine-learning-27)
149 | - [TensorFlow](#tensorflow)
150 | - [General-Purpose Machine Learning](#general-purpose-machine-learning-28)
151 |
152 | ### [Tools](#tools-1)
153 |
154 | - [Neural Networks](#tools-neural-networks)
155 | - [Misc](#tools-misc)
156 |
157 |
158 | [Credits](#credits)
159 |
160 |
161 |
162 |
163 | ## APL
164 |
165 |
166 | #### General-Purpose Machine Learning
167 | * [naive-apl](https://github.com/mattcunningham/naive-apl) - Naive Bayesian Classifier implementation in APL. **[Deprecated]**
168 |
169 |
170 | ## C
171 |
172 |
173 | #### General-Purpose Machine Learning
174 | * [Darknet](https://github.com/pjreddie/darknet) - Darknet is an open source neural network framework written in C and CUDA. It is fast, easy to install, and supports CPU and GPU computation.
175 | * [Recommender](https://github.com/GHamrouni/Recommender) - A C library for product recommendations/suggestions using collaborative filtering (CF).
176 | * [Hybrid Recommender System](https://github.com/SeniorSA/hybrid-rs-trainner) - A hybrid recommender system based upon scikit-learn algorithms. **[Deprecated]**
177 | * [neonrvm](https://github.com/siavashserver/neonrvm) - neonrvm is an open source machine learning library based on RVM technique. It's written in C programming language and comes with Python programming language bindings.
178 | * [cONNXr](https://github.com/alrevuelta/cONNXr) - An `ONNX` runtime written in pure C (99) with zero dependencies focused on small embedded devices. Run inference on your machine learning models no matter which framework you train it with. Easy to install and compiles everywhere, even in very old devices.
179 |
180 |
181 | #### Computer Vision
182 |
183 | * [CCV](https://github.com/liuliu/ccv) - C-based/Cached/Core Computer Vision Library, A Modern Computer Vision Library.
184 | * [VLFeat](http://www.vlfeat.org/) - VLFeat is an open and portable library of computer vision algorithms, which has a Matlab toolbox.
185 |
186 |
187 | ## C++
188 |
189 |
190 | #### Computer Vision
191 |
192 | * [DLib](http://dlib.net/imaging.html) - DLib has C++ and Python interfaces for face detection and training general object detectors.
193 | * [EBLearn](http://eblearn.sourceforge.net/) - Eblearn is an object-oriented C++ library that implements various machine learning models **[Deprecated]**
194 | * [OpenCV](https://opencv.org) - OpenCV has C++, C, Python, Java and MATLAB interfaces and supports Windows, Linux, Android and Mac OS.
195 | * [VIGRA](https://github.com/ukoethe/vigra) - VIGRA is a genertic cross-platform C++ computer vision and machine learning library for volumes of arbitrary dimensionality with Python bindings.
196 | * [Openpose](https://github.com/CMU-Perceptual-Computing-Lab/openpose) - A real-time multi-person keypoint detection library for body, face, hands, and foot estimation
197 |
198 |
199 | #### General-Purpose Machine Learning
200 |
201 | * [BanditLib](https://github.com/jkomiyama/banditlib) - A simple Multi-armed Bandit library. **[Deprecated]**
202 | * [Caffe](https://github.com/BVLC/caffe) - A deep learning framework developed with cleanliness, readability, and speed in mind. [DEEP LEARNING]
203 | * [CatBoost](https://github.com/catboost/catboost) - General purpose gradient boosting on decision trees library with categorical features support out of the box. It is easy to install, contains fast inference implementation and supports CPU and GPU (even multi-GPU) computation.
204 | * [CNTK](https://github.com/Microsoft/CNTK) - The Computational Network Toolkit (CNTK) by Microsoft Research, is a unified deep-learning toolkit that describes neural networks as a series of computational steps via a directed graph.
205 | * [CUDA](https://code.google.com/p/cuda-convnet/) - This is a fast C++/CUDA implementation of convolutional [DEEP LEARNING]
206 | * [DeepDetect](https://github.com/jolibrain/deepdetect) - A machine learning API and server written in C++11. It makes state of the art machine learning easy to work with and integrate into existing applications.
207 | * [Distributed Machine learning Tool Kit (DMTK)](http://www.dmtk.io/) - A distributed machine learning (parameter server) framework by Microsoft. Enables training models on large data sets across multiple machines. Current tools bundled with it include: LightLDA and Distributed (Multisense) Word Embedding.
208 | * [DLib](http://dlib.net/ml.html) - A suite of ML tools designed to be easy to imbed in other applications.
209 | * [DSSTNE](https://github.com/amznlabs/amazon-dsstne) - A software library created by Amazon for training and deploying deep neural networks using GPUs which emphasizes speed and scale over experimental flexibility.
210 | * [DyNet](https://github.com/clab/dynet) - A dynamic neural network library working well with networks that have dynamic structures that change for every training instance. Written in C++ with bindings in Python.
211 | * [Fido](https://github.com/FidoProject/Fido) - A highly-modular C++ machine learning library for embedded electronics and robotics.
212 | * [igraph](http://igraph.org/) - General purpose graph library.
213 | * [Intel(R) DAAL](https://github.com/intel/daal) - A high performance software library developed by Intel and optimized for Intel's architectures. Library provides algorithmic building blocks for all stages of data analytics and allows to process data in batch, online and distributed modes.
214 | * [LightGBM](https://github.com/Microsoft/LightGBM) - Microsoft's fast, distributed, high performance gradient boosting (GBDT, GBRT, GBM or MART) framework based on decision tree algorithms, used for ranking, classification and many other machine learning tasks.
215 | * [libfm](https://github.com/srendle/libfm) - A generic approach that allows to mimic most factorization models by feature engineering.
216 | * [MLDB](https://mldb.ai) - The Machine Learning Database is a database designed for machine learning. Send it commands over a RESTful API to store data, explore it using SQL, then train machine learning models and expose them as APIs.
217 | * [mlpack](https://www.mlpack.org/) - A scalable C++ machine learning library.
218 | * [MXNet](https://github.com/apache/incubator-mxnet) - Lightweight, Portable, Flexible Distributed/Mobile Deep Learning with Dynamic, Mutation-aware Dataflow Dep Scheduler; for Python, R, Julia, Go, Javascript and more.
219 | * [ParaMonte](https://github.com/cdslaborg/paramonte) - A general-purpose library with C/C++ interface for Bayesian data analysis and visualization via serial/parallel Monte Carlo and MCMC simulations. Documentation can be found [here](https://www.cdslab.org/paramonte/).
220 | * [proNet-core](https://github.com/cnclabs/proNet-core) - A general-purpose network embedding framework: pair-wise representations optimization Network Edit.
221 | * [PyCUDA](https://mathema.tician.de/software/pycuda/) - Python interface to CUDA
222 | * [ROOT](https://root.cern.ch) - A modular scientific software framework. It provides all the functionalities needed to deal with big data processing, statistical analysis, visualization and storage.
223 | * [shark](http://image.diku.dk/shark/sphinx_pages/build/html/index.html) - A fast, modular, feature-rich open-source C++ machine learning library.
224 | * [Shogun](https://github.com/shogun-toolbox/shogun) - The Shogun Machine Learning Toolbox.
225 | * [sofia-ml](https://code.google.com/archive/p/sofia-ml) - Suite of fast incremental algorithms.
226 | * [Stan](http://mc-stan.org/) - A probabilistic programming language implementing full Bayesian statistical inference with Hamiltonian Monte Carlo sampling.
227 | * [Timbl](https://languagemachines.github.io/timbl/) - A software package/C++ library implementing several memory-based learning algorithms, among which IB1-IG, an implementation of k-nearest neighbor classification, and IGTree, a decision-tree approximation of IB1-IG. Commonly used for NLP.
228 | * [Vowpal Wabbit (VW)](https://github.com/VowpalWabbit/vowpal_wabbit) - A fast out-of-core learning system.
229 | * [Warp-CTC](https://github.com/baidu-research/warp-ctc) - A fast parallel implementation of Connectionist Temporal Classification (CTC), on both CPU and GPU.
230 | * [XGBoost](https://github.com/dmlc/xgboost) - A parallelized optimized general purpose gradient boosting library.
231 | * [ThunderGBM](https://github.com/Xtra-Computing/thundergbm) - A fast library for GBDTs and Random Forests on GPUs.
232 | * [ThunderSVM](https://github.com/Xtra-Computing/thundersvm) - A fast SVM library on GPUs and CPUs.
233 | * [LKYDeepNN](https://github.com/mosdeo/LKYDeepNN) - A header-only C++11 Neural Network library. Low dependency, native traditional chinese document.
234 | * [xLearn](https://github.com/aksnzhy/xlearn) - A high performance, easy-to-use, and scalable machine learning package, which can be used to solve large-scale machine learning problems. xLearn is especially useful for solving machine learning problems on large-scale sparse data, which is very common in Internet services such as online advertising and recommender systems.
235 | * [Featuretools](https://github.com/featuretools/featuretools) - A library for automated feature engineering. It excels at transforming transactional and relational datasets into feature matrices for machine learning using reusable feature engineering "primitives".
236 | * [skynet](https://github.com/Tyill/skynet) - A library for learning neural networks, has C-interface, net set in JSON. Written in C++ with bindings in Python, C++ and C#.
237 | * [Feast](https://github.com/gojek/feast) - A feature store for the management, discovery, and access of machine learning features. Feast provides a consistent view of feature data for both model training and model serving.
238 | * [Hopsworks](https://github.com/logicalclocks/hopsworks) - A data-intensive platform for AI with the industry's first open-source feature store. The Hopsworks Feature Store provides both a feature warehouse for training and batch based on Apache Hive and a feature serving database, based on MySQL Cluster, for online applications.
239 | * [Polyaxon](https://github.com/polyaxon/polyaxon) - A platform for reproducible and scalable machine learning and deep learning.
240 |
241 |
242 | #### Natural Language Processing
243 |
244 | * [BLLIP Parser](https://github.com/BLLIP/bllip-parser) - BLLIP Natural Language Parser (also known as the Charniak-Johnson parser).
245 | * [colibri-core](https://github.com/proycon/colibri-core) - C++ library, command line tools, and Python binding for extracting and working with basic linguistic constructions such as n-grams and skipgrams in a quick and memory-efficient way.
246 | * [CRF++](https://taku910.github.io/crfpp/) - Open source implementation of Conditional Random Fields (CRFs) for segmenting/labeling sequential data & other Natural Language Processing tasks. **[Deprecated]**
247 | * [CRFsuite](http://www.chokkan.org/software/crfsuite/) - CRFsuite is an implementation of Conditional Random Fields (CRFs) for labeling sequential data. **[Deprecated]**
248 | * [frog](https://github.com/LanguageMachines/frog) - Memory-based NLP suite developed for Dutch: PoS tagger, lemmatiser, dependency parser, NER, shallow parser, morphological analyzer.
249 | * [libfolia](https://github.com/LanguageMachines/libfolia) - C++ library for the [FoLiA format](https://proycon.github.io/folia/)
250 | * [MeTA](https://github.com/meta-toolkit/meta) - [MeTA : ModErn Text Analysis](https://meta-toolkit.org/) is a C++ Data Sciences Toolkit that facilitates mining big text data.
251 | * [MIT Information Extraction Toolkit](https://github.com/mit-nlp/MITIE) - C, C++, and Python tools for named entity recognition and relation extraction
252 | * [ucto](https://github.com/LanguageMachines/ucto) - Unicode-aware regular-expression based tokenizer for various languages. Tool and C++ library. Supports FoLiA format.
253 |
254 |
255 | #### Speech Recognition
256 | * [Kaldi](https://github.com/kaldi-asr/kaldi) - Kaldi is a toolkit for speech recognition written in C++ and licensed under the Apache License v2.0. Kaldi is intended for use by speech recognition researchers.
257 |
258 |
259 | #### Sequence Analysis
260 | * [ToPS](https://github.com/ayoshiaki/tops) - This is an object-oriented framework that facilitates the integration of probabilistic models for sequences over a user defined alphabet. **[Deprecated]**
261 |
262 |
263 | #### Gesture Detection
264 | * [grt](https://github.com/nickgillian/grt) - The Gesture Recognition Toolkit (GRT) is a cross-platform, open-source, C++ machine learning library designed for real-time gesture recognition.
265 |
266 |
267 | ## Common Lisp
268 |
269 |
270 | #### General-Purpose Machine Learning
271 |
272 | * [mgl](https://github.com/melisgl/mgl/) - Neural networks (boltzmann machines, feed-forward and recurrent nets), Gaussian Processes.
273 | * [mgl-gpr](https://github.com/melisgl/mgl-gpr/) - Evolutionary algorithms. **[Deprecated]**
274 | * [cl-libsvm](https://github.com/melisgl/cl-libsvm/) - Wrapper for the libsvm support vector machine library. **[Deprecated]**
275 | * [cl-online-learning](https://github.com/masatoi/cl-online-learning) - Online learning algorithms (Perceptron, AROW, SCW, Logistic Regression).
276 | * [cl-random-forest](https://github.com/masatoi/cl-random-forest) - Implementation of Random Forest in Common Lisp.
277 |
278 |
279 | ## Clojure
280 |
281 |
282 | #### Natural Language Processing
283 |
284 | * [Clojure-openNLP](https://github.com/dakrone/clojure-opennlp) - Natural Language Processing in Clojure (opennlp).
285 | * [Infections-clj](https://github.com/r0man/inflections-clj) - Rails-like inflection library for Clojure and ClojureScript.
286 |
287 |
288 | #### General-Purpose Machine Learning
289 |
290 | * [tech.ml](https://github.com/techascent/tech.ml) - A machine learning platform based on tech.ml.dataset, supporting not just ml algorithms, but also relevant ETL processing; wraps multiple machine learning libraries
291 | * [clj-ml](https://github.com/joshuaeckroth/clj-ml/) - A machine learning library for Clojure built on top of Weka and friends.
292 | * [clj-boost](https://gitlab.com/alanmarazzi/clj-boost) - Wrapper for XGBoost
293 | * [Touchstone](https://github.com/ptaoussanis/touchstone) - Clojure A/B testing library.
294 | * [Clojush](https://github.com/lspector/Clojush) - The Push programming language and the PushGP genetic programming system implemented in Clojure.
295 | * [lambda-ml](https://github.com/cloudkj/lambda-ml) - Simple, concise implementations of machine learning techniques and utilities in Clojure.
296 | * [Infer](https://github.com/aria42/infer) - Inference and machine learning in Clojure. **[Deprecated]**
297 | * [Encog](https://github.com/jimpil/enclog) - Clojure wrapper for Encog (v3) (Machine-Learning framework that specializes in neural-nets). **[Deprecated]**
298 | * [Fungp](https://github.com/vollmerm/fungp) - A genetic programming library for Clojure. **[Deprecated]**
299 | * [Statistiker](https://github.com/clojurewerkz/statistiker) - Basic Machine Learning algorithms in Clojure. **[Deprecated]**
300 | * [clortex](https://github.com/htm-community/clortex) - General Machine Learning library using Numenta’s Cortical Learning Algorithm. **[Deprecated]**
301 | * [comportex](https://github.com/htm-community/comportex) - Functionally composable Machine Learning library using Numenta’s Cortical Learning Algorithm. **[Deprecated]**
302 |
303 |
304 | #### Deep Learning
305 | * [MXNet](https://mxnet.apache.org/versions/1.7.0/api/clojure) - Bindings to Apache MXNet - part of the MXNet project
306 | * [Deep Diamond](https://github.com/uncomplicate/deep-diamond) - A fast Clojure Tensor & Deep Learning library
307 | * [jutsu.ai](https://github.com/hswick/jutsu.ai) - Clojure wrapper for deeplearning4j with some added syntactic sugar.
308 | * [cortex](https://github.com/originrose/cortex) - Neural networks, regression and feature learning in Clojure.
309 | * [Flare](https://github.com/aria42/flare) - Dynamic Tensor Graph library in Clojure (think PyTorch, DynNet, etc.)
310 | * [dl4clj](https://github.com/yetanalytics/dl4clj) - Clojure wrapper for Deeplearning4j.
311 |
312 |
313 | #### Data Analysis
314 | * [tech.ml.dataset](https://github.com/techascent/tech.ml.dataset) - Clojure dataframe library and pipeline for data processing and machine learning
315 | * [Tablecloth](https://github.com/scicloj/tablecloth) - A dataframe grammar wrapping tech.ml.dataset, inspired by several R libraries
316 | * [Panthera](https://github.com/alanmarazzi/panthera) - Clojure API wrapping Python's Pandas library
317 | * [Incanter](http://incanter.org/) - Incanter is a Clojure-based, R-like platform for statistical computing and graphics.
318 | * [PigPen](https://github.com/Netflix/PigPen) - Map-Reduce for Clojure.
319 | * [Geni](https://github.com/zero-one-group/geni) - a Clojure dataframe library that runs on Apache Spark
320 |
321 |
322 | #### Data Visualization
323 | * [Hanami](https://github.com/jsa-aerial/hanami) : Clojure(Script) library and framework for creating interactive visualization applications based in Vega-Lite (VGL) and/or Vega (VG) specifications. Automatic framing and layouts along with a powerful templating system for abstracting visualization specs
324 | * [Saite](https://github.com/jsa-aerial/saite) - Clojure(Script) client/server application for dynamic interactive explorations and the creation of live shareable documents capturing them using Vega/Vega-Lite, CodeMirror, markdown, and LaTeX
325 | * [Oz](https://github.com/metasoarous/oz) - Data visualisation using Vega/Vega-Lite and Hiccup, and a live-reload platform for literate-programming
326 | * [Envision](https://github.com/clojurewerkz/envision) - Clojure Data Visualisation library, based on Statistiker and D3.
327 | * [Pink Gorilla Notebook](https://github.com/pink-gorilla/gorilla-notebook) - A Clojure/Clojurescript notebook application/-library based on Gorilla-REPL
328 | * [clojupyter](https://github.com/clojupyter/clojupyter) - A Jupyter kernel for Clojure - run Clojure code in Jupyter Lab, Notebook and Console.
329 | * [notespace](https://github.com/scicloj/notespace) - Notebook experience in your Clojure namespace
330 | * [Delight](https://github.com/datamechanics/delight) - A listener that streams your spark events logs to delight, a free and improved spark UI
331 |
332 |
333 | #### Interop
334 |
335 | * [Java Interop](https://clojure.org/reference/java_interop) - Clojure has Native Java Interop from which Java's ML ecosystem can be accessed
336 | * [JavaScript Interop](https://clojurescript.org/reference/javascript-api) - ClojureScript has Native JavaScript Interop from which JavaScript's ML ecosystem can be accessed
337 | * [Libpython-clj](https://github.com/clj-python/libpython-clj) - Interop with Python
338 | * [ClojisR](https://github.com/scicloj/clojisr) - Interop with R and Renjin (R on the JVM)
339 |
340 |
341 | #### Misc
342 | * [Neanderthal](https://neanderthal.uncomplicate.org/) - Fast Clojure Matrix Library (native CPU, GPU, OpenCL, CUDA)
343 | * [kixistats](https://github.com/MastodonC/kixi.stats) - A library of statistical distribution sampling and transducing functions
344 | * [fastmath](https://github.com/generateme/fastmath) - A collection of functions for mathematical and statistical computing, macine learning, etc., wrapping several JVM libraries
345 | * [matlib](https://github.com/atisharma/matlib) - a Clojure library of optimisation and control theory tools and convenience functions based on Neanderthal.
346 |
347 |
348 | #### Extra
349 | * [Scicloj](https://scicloj.github.io/pages/libraries/) - Curated list of ML related resources for Clojure.
350 |
351 |
352 | ## Crystal
353 |
354 |
355 | #### General-Purpose Machine Learning
356 |
357 | * [machine](https://github.com/mathieulaporte/machine) - Simple machine learning algorithm.
358 | * [crystal-fann](https://github.com/NeuraLegion/crystal-fann) - FANN (Fast Artificial Neural Network) binding.
359 |
360 |
361 | ## Elixir
362 |
363 |
364 | #### General-Purpose Machine Learning
365 |
366 | * [Simple Bayes](https://github.com/fredwu/simple_bayes) - A Simple Bayes / Naive Bayes implementation in Elixir.
367 | * [emel](https://github.com/mrdimosthenis/emel) - A simple and functional machine learning library written in Elixir.
368 | * [Tensorflex](https://github.com/anshuman23/tensorflex) - Tensorflow bindings for the Elixir programming language.
369 |
370 |
371 | #### Natural Language Processing
372 |
373 | * [Stemmer](https://github.com/fredwu/stemmer) - An English (Porter2) stemming implementation in Elixir.
374 |
375 |
376 | ## Erlang
377 |
378 |
379 | #### General-Purpose Machine Learning
380 |
381 | * [Disco](https://github.com/discoproject/disco/) - Map Reduce in Erlang. **[Deprecated]**
382 |
383 |
384 | ## Fortran
385 |
386 |
387 | #### General-Purpose Machine Learning
388 |
389 | * [neural-fortran](https://github.com/modern-fortran/neural-fortran) - A parallel neural net microframework.
390 | Read the paper [here](https://arxiv.org/abs/1902.06714).
391 |
392 |
393 | #### Data Analysis / Data Visualization
394 |
395 | * [ParaMonte](https://github.com/cdslaborg/paramonte) - A general-purpose Fortran library for Bayesian data analysis and visualization via serial/parallel Monte Carlo and MCMC simulations. Documentation can be found [here](https://www.cdslab.org/paramonte/).
396 |
397 |
398 | ## Go
399 |
400 |
401 | #### Natural Language Processing
402 |
403 | * [snowball](https://github.com/tebeka/snowball) - Snowball Stemmer for Go.
404 | * [word-embedding](https://github.com/ynqa/word-embedding) - Word Embeddings: the full implementation of word2vec, GloVe in Go.
405 | * [sentences](https://github.com/neurosnap/sentences) - Golang implementation of Punkt sentence tokenizer.
406 | * [go-ngram](https://github.com/Lazin/go-ngram) - In-memory n-gram index with compression. *[Deprecated]*
407 | * [paicehusk](https://github.com/Rookii/paicehusk) - Golang implementation of the Paice/Husk Stemming Algorithm. *[Deprecated]*
408 | * [go-porterstemmer](https://github.com/reiver/go-porterstemmer) - A native Go clean room implementation of the Porter Stemming algorithm. **[Deprecated]**
409 |
410 |
411 | #### General-Purpose Machine Learning
412 |
413 | * [birdland](https://github.com/rlouf/birdland) - A recommendation library in Go.
414 | * [eaopt](https://github.com/MaxHalford/eaopt) - An evolutionary optimization library.
415 | * [leaves](https://github.com/dmitryikh/leaves) - A pure Go implementation of the prediction part of GBRTs, including XGBoost and LightGBM.
416 | * [gobrain](https://github.com/goml/gobrain) - Neural Networks written in Go.
417 | * [go-mxnet-predictor](https://github.com/songtianyi/go-mxnet-predictor) - Go binding for MXNet c_predict_api to do inference with a pre-trained model.
418 | * [go-ml-transpiler](https://github.com/znly/go-ml-transpiler) - An open source Go transpiler for machine learning models.
419 | * [golearn](https://github.com/sjwhitworth/golearn) - Machine learning for Go.
420 | * [goml](https://github.com/cdipaolo/goml) - Machine learning library written in pure Go.
421 | * [gorgonia](https://github.com/gorgonia/gorgonia) - Deep learning in Go.
422 | * [goro](https://github.com/aunum/goro) - A high-level machine learning library in the vein of Keras.
423 | * [gorse](https://github.com/zhenghaoz/gorse) - An offline recommender system backend based on collaborative filtering written in Go.
424 | * [therfoo](https://github.com/therfoo/therfoo) - An embedded deep learning library for Go.
425 | * [neat](https://github.com/jinyeom/neat) - Plug-and-play, parallel Go framework for NeuroEvolution of Augmenting Topologies (NEAT). **[Deprecated]**
426 | * [go-pr](https://github.com/daviddengcn/go-pr) - Pattern recognition package in Go lang. **[Deprecated]**
427 | * [go-ml](https://github.com/alonsovidales/go_ml) - Linear / Logistic regression, Neural Networks, Collaborative Filtering and Gaussian Multivariate Distribution. **[Deprecated]**
428 | * [GoNN](https://github.com/fxsjy/gonn) - GoNN is an implementation of Neural Network in Go Language, which includes BPNN, RBF, PCN. **[Deprecated]**
429 | * [bayesian](https://github.com/jbrukh/bayesian) - Naive Bayesian Classification for Golang. **[Deprecated]**
430 | * [go-galib](https://github.com/thoj/go-galib) - Genetic Algorithms library written in Go / Golang. **[Deprecated]**
431 | * [Cloudforest](https://github.com/ryanbressler/CloudForest) - Ensembles of decision trees in Go/Golang. **[Deprecated]**
432 | * [go-dnn](https://github.com/sudachen/go-dnn) - Deep Neural Networks for Golang (powered by MXNet)
433 |
434 |
435 | #### Spatial analysis and geometry
436 |
437 | * [go-geom](https://github.com/twpayne/go-geom) - Go library to handle geometries.
438 | * [gogeo](https://github.com/golang/geo) - Spherical geometry in Go.
439 |
440 |
441 | #### Data Analysis / Data Visualization
442 |
443 | * [dataframe-go](https://github.com/rocketlaunchr/dataframe-go) - Dataframes for machine-learning and statistics (similar to pandas).
444 | * [gota](https://github.com/go-gota/gota) - Dataframes.
445 | * [gonum/mat](https://godoc.org/gonum.org/v1/gonum/mat) - A linear algebra package for Go.
446 | * [gonum/optimize](https://godoc.org/gonum.org/v1/gonum/optimize) - Implementations of optimization algorithms.
447 | * [gonum/plot](https://godoc.org/gonum.org/v1/plot) - A plotting library.
448 | * [gonum/stat](https://godoc.org/gonum.org/v1/gonum/stat) - A statistics library.
449 | * [SVGo](https://github.com/ajstarks/svgo) - The Go Language library for SVG generation.
450 | * [glot](https://github.com/arafatk/glot) - Glot is a plotting library for Golang built on top of gnuplot.
451 | * [globe](https://github.com/mmcloughlin/globe) - Globe wireframe visualization.
452 | * [gonum/graph](https://godoc.org/gonum.org/v1/gonum/graph) - General-purpose graph library.
453 | * [go-graph](https://github.com/StepLg/go-graph) - Graph library for Go/Golang language. **[Deprecated]**
454 | * [RF](https://github.com/fxsjy/RF.go) - Random forests implementation in Go. **[Deprecated]**
455 |
456 |
457 | #### Computer vision
458 |
459 | * [GoCV](https://github.com/hybridgroup/gocv) - Package for computer vision using OpenCV 4 and beyond.
460 |
461 |
462 | #### Reinforcement learning
463 |
464 | * [gold](https://github.com/aunum/gold) - A reinforcement learning library.
465 |
466 |
467 | ## Haskell
468 |
469 |
470 | #### General-Purpose Machine Learning
471 | * [haskell-ml](https://github.com/ajtulloch/haskell-ml) - Haskell implementations of various ML algorithms. **[Deprecated]**
472 | * [HLearn](https://github.com/mikeizbicki/HLearn) - a suite of libraries for interpreting machine learning models according to their algebraic structure. **[Deprecated]**
473 | * [hnn](https://github.com/alpmestan/HNN) - Haskell Neural Network library.
474 | * [hopfield-networks](https://github.com/ajtulloch/hopfield-networks) - Hopfield Networks for unsupervised learning in Haskell. **[Deprecated]**
475 | * [DNNGraph](https://github.com/ajtulloch/dnngraph) - A DSL for deep neural networks. **[Deprecated]**
476 | * [LambdaNet](https://github.com/jbarrow/LambdaNet) - Configurable Neural Networks in Haskell. **[Deprecated]**
477 |
478 |
479 | ## Java
480 |
481 |
482 | #### Natural Language Processing
483 | * [Cortical.io](https://www.cortical.io/) - Retina: an API performing complex NLP operations (disambiguation, classification, streaming text filtering, etc...) as quickly and intuitively as the brain.
484 | * [IRIS](https://github.com/cortical-io/Iris) - [Cortical.io's](https://cortical.io) FREE NLP, Retina API Analysis Tool (written in JavaFX!) - [See the Tutorial Video](https://www.youtube.com/watch?v=CsF4pd7fGF0).
485 | * [CoreNLP](https://nlp.stanford.edu/software/corenlp.shtml) - Stanford CoreNLP provides a set of natural language analysis tools which can take raw English language text input and give the base forms of words.
486 | * [Stanford Parser](https://nlp.stanford.edu/software/lex-parser.shtml) - A natural language parser is a program that works out the grammatical structure of sentences.
487 | * [Stanford POS Tagger](https://nlp.stanford.edu/software/tagger.shtml) - A Part-Of-Speech Tagger (POS Tagger).
488 | * [Stanford Name Entity Recognizer](https://nlp.stanford.edu/software/CRF-NER.shtml) - Stanford NER is a Java implementation of a Named Entity Recognizer.
489 | * [Stanford Word Segmenter](https://nlp.stanford.edu/software/segmenter.shtml) - Tokenization of raw text is a standard pre-processing step for many NLP tasks.
490 | * [Tregex, Tsurgeon and Semgrex](https://nlp.stanford.edu/software/tregex.shtml) - Tregex is a utility for matching patterns in trees, based on tree relationships and regular expression matches on nodes (the name is short for "tree regular expressions").
491 | * [Stanford Phrasal: A Phrase-Based Translation System](https://nlp.stanford.edu/phrasal/)
492 | * [Stanford English Tokenizer](https://nlp.stanford.edu/software/tokenizer.shtml) - Stanford Phrasal is a state-of-the-art statistical phrase-based machine translation system, written in Java.
493 | * [Stanford Tokens Regex](https://nlp.stanford.edu/software/tokensregex.shtml) - A tokenizer divides text into a sequence of tokens, which roughly correspond to "words".
494 | * [Stanford Temporal Tagger](https://nlp.stanford.edu/software/sutime.shtml) - SUTime is a library for recognizing and normalizing time expressions.
495 | * [Stanford SPIED](https://nlp.stanford.edu/software/patternslearning.shtml) - Learning entities from unlabeled text starting with seed sets using patterns in an iterative fashion.
496 | * [Twitter Text Java](https://github.com/twitter/twitter-text/tree/master/java) - A Java implementation of Twitter's text processing library.
497 | * [MALLET](http://mallet.cs.umass.edu/) - A Java-based package for statistical natural language processing, document classification, clustering, topic modeling, information extraction, and other machine learning applications to text.
498 | * [OpenNLP](https://opennlp.apache.org/) - a machine learning based toolkit for the processing of natural language text.
499 | * [LingPipe](http://alias-i.com/lingpipe/index.html) - A tool kit for processing text using computational linguistics.
500 | * [ClearTK](https://github.com/ClearTK/cleartk) - ClearTK provides a framework for developing statistical natural language processing (NLP) components in Java and is built on top of Apache UIMA. **[Deprecated]**
501 | * [Apache cTAKES](https://ctakes.apache.org/) - Apache Clinical Text Analysis and Knowledge Extraction System (cTAKES) is an open-source natural language processing system for information extraction from electronic medical record clinical free-text.
502 | * [NLP4J](https://github.com/emorynlp/nlp4j) - The NLP4J project provides software and resources for natural language processing. The project started at the Center for Computational Language and EducAtion Research, and is currently developed by the Center for Language and Information Research at Emory University. **[Deprecated]**
503 | * [CogcompNLP](https://github.com/CogComp/cogcomp-nlp) - This project collects a number of core libraries for Natural Language Processing (NLP) developed in the University of Illinois' Cognitive Computation Group, for example `illinois-core-utilities` which provides a set of NLP-friendly data structures and a number of NLP-related utilities that support writing NLP applications, running experiments, etc, `illinois-edison` a library for feature extraction from illinois-core-utilities data structures and many other packages.
504 |
505 |
506 | #### General-Purpose Machine Learning
507 |
508 | * [aerosolve](https://github.com/airbnb/aerosolve) - A machine learning library by Airbnb designed from the ground up to be human friendly.
509 | * [AMIDST Toolbox](http://www.amidsttoolbox.com/) - A Java Toolbox for Scalable Probabilistic Machine Learning.
510 | * [Datumbox](https://github.com/datumbox/datumbox-framework) - Machine Learning framework for rapid development of Machine Learning and Statistical applications.
511 | * [ELKI](https://elki-project.github.io/) - Java toolkit for data mining. (unsupervised: clustering, outlier detection etc.)
512 | * [Encog](https://github.com/encog/encog-java-core) - An advanced neural network and machine learning framework. Encog contains classes to create a wide variety of networks, as well as support classes to normalize and process data for these neural networks. Encog trains using multithreaded resilient propagation. Encog can also make use of a GPU to further speed processing time. A GUI based workbench is also provided to help model and train neural networks.
513 | * [FlinkML in Apache Flink](https://ci.apache.org/projects/flink/flink-docs-master/dev/libs/ml/index.html) - Distributed machine learning library in Flink.
514 | * [H2O](https://github.com/h2oai/h2o-3) - ML engine that supports distributed learning on Hadoop, Spark or your laptop via APIs in R, Python, Scala, REST/JSON.
515 | * [htm.java](https://github.com/numenta/htm.java) - General Machine Learning library using Numenta’s Cortical Learning Algorithm.
516 | * [liblinear-java](https://github.com/bwaldvogel/liblinear-java) - Java version of liblinear.
517 | * [Mahout](https://github.com/apache/mahout) - Distributed machine learning.
518 | * [Meka](http://meka.sourceforge.net/) - An open source implementation of methods for multi-label classification and evaluation (extension to Weka).
519 | * [MLlib in Apache Spark](https://spark.apache.org/docs/latest/mllib-guide.html) - Distributed machine learning library in Spark
520 | * [Hydrosphere Mist](https://github.com/Hydrospheredata/mist) - a service for deployment Apache Spark MLLib machine learning models as realtime, batch or reactive web services.
521 | * [Neuroph](http://neuroph.sourceforge.net/) - Neuroph is lightweight Java neural network framework
522 | * [ORYX](https://github.com/oryxproject/oryx) - Lambda Architecture Framework using Apache Spark and Apache Kafka with a specialization for real-time large-scale machine learning.
523 | * [Samoa](https://samoa.incubator.apache.org/) SAMOA is a framework that includes distributed machine learning for data streams with an interface to plug-in different stream processing platforms.
524 | * [RankLib](https://sourceforge.net/p/lemur/wiki/RankLib/) - RankLib is a library of learning to rank algorithms. **[Deprecated]**
525 | * [rapaio](https://github.com/padreati/rapaio) - statistics, data mining and machine learning toolbox in Java.
526 | * [RapidMiner](https://rapidminer.com) - RapidMiner integration into Java code.
527 | * [Stanford Classifier](https://nlp.stanford.edu/software/classifier.shtml) - A classifier is a machine learning tool that will take data items and place them into one of k classes.
528 | * [Smile](https://haifengl.github.io/) - Statistical Machine Intelligence & Learning Engine.
529 | * [SystemML](https://github.com/apache/systemml) - flexible, scalable machine learning (ML) language.
530 | * [Weka](https://www.cs.waikato.ac.nz/ml/weka/) - Weka is a collection of machine learning algorithms for data mining tasks.
531 | * [LBJava](https://github.com/CogComp/lbjava) - Learning Based Java is a modeling language for the rapid development of software systems, offers a convenient, declarative syntax for classifier and constraint definition directly in terms of the objects in the programmer's application.
532 |
533 |
534 |
535 | #### Speech Recognition
536 | * [CMU Sphinx](https://cmusphinx.github.io) - Open Source Toolkit For Speech Recognition purely based on Java speech recognition library.
537 |
538 |
539 | #### Data Analysis / Data Visualization
540 |
541 | * [Flink](https://flink.apache.org/) - Open source platform for distributed stream and batch data processing.
542 | * [Hadoop](https://github.com/apache/hadoop) - Hadoop/HDFS.
543 | * [Onyx](https://github.com/onyx-platform/onyx) - Distributed, masterless, high performance, fault tolerant data processing. Written entirely in Clojure.
544 | * [Spark](https://github.com/apache/spark) - Spark is a fast and general engine for large-scale data processing.
545 | * [Storm](https://storm.apache.org/) - Storm is a distributed realtime computation system.
546 | * [Impala](https://github.com/cloudera/impala) - Real-time Query for Hadoop.
547 | * [DataMelt](https://jwork.org/dmelt/) - Mathematics software for numeric computation, statistics, symbolic calculations, data analysis and data visualization.
548 | * [Dr. Michael Thomas Flanagan's Java Scientific Library](https://www.ee.ucl.ac.uk/~mflanaga/java/) **[Deprecated]**
549 |
550 |
551 | #### Deep Learning
552 |
553 | * [Deeplearning4j](https://github.com/deeplearning4j/deeplearning4j) - Scalable deep learning for industry with parallel GPUs.
554 | * [Keras Beginner Tutorial](https://victorzhou.com/blog/keras-neural-network-tutorial/) - Friendly guide on using Keras to implement a simple Neural Network in Python
555 |
556 |
557 | ## Javascript
558 |
559 |
560 | #### Natural Language Processing
561 |
562 | * [Twitter-text](https://github.com/twitter/twitter-text) - A JavaScript implementation of Twitter's text processing library.
563 | * [natural](https://github.com/NaturalNode/natural) - General natural language facilities for node.
564 | * [Knwl.js](https://github.com/loadfive/Knwl.js) - A Natural Language Processor in JS.
565 | * [Retext](https://github.com/retextjs/retext) - Extensible system for analyzing and manipulating natural language.
566 | * [NLP Compromise](https://github.com/spencermountain/compromise) - Natural Language processing in the browser.
567 | * [nlp.js](https://github.com/axa-group/nlp.js) - An NLP library built in node over Natural, with entity extraction, sentiment analysis, automatic language identify, and so more
568 |
569 |
570 |
571 |
572 | #### Data Analysis / Data Visualization
573 |
574 | * [D3.js](https://d3js.org/)
575 | * [High Charts](https://www.highcharts.com/)
576 | * [NVD3.js](http://nvd3.org/)
577 | * [dc.js](https://dc-js.github.io/dc.js/)
578 | * [chartjs](https://www.chartjs.org/)
579 | * [dimple](http://dimplejs.org/)
580 | * [amCharts](https://www.amcharts.com/)
581 | * [D3xter](https://github.com/NathanEpstein/D3xter) - Straight forward plotting built on D3. **[Deprecated]**
582 | * [statkit](https://github.com/rigtorp/statkit) - Statistics kit for JavaScript. **[Deprecated]**
583 | * [datakit](https://github.com/nathanepstein/datakit) - A lightweight framework for data analysis in JavaScript
584 | * [science.js](https://github.com/jasondavies/science.js/) - Scientific and statistical computing in JavaScript. **[Deprecated]**
585 | * [Z3d](https://github.com/NathanEpstein/Z3d) - Easily make interactive 3d plots built on Three.js **[Deprecated]**
586 | * [Sigma.js](http://sigmajs.org/) - JavaScript library dedicated to graph drawing.
587 | * [C3.js](https://c3js.org/) - customizable library based on D3.js for easy chart drawing.
588 | * [Datamaps](https://datamaps.github.io/) - Customizable SVG map/geo visualizations using D3.js. **[Deprecated]**
589 | * [ZingChart](https://www.zingchart.com/) - library written on Vanilla JS for big data visualization.
590 | * [cheminfo](https://www.cheminfo.org/) - Platform for data visualization and analysis, using the [visualizer](https://github.com/npellet/visualizer) project.
591 | * [Learn JS Data](http://learnjsdata.com/)
592 | * [AnyChart](https://www.anychart.com/)
593 | * [FusionCharts](https://www.fusioncharts.com/)
594 | * [Nivo](https://nivo.rocks) - built on top of the awesome d3 and Reactjs libraries
595 |
596 |
597 |
598 | #### General-Purpose Machine Learning
599 |
600 | * [Auto ML](https://github.com/ClimbsRocks/auto_ml) - Automated machine learning, data formatting, ensembling, and hyperparameter optimization for competitions and exploration- just give it a .csv file!
601 | * [Convnet.js](https://cs.stanford.edu/people/karpathy/convnetjs/) - ConvNetJS is a Javascript library for training Deep Learning models[DEEP LEARNING] **[Deprecated]**
602 | * [Clusterfck](https://harthur.github.io/clusterfck/) - Agglomerative hierarchical clustering implemented in Javascript for Node.js and the browser. **[Deprecated]**
603 | * [Clustering.js](https://github.com/emilbayes/clustering.js) - Clustering algorithms implemented in Javascript for Node.js and the browser. **[Deprecated]**
604 | * [Decision Trees](https://github.com/serendipious/nodejs-decision-tree-id3) - NodeJS Implementation of Decision Tree using ID3 Algorithm. **[Deprecated]**
605 | * [DN2A](https://github.com/antoniodeluca/dn2a.js) - Digital Neural Networks Architecture. **[Deprecated]**
606 | * [figue](https://code.google.com/archive/p/figue) - K-means, fuzzy c-means and agglomerative clustering.
607 | * [Gaussian Mixture Model](https://github.com/lukapopijac/gaussian-mixture-model) - Unsupervised machine learning with multivariate Gaussian mixture model.
608 | * [Node-fann](https://github.com/rlidwka/node-fann) - FANN (Fast Artificial Neural Network Library) bindings for Node.js **[Deprecated]**
609 | * [Keras.js](https://github.com/transcranial/keras-js) - Run Keras models in the browser, with GPU support provided by WebGL 2.
610 | * [Kmeans.js](https://github.com/emilbayes/kMeans.js) - Simple Javascript implementation of the k-means algorithm, for node.js and the browser. **[Deprecated]**
611 | * [LDA.js](https://github.com/primaryobjects/lda) - LDA topic modeling for Node.js
612 | * [Learning.js](https://github.com/yandongliu/learningjs) - Javascript implementation of logistic regression/c4.5 decision tree **[Deprecated]**
613 | * [machinelearn.js](https://github.com/machinelearnjs/machinelearnjs) - Machine Learning library for the web, Node.js and developers
614 | * [mil-tokyo](https://github.com/mil-tokyo) - List of several machine learning libraries.
615 | * [Node-SVM](https://github.com/nicolaspanel/node-svm) - Support Vector Machine for Node.js
616 | * [Brain](https://github.com/harthur/brain) - Neural networks in JavaScript **[Deprecated]**
617 | * [Brain.js](https://github.com/BrainJS/brain.js) - Neural networks in JavaScript - continued community fork of [Brain](https://github.com/harthur/brain).
618 | * [Bayesian-Bandit](https://github.com/omphalos/bayesian-bandit.js) - Bayesian bandit implementation for Node and the browser. **[Deprecated]**
619 | * [Synaptic](https://github.com/cazala/synaptic) - Architecture-free neural network library for Node.js and the browser.
620 | * [kNear](https://github.com/NathanEpstein/kNear) - JavaScript implementation of the k nearest neighbors algorithm for supervised learning.
621 | * [NeuralN](https://github.com/totemstech/neuraln) - C++ Neural Network library for Node.js. It has advantage on large dataset and multi-threaded training. **[Deprecated]**
622 | * [kalman](https://github.com/itamarwe/kalman) - Kalman filter for Javascript. **[Deprecated]**
623 | * [shaman](https://github.com/luccastera/shaman) - Node.js library with support for both simple and multiple linear regression. **[Deprecated]**
624 | * [ml.js](https://github.com/mljs/ml) - Machine learning and numerical analysis tools for Node.js and the Browser!
625 | * [ml5](https://github.com/ml5js/ml5-library) - Friendly machine learning for the web!
626 | * [Pavlov.js](https://github.com/NathanEpstein/Pavlov.js) - Reinforcement learning using Markov Decision Processes.
627 | * [MXNet](https://github.com/apache/incubator-mxnet) - Lightweight, Portable, Flexible Distributed/Mobile Deep Learning with Dynamic, Mutation-aware Dataflow Dep Scheduler; for Python, R, Julia, Go, Javascript and more.
628 | * [TensorFlow.js](https://js.tensorflow.org/) - A WebGL accelerated, browser based JavaScript library for training and deploying ML models.
629 | * [JSMLT](https://github.com/jsmlt/jsmlt) - Machine learning toolkit with classification and clustering for Node.js; supports visualization (see [visualml.io](https://visualml.io)).
630 | * [xgboost-node](https://github.com/nuanio/xgboost-node) - Run XGBoost model and make predictions in Node.js.
631 | * [Netron](https://github.com/lutzroeder/netron) - Visualizer for machine learning models.
632 | * [WebDNN](https://github.com/mil-tokyo/webdnn) - Fast Deep Neural Network Javascript Framework. WebDNN uses next generation JavaScript API, WebGPU for GPU execution, and WebAssembly for CPU execution.
633 |
634 |
635 | #### Misc
636 |
637 | * [stdlib](https://github.com/stdlib-js/stdlib) - A standard library for JavaScript and Node.js, with an emphasis on numeric computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
638 | * [sylvester](https://github.com/jcoglan/sylvester) - Vector and Matrix math for JavaScript. **[Deprecated]**
639 | * [simple-statistics](https://github.com/simple-statistics/simple-statistics) - A JavaScript implementation of descriptive, regression, and inference statistics. Implemented in literate JavaScript with no dependencies, designed to work in all modern browsers (including IE) as well as in Node.js.
640 | * [regression-js](https://github.com/Tom-Alexander/regression-js) - A javascript library containing a collection of least squares fitting methods for finding a trend in a set of data.
641 | * [Lyric](https://github.com/flurry/Lyric) - Linear Regression library. **[Deprecated]**
642 | * [GreatCircle](https://github.com/mwgg/GreatCircle) - Library for calculating great circle distance.
643 | * [MLPleaseHelp](https://github.com/jgreenemi/MLPleaseHelp) - MLPleaseHelp is a simple ML resource search engine. You can use this search engine right now at [https://jgreenemi.github.io/MLPleaseHelp/](https://jgreenemi.github.io/MLPleaseHelp/), provided via Github Pages.
644 | * [Pipcook](https://github.com/alibaba/pipcook) - A JavaScript application framework for machine learning and its engineering.
645 |
646 |
647 | #### Demos and Scripts
648 | * [The Bot](https://github.com/sta-ger/TheBot) - Example of how the neural network learns to predict the angle between two points created with [Synaptic](https://github.com/cazala/synaptic).
649 | * [Half Beer](https://github.com/sta-ger/HalfBeer) - Beer glass classifier created with [Synaptic](https://github.com/cazala/synaptic).
650 | * [NSFWJS](http://nsfwjs.com) - Indecent content checker with TensorFlow.js
651 | * [Rock Paper Scissors](https://rps-tfjs.netlify.com/) - Rock Paper Scissors trained in the browser with TensorFlow.js
652 |
653 |
654 | ## Julia
655 |
656 |
657 | #### General-Purpose Machine Learning
658 |
659 | * [MachineLearning](https://github.com/benhamner/MachineLearning.jl) - Julia Machine Learning library. **[Deprecated]**
660 | * [MLBase](https://github.com/JuliaStats/MLBase.jl) - A set of functions to support the development of machine learning algorithms.
661 | * [PGM](https://github.com/JuliaStats/PGM.jl) - A Julia framework for probabilistic graphical models.
662 | * [DA](https://github.com/trthatcher/DiscriminantAnalysis.jl) - Julia package for Regularized Discriminant Analysis.
663 | * [Regression](https://github.com/lindahua/Regression.jl) - Algorithms for regression analysis (e.g. linear regression and logistic regression). **[Deprecated]**
664 | * [Local Regression](https://github.com/JuliaStats/Loess.jl) - Local regression, so smooooth!
665 | * [Naive Bayes](https://github.com/nutsiepully/NaiveBayes.jl) - Simple Naive Bayes implementation in Julia. **[Deprecated]**
666 | * [Mixed Models](https://github.com/dmbates/MixedModels.jl) - A Julia package for fitting (statistical) mixed-effects models.
667 | * [Simple MCMC](https://github.com/fredo-dedup/SimpleMCMC.jl) - basic mcmc sampler implemented in Julia. **[Deprecated]**
668 | * [Distances](https://github.com/JuliaStats/Distances.jl) - Julia module for Distance evaluation.
669 | * [Decision Tree](https://github.com/bensadeghi/DecisionTree.jl) - Decision Tree Classifier and Regressor.
670 | * [Neural](https://github.com/compressed/BackpropNeuralNet.jl) - A neural network in Julia.
671 | * [MCMC](https://github.com/doobwa/MCMC.jl) - MCMC tools for Julia. **[Deprecated]**
672 | * [Mamba](https://github.com/brian-j-smith/Mamba.jl) - Markov chain Monte Carlo (MCMC) for Bayesian analysis in Julia.
673 | * [GLM](https://github.com/JuliaStats/GLM.jl) - Generalized linear models in Julia.
674 | * [Gaussian Processes](https://github.com/STOR-i/GaussianProcesses.jl) - Julia package for Gaussian processes.
675 | * [Online Learning](https://github.com/lendle/OnlineLearning.jl) **[Deprecated]**
676 | * [GLMNet](https://github.com/simonster/GLMNet.jl) - Julia wrapper for fitting Lasso/ElasticNet GLM models using glmnet.
677 | * [Clustering](https://github.com/JuliaStats/Clustering.jl) - Basic functions for clustering data: k-means, dp-means, etc.
678 | * [SVM](https://github.com/JuliaStats/SVM.jl) - SVM for Julia. **[Deprecated]**
679 | * [Kernel Density](https://github.com/JuliaStats/KernelDensity.jl) - Kernel density estimators for julia.
680 | * [MultivariateStats](https://github.com/JuliaStats/MultivariateStats.jl) - Methods for dimensionality reduction.
681 | * [NMF](https://github.com/JuliaStats/NMF.jl) - A Julia package for non-negative matrix factorization.
682 | * [ANN](https://github.com/EricChiang/ANN.jl) - Julia artificial neural networks. **[Deprecated]**
683 | * [Mocha](https://github.com/pluskid/Mocha.jl) - Deep Learning framework for Julia inspired by Caffe. **[Deprecated]**
684 | * [XGBoost](https://github.com/dmlc/XGBoost.jl) - eXtreme Gradient Boosting Package in Julia.
685 | * [ManifoldLearning](https://github.com/wildart/ManifoldLearning.jl) - A Julia package for manifold learning and nonlinear dimensionality reduction.
686 | * [MXNet](https://github.com/apache/incubator-mxnet) - Lightweight, Portable, Flexible Distributed/Mobile Deep Learning with Dynamic, Mutation-aware Dataflow Dep Scheduler; for Python, R, Julia, Go, Javascript and more.
687 | * [Merlin](https://github.com/hshindo/Merlin.jl) - Flexible Deep Learning Framework in Julia.
688 | * [ROCAnalysis](https://github.com/davidavdav/ROCAnalysis.jl) - Receiver Operating Characteristics and functions for evaluation probabilistic binary classifiers.
689 | * [GaussianMixtures](https://github.com/davidavdav/GaussianMixtures.jl) - Large scale Gaussian Mixture Models.
690 | * [ScikitLearn](https://github.com/cstjean/ScikitLearn.jl) - Julia implementation of the scikit-learn API.
691 | * [Knet](https://github.com/denizyuret/Knet.jl) - Koç University Deep Learning Framework.
692 | * [Flux](https://fluxml.ai/) - Relax! Flux is the ML library that doesn't make you tensor
693 | * [MLJ](https://github.com/alan-turing-institute/MLJ.jl) - A Julia machine learning framework
694 |
695 |
696 | #### Natural Language Processing
697 |
698 | * [Topic Models](https://github.com/slycoder/TopicModels.jl) - TopicModels for Julia. **[Deprecated]**
699 | * [Text Analysis](https://github.com/JuliaText/TextAnalysis.jl) - Julia package for text analysis.
700 | * [Word Tokenizers](https://github.com/JuliaText/WordTokenizers.jl) - Tokenizers for Natural Language Processing in Julia
701 | * [Corpus Loaders](https://github.com/JuliaText/CorpusLoaders.jl) - A julia package providing a variety of loaders for various NLP corpora.
702 | * [Embeddings](https://github.com/JuliaText/Embeddings.jl) - Functions and data dependencies for loading various word embeddings
703 | * [Languages](https://github.com/JuliaText/Languages.jl) - Julia package for working with various human languages
704 | * [WordNet](https://github.com/JuliaText/WordNet.jl) - A Julia package for Princeton's WordNet
705 |
706 |
707 | #### Data Analysis / Data Visualization
708 |
709 | * [Graph Layout](https://github.com/IainNZ/GraphLayout.jl) - Graph layout algorithms in pure Julia.
710 | * [LightGraphs](https://github.com/JuliaGraphs/LightGraphs.jl) - Graph modeling and analysis.
711 | * [Data Frames Meta](https://github.com/JuliaData/DataFramesMeta.jl) - Metaprogramming tools for DataFrames.
712 | * [Julia Data](https://github.com/nfoti/JuliaData) - library for working with tabular data in Julia. **[Deprecated]**
713 | * [Data Read](https://github.com/queryverse/ReadStat.jl) - Read files from Stata, SAS, and SPSS.
714 | * [Hypothesis Tests](https://github.com/JuliaStats/HypothesisTests.jl) - Hypothesis tests for Julia.
715 | * [Gadfly](https://github.com/GiovineItalia/Gadfly.jl) - Crafty statistical graphics for Julia.
716 | * [Stats](https://github.com/JuliaStats/StatsKit.jl) - Statistical tests for Julia.
717 | * [RDataSets](https://github.com/johnmyleswhite/RDatasets.jl) - Julia package for loading many of the data sets available in R.
718 | * [DataFrames](https://github.com/JuliaData/DataFrames.jl) - library for working with tabular data in Julia.
719 | * [Distributions](https://github.com/JuliaStats/Distributions.jl) - A Julia package for probability distributions and associated functions.
720 | * [Data Arrays](https://github.com/JuliaStats/DataArrays.jl) - Data structures that allow missing values. **[Deprecated]**
721 | * [Time Series](https://github.com/JuliaStats/TimeSeries.jl) - Time series toolkit for Julia.
722 | * [Sampling](https://github.com/lindahua/Sampling.jl) - Basic sampling algorithms for Julia.
723 |
724 |
725 | #### Misc Stuff / Presentations
726 |
727 | * [DSP](https://github.com/JuliaDSP/DSP.jl) - Digital Signal Processing (filtering, periodograms, spectrograms, window functions).
728 | * [JuliaCon Presentations](https://github.com/JuliaCon/presentations) - Presentations for JuliaCon.
729 | * [SignalProcessing](https://github.com/JuliaDSP/DSP.jl) - Signal Processing tools for Julia.
730 | * [Images](https://github.com/JuliaImages/Images.jl) - An image library for Julia.
731 | * [DataDeps](https://github.com/oxinabox/DataDeps.jl) - Reproducible data setup for reproducible science.
732 |
733 |
734 | ## Lua
735 |
736 |
737 | #### General-Purpose Machine Learning
738 |
739 | * [Torch7](http://torch.ch/)
740 | * [cephes](https://github.com/deepmind/torch-cephes) - Cephes mathematical functions library, wrapped for Torch. Provides and wraps the 180+ special mathematical functions from the Cephes mathematical library, developed by Stephen L. Moshier. It is used, among many other places, at the heart of SciPy. **[Deprecated]**
741 | * [autograd](https://github.com/twitter/torch-autograd) - Autograd automatically differentiates native Torch code. Inspired by the original Python version.
742 | * [graph](https://github.com/torch/graph) - Graph package for Torch. **[Deprecated]**
743 | * [randomkit](https://github.com/deepmind/torch-randomkit) - Numpy's randomkit, wrapped for Torch. **[Deprecated]**
744 | * [signal](https://github.com/soumith/torch-signal) - A signal processing toolbox for Torch-7. FFT, DCT, Hilbert, cepstrums, stft.
745 | * [nn](https://github.com/torch/nn) - Neural Network package for Torch.
746 | * [torchnet](https://github.com/torchnet/torchnet) - framework for torch which provides a set of abstractions aiming at encouraging code re-use as well as encouraging modular programming.
747 | * [nngraph](https://github.com/torch/nngraph) - This package provides graphical computation for nn library in Torch7.
748 | * [nnx](https://github.com/clementfarabet/lua---nnx) - A completely unstable and experimental package that extends Torch's builtin nn library.
749 | * [rnn](https://github.com/Element-Research/rnn) - A Recurrent Neural Network library that extends Torch's nn. RNNs, LSTMs, GRUs, BRNNs, BLSTMs, etc.
750 | * [dpnn](https://github.com/Element-Research/dpnn) - Many useful features that aren't part of the main nn package.
751 | * [dp](https://github.com/nicholas-leonard/dp) - A deep learning library designed for streamlining research and development using the Torch7 distribution. It emphasizes flexibility through the elegant use of object-oriented design patterns. **[Deprecated]**
752 | * [optim](https://github.com/torch/optim) - An optimization library for Torch. SGD, Adagrad, Conjugate-Gradient, LBFGS, RProp and more.
753 | * [unsup](https://github.com/koraykv/unsup) - A package for unsupervised learning in Torch. Provides modules that are compatible with nn (LinearPsd, ConvPsd, AutoEncoder, ...), and self-contained algorithms (k-means, PCA). **[Deprecated]**
754 | * [manifold](https://github.com/clementfarabet/manifold) - A package to manipulate manifolds.
755 | * [svm](https://github.com/koraykv/torch-svm) - Torch-SVM library. **[Deprecated]**
756 | * [lbfgs](https://github.com/clementfarabet/lbfgs) - FFI Wrapper for liblbfgs. **[Deprecated]**
757 | * [vowpalwabbit](https://github.com/clementfarabet/vowpal_wabbit) - An old vowpalwabbit interface to torch. **[Deprecated]**
758 | * [OpenGM](https://github.com/clementfarabet/lua---opengm) - OpenGM is a C++ library for graphical modeling, and inference. The Lua bindings provide a simple way of describing graphs, from Lua, and then optimizing them with OpenGM. **[Deprecated]**
759 | * [spaghetti](https://github.com/MichaelMathieu/lua---spaghetti) - Spaghetti (sparse linear) module for torch7 by @MichaelMathieu **[Deprecated]**
760 | * [LuaSHKit](https://github.com/ocallaco/LuaSHkit) - A lua wrapper around the Locality sensitive hashing library SHKit **[Deprecated]**
761 | * [kernel smoothing](https://github.com/rlowrance/kernel-smoothers) - KNN, kernel-weighted average, local linear regression smoothers. **[Deprecated]**
762 | * [cutorch](https://github.com/torch/cutorch) - Torch CUDA Implementation.
763 | * [cunn](https://github.com/torch/cunn) - Torch CUDA Neural Network Implementation.
764 | * [imgraph](https://github.com/clementfarabet/lua---imgraph) - An image/graph library for Torch. This package provides routines to construct graphs on images, segment them, build trees out of them, and convert them back to images. **[Deprecated]**
765 | * [videograph](https://github.com/clementfarabet/videograph) - A video/graph library for Torch. This package provides routines to construct graphs on videos, segment them, build trees out of them, and convert them back to videos. **[Deprecated]**
766 | * [saliency](https://github.com/marcoscoffier/torch-saliency) - code and tools around integral images. A library for finding interest points based on fast integral histograms. **[Deprecated]**
767 | * [stitch](https://github.com/marcoscoffier/lua---stitch) - allows us to use hugin to stitch images and apply same stitching to a video sequence. **[Deprecated]**
768 | * [sfm](https://github.com/marcoscoffier/lua---sfm) - A bundle adjustment/structure from motion package. **[Deprecated]**
769 | * [fex](https://github.com/koraykv/fex) - A package for feature extraction in Torch. Provides SIFT and dSIFT modules. **[Deprecated]**
770 | * [OverFeat](https://github.com/sermanet/OverFeat) - A state-of-the-art generic dense feature extractor. **[Deprecated]**
771 | * [wav2letter](https://github.com/facebookresearch/wav2letter) - a simple and efficient end-to-end Automatic Speech Recognition (ASR) system from Facebook AI Research.
772 | * [Numeric Lua](http://numlua.luaforge.net/)
773 | * [Lunatic Python](https://labix.org/lunatic-python)
774 | * [SciLua](http://scilua.org/)
775 | * [Lua - Numerical Algorithms](https://bitbucket.org/lucashnegri/lna) **[Deprecated]**
776 | * [Lunum](https://github.com/jzrake/lunum) **[Deprecated]**
777 |
778 |
779 | #### Demos and Scripts
780 | * [Core torch7 demos repository](https://github.com/e-lab/torch7-demos).
781 | * linear-regression, logistic-regression
782 | * face detector (training and detection as separate demos)
783 | * mst-based-segmenter
784 | * train-a-digit-classifier
785 | * train-autoencoder
786 | * optical flow demo
787 | * train-on-housenumbers
788 | * train-on-cifar
789 | * tracking with deep nets
790 | * kinect demo
791 | * filter-bank visualization
792 | * saliency-networks
793 | * [Training a Convnet for the Galaxy-Zoo Kaggle challenge(CUDA demo)](https://github.com/soumith/galaxyzoo)
794 | * [Music Tagging](https://github.com/mbhenaff/MusicTagging) - Music Tagging scripts for torch7.
795 | * [torch-datasets](https://github.com/rosejn/torch-datasets) - Scripts to load several popular datasets including:
796 | * BSR 500
797 | * CIFAR-10
798 | * COIL
799 | * Street View House Numbers
800 | * MNIST
801 | * NORB
802 | * [Atari2600](https://github.com/fidlej/aledataset) - Scripts to generate a dataset with static frames from the Arcade Learning Environment.
803 |
804 |
805 |
806 |
807 | ## Matlab
808 |
809 |
810 | #### Computer Vision
811 |
812 | * [Contourlets](http://www.ifp.illinois.edu/~minhdo/software/contourlet_toolbox.tar) - MATLAB source code that implements the contourlet transform and its utility functions.
813 | * [Shearlets](https://www3.math.tu-berlin.de/numerik/www.shearlab.org/software) - MATLAB code for shearlet transform.
814 | * [Curvelets](http://www.curvelet.org/software.html) - The Curvelet transform is a higher dimensional generalization of the Wavelet transform designed to represent images at different scales and different angles.
815 | * [Bandlets](http://www.cmap.polytechnique.fr/~peyre/download/) - MATLAB code for bandlet transform.
816 | * [mexopencv](https://kyamagu.github.io/mexopencv/) - Collection and a development kit of MATLAB mex functions for OpenCV library.
817 |
818 |
819 | #### Natural Language Processing
820 |
821 | * [NLP](https://amplab.cs.berkeley.edu/an-nlp-library-for-matlab/) - A NLP library for Matlab.
822 |
823 |
824 | #### General-Purpose Machine Learning
825 |
826 | * [Training a deep autoencoder or a classifier
827 | on MNIST digits](https://www.cs.toronto.edu/~hinton/MatlabForSciencePaper.html) - Training a deep autoencoder or a classifier
828 | on MNIST digits[DEEP LEARNING].
829 | * [Convolutional-Recursive Deep Learning for 3D Object Classification](https://www.socher.org/index.php/Main/Convolutional-RecursiveDeepLearningFor3DObjectClassification) - Convolutional-Recursive Deep Learning for 3D Object Classification[DEEP LEARNING].
830 | * [Spider](https://people.kyb.tuebingen.mpg.de/spider/) - The spider is intended to be a complete object orientated environment for machine learning in Matlab.
831 | * [LibSVM](https://www.csie.ntu.edu.tw/~cjlin/libsvm/#matlab) - A Library for Support Vector Machines.
832 | * [ThunderSVM](https://github.com/Xtra-Computing/thundersvm) - An Open-Source SVM Library on GPUs and CPUs
833 | * [LibLinear](https://www.csie.ntu.edu.tw/~cjlin/liblinear/#download) - A Library for Large Linear Classification.
834 | * [Machine Learning Module](https://github.com/josephmisiti/machine-learning-module) - Class on machine w/ PDF, lectures, code
835 | * [Caffe](https://github.com/BVLC/caffe) - A deep learning framework developed with cleanliness, readability, and speed in mind.
836 | * [Pattern Recognition Toolbox](https://github.com/covartech/PRT) - A complete object-oriented environment for machine learning in Matlab.
837 | * [Pattern Recognition and Machine Learning](https://github.com/PRML/PRMLT) - This package contains the matlab implementation of the algorithms described in the book Pattern Recognition and Machine Learning by C. Bishop.
838 | * [Optunity](https://optunity.readthedocs.io/en/latest/) - A library dedicated to automated hyperparameter optimization with a simple, lightweight API to facilitate drop-in replacement of grid search. Optunity is written in Python but interfaces seamlessly with MATLAB.
839 | * [MXNet](https://github.com/apache/incubator-mxnet/) - Lightweight, Portable, Flexible Distributed/Mobile Deep Learning with Dynamic, Mutation-aware Dataflow Dep Scheduler; for Python, R, Julia, Go, Javascript and more.
840 | * [Machine Learning in MatLab/Octave](https://github.com/trekhleb/machine-learning-octave) - examples of popular machine learning algorithms (neural networks, linear/logistic regressions, K-Means, etc.) with code examples and mathematics behind them being explained.
841 |
842 |
843 |
844 | #### Data Analysis / Data Visualization
845 |
846 | * [ParaMonte](https://github.com/cdslaborg/paramonte) - A general-purpose MATLAB library for Bayesian data analysis and visualization via serial/parallel Monte Carlo and MCMC simulations. Documentation can be found [here](https://www.cdslab.org/paramonte/).
847 | * [matlab_bgl](https://www.cs.purdue.edu/homes/dgleich/packages/matlab_bgl/) - MatlabBGL is a Matlab package for working with graphs.
848 | * [gaimc](https://www.mathworks.com/matlabcentral/fileexchange/24134-gaimc---graph-algorithms-in-matlab-code) - Efficient pure-Matlab implementations of graph algorithms to complement MatlabBGL's mex functions.
849 |
850 |
851 | ## .NET
852 |
853 |
854 | #### Computer Vision
855 |
856 | * [OpenCVDotNet](https://code.google.com/archive/p/opencvdotnet) - A wrapper for the OpenCV project to be used with .NET applications.
857 | * [Emgu CV](http://www.emgu.com/wiki/index.php/Main_Page) - Cross platform wrapper of OpenCV which can be compiled in Mono to be run on Windows, Linus, Mac OS X, iOS, and Android.
858 | * [AForge.NET](http://www.aforgenet.com/framework/) - Open source C# framework for developers and researchers in the fields of Computer Vision and Artificial Intelligence. Development has now shifted to GitHub.
859 | * [Accord.NET](http://accord-framework.net) - Together with AForge.NET, this library can provide image processing and computer vision algorithms to Windows, Windows RT and Windows Phone. Some components are also available for Java and Android.
860 |
861 |
862 | #### Natural Language Processing
863 |
864 | * [Stanford.NLP for .NET](https://github.com/sergey-tihon/Stanford.NLP.NET/) - A full port of Stanford NLP packages to .NET and also available precompiled as a NuGet package.
865 |
866 |
867 | #### General-Purpose Machine Learning
868 |
869 | * [Accord-Framework](http://accord-framework.net/) -The Accord.NET Framework is a complete framework for building machine learning, computer vision, computer audition, signal processing and statistical applications.
870 | * [Accord.MachineLearning](https://www.nuget.org/packages/Accord.MachineLearning/) - Support Vector Machines, Decision Trees, Naive Bayesian models, K-means, Gaussian Mixture models and general algorithms such as Ransac, Cross-validation and Grid-Search for machine-learning applications. This package is part of the Accord.NET Framework.
871 | * [DiffSharp](https://diffsharp.github.io/DiffSharp/) - An automatic differentiation (AD) library providing exact and efficient derivatives (gradients, Hessians, Jacobians, directional derivatives, and matrix-free Hessian- and Jacobian-vector products) for machine learning and optimization applications. Operations can be nested to any level, meaning that you can compute exact higher-order derivatives and differentiate functions that are internally making use of differentiation, for applications such as hyperparameter optimization.
872 | * [Encog](https://www.nuget.org/packages/encog-dotnet-core/) - An advanced neural network and machine learning framework. Encog contains classes to create a wide variety of networks, as well as support classes to normalize and process data for these neural networks. Encog trains using multithreaded resilient propagation. Encog can also make use of a GPU to further speed processing time. A GUI based workbench is also provided to help model and train neural networks.
873 | * [GeneticSharp](https://github.com/giacomelli/GeneticSharp) - Multi-platform genetic algorithm library for .NET Core and .NET Framework. The library has several implementations of GA operators, like: selection, crossover, mutation, reinsertion and termination.
874 | * [Infer.NET](https://dotnet.github.io/infer/) - Infer.NET is a framework for running Bayesian inference in graphical models. One can use Infer.NET to solve many different kinds of machine learning problems, from standard problems like classification, recommendation or clustering through to customized solutions to domain-specific problems. Infer.NET has been used in a wide variety of domains including information retrieval, bioinformatics, epidemiology, vision, and many others.
875 | * [ML.NET](https://github.com/dotnet/machinelearning) - ML.NET is a cross-platform open-source machine learning framework which makes machine learning accessible to .NET developers. ML.NET was originally developed in Microsoft Research and evolved into a significant framework over the last decade and is used across many product groups in Microsoft like Windows, Bing, PowerPoint, Excel and more.
876 | * [Neural Network Designer](https://sourceforge.net/projects/nnd/) - DBMS management system and designer for neural networks. The designer application is developed using WPF, and is a user interface which allows you to design your neural network, query the network, create and configure chat bots that are capable of asking questions and learning from your feedback. The chat bots can even scrape the internet for information to return in their output as well as to use for learning.
877 | * [Synapses](https://github.com/mrdimosthenis/Synapses) - Neural network library in F#.
878 | * [Vulpes](https://github.com/fsprojects/Vulpes) - Deep belief and deep learning implementation written in F# and leverages CUDA GPU execution with Alea.cuBase.
879 | * [MxNet.Sharp](https://github.com/tech-quantum/MxNet.Sharp) - .NET Standard bindings for Apache MxNet with Imperative, Symbolic and Gluon Interface for developing, training and deploying Machine Learning models in C#. https://mxnet.tech-quantum.com/
880 |
881 |
882 | #### Data Analysis / Data Visualization
883 |
884 | * [numl](https://www.nuget.org/packages/numl/) - numl is a machine learning library intended to ease the use of using standard modeling techniques for both prediction and clustering.
885 | * [Math.NET Numerics](https://www.nuget.org/packages/MathNet.Numerics/) - Numerical foundation of the Math.NET project, aiming to provide methods and algorithms for numerical computations in science, engineering and everyday use. Supports .Net 4.0, .Net 3.5 and Mono on Windows, Linux and Mac; Silverlight 5, WindowsPhone/SL 8, WindowsPhone 8.1 and Windows 8 with PCL Portable Profiles 47 and 344; Android/iOS with Xamarin.
886 | * [Sho](https://www.microsoft.com/en-us/research/project/sho-the-net-playground-for-data/) - Sho is an interactive environment for data analysis and scientific computing that lets you seamlessly connect scripts (in IronPython) with compiled code (in .NET) to enable fast and flexible prototyping. The environment includes powerful and efficient libraries for linear algebra as well as data visualization that can be used from any .NET language, as well as a feature-rich interactive shell for rapid development.
887 |
888 |
889 | ## Objective C
890 |
891 |
892 | ### General-Purpose Machine Learning
893 |
894 | * [YCML](https://github.com/yconst/YCML) - A Machine Learning framework for Objective-C and Swift (OS X / iOS).
895 | * [MLPNeuralNet](https://github.com/nikolaypavlov/MLPNeuralNet) - Fast multilayer perceptron neural network library for iOS and Mac OS X. MLPNeuralNet predicts new examples by trained neural networks. It is built on top of the Apple's Accelerate Framework, using vectorized operations and hardware acceleration if available. **[Deprecated]**
896 | * [MAChineLearning](https://github.com/gianlucabertani/MAChineLearning) - An Objective-C multilayer perceptron library, with full support for training through backpropagation. Implemented using vDSP and vecLib, it's 20 times faster than its Java equivalent. Includes sample code for use from Swift.
897 | * [BPN-NeuralNetwork](https://github.com/Kalvar/ios-BPN-NeuralNetwork) - It implemented 3 layers of neural networks ( Input Layer, Hidden Layer and Output Layer ) and it was named Back Propagation Neural Networks (BPN). This network can be used in products recommendation, user behavior analysis, data mining and data analysis. **[Deprecated]**
898 | * [Multi-Perceptron-NeuralNetwork](https://github.com/Kalvar/ios-Multi-Perceptron-NeuralNetwork) - it implemented multi-perceptrons neural network (ニューラルネットワーク) based on Back Propagation Neural Networks (BPN) and designed unlimited-hidden-layers.
899 | * [KRHebbian-Algorithm](https://github.com/Kalvar/ios-KRHebbian-Algorithm) - It is a non-supervisor and self-learning algorithm (adjust the weights) in the neural network of Machine Learning. **[Deprecated]**
900 | * [KRKmeans-Algorithm](https://github.com/Kalvar/ios-KRKmeans-Algorithm) - It implemented K-Means clustering and classification algorithm. It could be used in data mining and image compression. **[Deprecated]**
901 | * [KRFuzzyCMeans-Algorithm](https://github.com/Kalvar/ios-KRFuzzyCMeans-Algorithm) - It implemented Fuzzy C-Means (FCM) the fuzzy clustering / classification algorithm on Machine Learning. It could be used in data mining and image compression. **[Deprecated]**
902 |
903 |
904 | ## OCaml
905 |
906 |
907 | ### General-Purpose Machine Learning
908 |
909 | * [Oml](https://github.com/rleonid/oml) - A general statistics and machine learning library.
910 | * [GPR](https://mmottl.github.io/gpr/) - Efficient Gaussian Process Regression in OCaml.
911 | * [Libra-Tk](https://libra.cs.uoregon.edu) - Algorithms for learning and inference with discrete probabilistic models.
912 | * [TensorFlow](https://github.com/LaurentMazare/tensorflow-ocaml) - OCaml bindings for TensorFlow.
913 |
914 |
915 | ## Perl
916 |
917 |
918 | ### Data Analysis / Data Visualization
919 |
920 | * [Perl Data Language](https://metacpan.org/pod/Paws::MachineLearning), a pluggable architecture for data and image processing, which can
921 | be [used for machine learning](https://github.com/zenogantner/PDL-ML).
922 |
923 |
924 | ### General-Purpose Machine Learning
925 |
926 | * [MXnet for Deep Learning, in Perl](https://github.com/apache/incubator-mxnet/tree/master/perl-package),
927 | also [released in CPAN](https://metacpan.org/pod/AI::MXNet).
928 | * [Perl Data Language](https://metacpan.org/pod/Paws::MachineLearning),
929 | using AWS machine learning platform from Perl.
930 | * [Algorithm::SVMLight](https://metacpan.org/pod/Algorithm::SVMLight),
931 | implementation of Support Vector Machines with SVMLight under it. **[Deprecated]**
932 | * Several machine learning and artificial intelligence models are
933 | included in the [`AI`](https://metacpan.org/search?size=20&q=AI)
934 | namespace. For instance, you can
935 | find [Naïve Bayes](https://metacpan.org/pod/AI::NaiveBayes).
936 |
937 |
938 | ## Perl 6
939 |
940 | * [Support Vector Machines](https://github.com/titsuki/p6-Algorithm-LibSVM)
941 | * [Naïve Bayes](https://github.com/titsuki/p6-Algorithm-NaiveBayes)
942 |
943 | ### Data Analysis / Data Visualization
944 |
945 | * [Perl Data Language](https://metacpan.org/pod/Paws::MachineLearning),
946 | a pluggable architecture for data and image processing, which can
947 | be
948 | [used for machine learning](https://github.com/zenogantner/PDL-ML).
949 |
950 | ### General-Purpose Machine Learning
951 |
952 |
953 | ## PHP
954 |
955 |
956 | ### Natural Language Processing
957 |
958 | * [jieba-php](https://github.com/fukuball/jieba-php) - Chinese Words Segmentation Utilities.
959 |
960 |
961 | ### General-Purpose Machine Learning
962 |
963 | * [PHP-ML](https://github.com/php-ai/php-ml) - Machine Learning library for PHP. Algorithms, Cross Validation, Neural Network, Preprocessing, Feature Extraction and much more in one library.
964 | * [PredictionBuilder](https://github.com/denissimon/prediction-builder) - A library for machine learning that builds predictions using a linear regression.
965 | * [Rubix ML](https://github.com/RubixML) - A high-level machine learning (ML) library that lets you build programs that learn from data using the PHP language.
966 | * [19 Questions](https://github.com/fulldecent/19-questions) - A machine learning / bayesian inference assigning attributes to objects.
967 |
968 |
969 | ## Python
970 |
971 |
972 | #### Computer Vision
973 |
974 | * [Scikit-Image](https://github.com/scikit-image/scikit-image) - A collection of algorithms for image processing in Python.
975 | * [Scikit-Opt](https://github.com/guofei9987/scikit-opt) - Swarm Intelligence in Python (Genetic Algorithm, Particle Swarm Optimization, Simulated Annealing, Ant Colony Algorithm, Immune Algorithm,Artificial Fish Swarm Algorithm in Python)
976 | * [SimpleCV](http://simplecv.org/) - An open source computer vision framework that gives access to several high-powered computer vision libraries, such as OpenCV. Written on Python and runs on Mac, Windows, and Ubuntu Linux.
977 | * [Vigranumpy](https://github.com/ukoethe/vigra) - Python bindings for the VIGRA C++ computer vision library.
978 | * [OpenFace](https://cmusatyalab.github.io/openface/) - Free and open source face recognition with deep neural networks.
979 | * [PCV](https://github.com/jesolem/PCV) - Open source Python module for computer vision. **[Deprecated]**
980 | * [face_recognition](https://github.com/ageitgey/face_recognition) - Face recognition library that recognizes and manipulates faces from Python or from the command line.
981 | * [dockerface](https://github.com/natanielruiz/dockerface) - Easy to install and use deep learning Faster R-CNN face detection for images and video in a docker container.
982 | * [Detectron](https://github.com/facebookresearch/Detectron) - FAIR's software system that implements state-of-the-art object detection algorithms, including Mask R-CNN. It is written in Python and powered by the Caffe2 deep learning framework. **[Deprecated]**
983 | * [detectron2](https://github.com/facebookresearch/detectron2) - FAIR's next-generation research platform for object detection and segmentation. It is a ground-up rewrite of the previous version, Detectron, and is powered by the PyTorch deep learning framework.
984 | * [albumentations](https://github.com/albu/albumentations) - А fast and framework agnostic image augmentation library that implements a diverse set of augmentation techniques. Supports classification, segmentation, detection out of the box. Was used to win a number of Deep Learning competitions at Kaggle, Topcoder and those that were a part of the CVPR workshops.
985 | * [pytessarct](https://github.com/madmaze/pytesseract) - Python-tesseract is an optical character recognition (OCR) tool for python. That is, it will recognize and "read" the text embedded in images. Python-tesseract is a wrapper for [Google's Tesseract-OCR Engine](https://github.com/tesseract-ocr/tesseract).
986 | * [imutils](https://github.com/jrosebr1/imutils) - A library containing Convenience functions to make basic image processing operations such as translation, rotation, resizing, skeletonization, and displaying Matplotlib images easier with OpenCV and Python.
987 | * [PyTorchCV](https://github.com/donnyyou/PyTorchCV) - A PyTorch-Based Framework for Deep Learning in Computer Vision.
988 | * [Self-supervised learning](https://pytorch-lightning-bolts.readthedocs.io/en/latest/self_supervised_models.html)
989 | * [neural-style-pt](https://github.com/ProGamerGov/neural-style-pt) - A PyTorch implementation of Justin Johnson's neural-style (neural style transfer).
990 | * [Detecto](https://github.com/alankbi/detecto) - Train and run a computer vision model with 5-10 lines of code.
991 | * [neural-dream](https://github.com/ProGamerGov/neural-dream) - A PyTorch implementation of DeepDream.
992 | * [Openpose](https://github.com/CMU-Perceptual-Computing-Lab/openpose) - A real-time multi-person keypoint detection library for body, face, hands, and foot estimation
993 | * [Deep High-Resolution-Net](https://github.com/leoxiaobin/deep-high-resolution-net.pytorch) - A PyTorch implementation of CVPR2019 paper "Deep High-Resolution Representation Learning for Human Pose Estimation"
994 | * [dream-creator](https://github.com/ProGamerGov/dream-creator) - A PyTorch implementation of DeepDream. Allows individuals to quickly and easily train their own custom GoogleNet models with custom datasets for DeepDream.
995 | * [Lucent](https://github.com/greentfrapp/lucent) - Tensorflow and OpenAI Clarity's Lucid adapted for PyTorch.
996 | * [lightly](https://github.com/lightly-ai/lightly) - Lightly is a computer vision framework for self-supervised learning.
997 |
998 |
999 | #### Natural Language Processing
1000 |
1001 | * [pkuseg-python](https://github.com/lancopku/pkuseg-python) - A better version of Jieba, developed by Peking University.
1002 | * [NLTK](https://www.nltk.org/) - A leading platform for building Python programs to work with human language data.
1003 | * [Pattern](https://github.com/clips/pattern) - A web mining module for the Python programming language. It has tools for natural language processing, machine learning, among others.
1004 | * [Quepy](https://github.com/machinalis/quepy) - A python framework to transform natural language questions to queries in a database query language.
1005 | * [TextBlob](http://textblob.readthedocs.io/en/dev/) - Providing a consistent API for diving into common natural language processing (NLP) tasks. Stands on the giant shoulders of NLTK and Pattern, and plays nicely with both.
1006 | * [YAlign](https://github.com/machinalis/yalign) - A sentence aligner, a friendly tool for extracting parallel sentences from comparable corpora. **[Deprecated]**
1007 | * [jieba](https://github.com/fxsjy/jieba#jieba-1) - Chinese Words Segmentation Utilities.
1008 | * [SnowNLP](https://github.com/isnowfy/snownlp) - A library for processing Chinese text.
1009 | * [spammy](https://github.com/tasdikrahman/spammy) - A library for email Spam filtering built on top of nltk
1010 | * [loso](https://github.com/fangpenlin/loso) - Another Chinese segmentation library. **[Deprecated]**
1011 | * [genius](https://github.com/duanhongyi/genius) - A Chinese segment based on Conditional Random Field.
1012 | * [KoNLPy](http://konlpy.org) - A Python package for Korean natural language processing.
1013 | * [nut](https://github.com/pprett/nut) - Natural language Understanding Toolkit. **[Deprecated]**
1014 | * [Rosetta](https://github.com/columbia-applied-data-science/rosetta) - Text processing tools and wrappers (e.g. Vowpal Wabbit)
1015 | * [BLLIP Parser](https://pypi.org/project/bllipparser/) - Python bindings for the BLLIP Natural Language Parser (also known as the Charniak-Johnson parser). **[Deprecated]**
1016 | * [PyNLPl](https://github.com/proycon/pynlpl) - Python Natural Language Processing Library. General purpose NLP library for Python. Also contains some specific modules for parsing common NLP formats, most notably for [FoLiA](https://proycon.github.io/folia/), but also ARPA language models, Moses phrasetables, GIZA++ alignments.
1017 | * [PySS3](https://github.com/sergioburdisso/pyss3) - Python package that implements a novel white-box machine learning model for text classification, called SS3. Since SS3 has the ability to visually explain its rationale, this package also comes with easy-to-use interactive visualizations tools ([online demos](http://tworld.io/ss3/)).
1018 | * [python-ucto](https://github.com/proycon/python-ucto) - Python binding to ucto (a unicode-aware rule-based tokenizer for various languages).
1019 | * [python-frog](https://github.com/proycon/python-frog) - Python binding to Frog, an NLP suite for Dutch. (pos tagging, lemmatisation, dependency parsing, NER)
1020 | * [python-zpar](https://github.com/EducationalTestingService/python-zpar) - Python bindings for [ZPar](https://github.com/frcchang/zpar), a statistical part-of-speech-tagger, constituency parser, and dependency parser for English.
1021 | * [colibri-core](https://github.com/proycon/colibri-core) - Python binding to C++ library for extracting and working with basic linguistic constructions such as n-grams and skipgrams in a quick and memory-efficient way.
1022 | * [spaCy](https://github.com/explosion/spaCy) - Industrial strength NLP with Python and Cython.
1023 | * [PyStanfordDependencies](https://github.com/dmcc/PyStanfordDependencies) - Python interface for converting Penn Treebank trees to Stanford Dependencies.
1024 | * [Distance](https://github.com/doukremt/distance) - Levenshtein and Hamming distance computation. **[Deprecated]**
1025 | * [Fuzzy Wuzzy](https://github.com/seatgeek/fuzzywuzzy) - Fuzzy String Matching in Python.
1026 | * [jellyfish](https://github.com/jamesturk/jellyfish) - a python library for doing approximate and phonetic matching of strings.
1027 | * [editdistance](https://pypi.org/project/editdistance/) - fast implementation of edit distance.
1028 | * [textacy](https://github.com/chartbeat-labs/textacy) - higher-level NLP built on Spacy.
1029 | * [stanford-corenlp-python](https://github.com/dasmith/stanford-corenlp-python) - Python wrapper for [Stanford CoreNLP](https://github.com/stanfordnlp/CoreNLP) **[Deprecated]**
1030 | * [CLTK](https://github.com/cltk/cltk) - The Classical Language Toolkit.
1031 | * [rasa_nlu](https://github.com/RasaHQ/rasa_nlu) - turn natural language into structured data.
1032 | * [yase](https://github.com/PPACI/yase) - Transcode sentence (or other sequence) to list of word vector .
1033 | * [Polyglot](https://github.com/aboSamoor/polyglot) - Multilingual text (NLP) processing toolkit.
1034 | * [DrQA](https://github.com/facebookresearch/DrQA) - Reading Wikipedia to answer open-domain questions.
1035 | * [Dedupe](https://github.com/dedupeio/dedupe) - A python library for accurate and scalable fuzzy matching, record deduplication and entity-resolution.
1036 | * [Snips NLU](https://github.com/snipsco/snips-nlu) - Natural Language Understanding library for intent classification and entity extraction
1037 | * [NeuroNER](https://github.com/Franck-Dernoncourt/NeuroNER) - Named-entity recognition using neural networks providing state-of-the-art-results
1038 | * [DeepPavlov](https://github.com/deepmipt/DeepPavlov/) - conversational AI library with many pre-trained Russian NLP models.
1039 | * [BigARTM](https://github.com/bigartm/bigartm) - topic modelling platform.
1040 |
1041 |
1042 | #### General-Purpose Machine Learning
1043 |
1044 | * [igel](https://github.com/nidhaloff/igel) -> A delightful machine learning tool that allows you to train/fit, test and use models **without writing code**
1045 | * [ML Model building](https://github.com/Shanky-21/Machine_learning) -> A Repository Containing Classification, Clustering, Regression, Recommender Notebooks with illustration to make them.
1046 | * [ML/DL project template](https://github.com/PyTorchLightning/deep-learning-project-template)
1047 | * [PyTorch Geometric Temporal](https://github.com/benedekrozemberczki/pytorch_geometric_temporal) -> A temporal extension of PyTorch Geometric for dynamic graph representation learning.
1048 | * [Little Ball of Fur](https://github.com/benedekrozemberczki/littleballoffur) -> A graph sampling extension library for NetworkX with a Scikit-Learn like API.
1049 | * [Karate Club](https://github.com/benedekrozemberczki/karateclub) -> An unsupervised machine learning extension library for NetworkX with a Scikit-Learn like API.
1050 | * [Auto_ViML](https://github.com/AutoViML/Auto_ViML) -> Automatically Build Variant Interpretable ML models fast! Auto_ViML is pronounced "auto vimal", is a comprehensive and scalable Python AutoML toolkit with imbalanced handling, ensembling, stacking and built-in feature selection. Featured in Medium article.
1051 | * [PyOD](https://github.com/yzhao062/pyod) -> Python Outlier Detection, comprehensive and scalable Python toolkit for detecting outlying objects in multivariate data. Featured for Advanced models, including Neural Networks/Deep Learning and Outlier Ensembles.
1052 | * [steppy](https://github.com/neptune-ml/steppy) -> Lightweight, Python library for fast and reproducible machine learning experimentation. Introduces a very simple interface that enables clean machine learning pipeline design.
1053 | * [steppy-toolkit](https://github.com/neptune-ml/steppy-toolkit) -> Curated collection of the neural networks, transformers and models that make your machine learning work faster and more effective.
1054 | * [CNTK](https://github.com/Microsoft/CNTK) - Microsoft Cognitive Toolkit (CNTK), an open source deep-learning toolkit. Documentation can be found [here](https://docs.microsoft.com/cognitive-toolkit/).
1055 | * [Couler](https://github.com/couler-proj/couler) - Unified interface for constructing and managing machine learning workflows on different workflow engines, such as Argo Workflows, Tekton Pipelines, and Apache Airflow.
1056 | * [auto_ml](https://github.com/ClimbsRocks/auto_ml) - Automated machine learning for production and analytics. Lets you focus on the fun parts of ML, while outputting production-ready code, and detailed analytics of your dataset and results. Includes support for NLP, XGBoost, CatBoost, LightGBM, and soon, deep learning.
1057 | * [machine learning](https://github.com/jeff1evesque/machine-learning) - automated build consisting of a [web-interface](https://github.com/jeff1evesque/machine-learning#web-interface), and set of [programmatic-interface](https://github.com/jeff1evesque/machine-learning#programmatic-interface) API, for support vector machines. Corresponding dataset(s) are stored into a SQL database, then generated model(s) used for prediction(s), are stored into a NoSQL datastore.
1058 | * [XGBoost](https://github.com/dmlc/xgboost) - Python bindings for eXtreme Gradient Boosting (Tree) Library.
1059 | * [Apache SINGA](https://singa.apache.org) - An Apache Incubating project for developing an open source machine learning library.
1060 | * [Bayesian Methods for Hackers](https://github.com/CamDavidsonPilon/Probabilistic-Programming-and-Bayesian-Methods-for-Hackers) - Book/iPython notebooks on Probabilistic Programming in Python.
1061 | * [Featureforge](https://github.com/machinalis/featureforge) A set of tools for creating and testing machine learning features, with a scikit-learn compatible API.
1062 | * [MLlib in Apache Spark](http://spark.apache.org/docs/latest/mllib-guide.html) - Distributed machine learning library in Spark
1063 | * [Hydrosphere Mist](https://github.com/Hydrospheredata/mist) - a service for deployment Apache Spark MLLib machine learning models as realtime, batch or reactive web services.
1064 | * [scikit-learn](https://scikit-learn.org/) - A Python module for machine learning built on top of SciPy.
1065 | * [metric-learn](https://github.com/metric-learn/metric-learn) - A Python module for metric learning.
1066 | * [SimpleAI](https://github.com/simpleai-team/simpleai) Python implementation of many of the artificial intelligence algorithms described in the book "Artificial Intelligence, a Modern Approach". It focuses on providing an easy to use, well documented and tested library.
1067 | * [astroML](https://www.astroml.org/) - Machine Learning and Data Mining for Astronomy.
1068 | * [graphlab-create](https://turi.com/products/create/docs/) - A library with various machine learning models (regression, clustering, recommender systems, graph analytics, etc.) implemented on top of a disk-backed DataFrame.
1069 | * [BigML](https://bigml.com) - A library that contacts external servers.
1070 | * [pattern](https://github.com/clips/pattern) - Web mining module for Python.
1071 | * [NuPIC](https://github.com/numenta/nupic) - Numenta Platform for Intelligent Computing.
1072 | * [Pylearn2](https://github.com/lisa-lab/pylearn2) - A Machine Learning library based on [Theano](https://github.com/Theano/Theano). **[Deprecated]**
1073 | * [keras](https://github.com/keras-team/keras) - High-level neural networks frontend for [TensorFlow](https://github.com/tensorflow/tensorflow), [CNTK](https://github.com/Microsoft/CNTK) and [Theano](https://github.com/Theano/Theano).
1074 | * [Lasagne](https://github.com/Lasagne/Lasagne) - Lightweight library to build and train neural networks in Theano.
1075 | * [hebel](https://github.com/hannes-brt/hebel) - GPU-Accelerated Deep Learning Library in Python. **[Deprecated]**
1076 | * [Chainer](https://github.com/chainer/chainer) - Flexible neural network framework.
1077 | * [prophet](https://facebook.github.io/prophet/) - Fast and automated time series forecasting framework by Facebook.
1078 | * [gensim](https://github.com/RaRe-Technologies/gensim) - Topic Modelling for Humans.
1079 | * [topik](https://github.com/ContinuumIO/topik) - Topic modelling toolkit. **[Deprecated]**
1080 | * [PyBrain](https://github.com/pybrain/pybrain) - Another Python Machine Learning Library.
1081 | * [Brainstorm](https://github.com/IDSIA/brainstorm) - Fast, flexible and fun neural networks. This is the successor of PyBrain.
1082 | * [Surprise](https://surpriselib.com) - A scikit for building and analyzing recommender systems.
1083 | * [implicit](https://implicit.readthedocs.io/en/latest/quickstart.html) - Fast Python Collaborative Filtering for Implicit Datasets.
1084 | * [LightFM](https://making.lyst.com/lightfm/docs/home.html) - A Python implementation of a number of popular recommendation algorithms for both implicit and explicit feedback.
1085 | * [Crab](https://github.com/muricoca/crab) - A flexible, fast recommender engine. **[Deprecated]**
1086 | * [python-recsys](https://github.com/ocelma/python-recsys) - A Python library for implementing a Recommender System.
1087 | * [thinking bayes](https://github.com/AllenDowney/ThinkBayes) - Book on Bayesian Analysis.
1088 | * [Image-to-Image Translation with Conditional Adversarial Networks](https://github.com/williamFalcon/pix2pix-keras) - Implementation of image to image (pix2pix) translation from the paper by [isola et al](https://arxiv.org/pdf/1611.07004.pdf).[DEEP LEARNING]
1089 | * [Restricted Boltzmann Machines](https://github.com/echen/restricted-boltzmann-machines) -Restricted Boltzmann Machines in Python. [DEEP LEARNING]
1090 | * [Bolt](https://github.com/pprett/bolt) - Bolt Online Learning Toolbox. **[Deprecated]**
1091 | * [CoverTree](https://github.com/patvarilly/CoverTree) - Python implementation of cover trees, near-drop-in replacement for scipy.spatial.kdtree **[Deprecated]**
1092 | * [nilearn](https://github.com/nilearn/nilearn) - Machine learning for NeuroImaging in Python.
1093 | * [neuropredict](https://github.com/raamana/neuropredict) - Aimed at novice machine learners and non-expert programmers, this package offers easy (no coding needed) and comprehensive machine learning (evaluation and full report of predictive performance WITHOUT requiring you to code) in Python for NeuroImaging and any other type of features. This is aimed at absorbing much of the ML workflow, unlike other packages like nilearn and pymvpa, which require you to learn their API and code to produce anything useful.
1094 | * [imbalanced-learn](https://imbalanced-learn.org/stable/) - Python module to perform under sampling and oversampling with various techniques.
1095 | * [Shogun](https://github.com/shogun-toolbox/shogun) - The Shogun Machine Learning Toolbox.
1096 | * [Pyevolve](https://github.com/perone/Pyevolve) - Genetic algorithm framework. **[Deprecated]**
1097 | * [Caffe](https://github.com/BVLC/caffe) - A deep learning framework developed with cleanliness, readability, and speed in mind.
1098 | * [breze](https://github.com/breze-no-salt/breze) - Theano based library for deep and recurrent neural networks.
1099 | * [Cortex](https://github.com/cortexlabs/cortex) - Open source platform for deploying machine learning models in production.
1100 | * [pyhsmm](https://github.com/mattjj/pyhsmm) - library for approximate unsupervised inference in Bayesian Hidden Markov Models (HMMs) and explicit-duration Hidden semi-Markov Models (HSMMs), focusing on the Bayesian Nonparametric extensions, the HDP-HMM and HDP-HSMM, mostly with weak-limit approximations.
1101 | * [SKLL](https://github.com/EducationalTestingService/skll) - A wrapper around scikit-learn that makes it simpler to conduct experiments.
1102 | * [neurolab](https://github.com/zueve/neurolab)
1103 | * [Spearmint](https://github.com/HIPS/Spearmint) - Spearmint is a package to perform Bayesian optimization according to the algorithms outlined in the paper: Practical Bayesian Optimization of Machine Learning Algorithms. Jasper Snoek, Hugo Larochelle and Ryan P. Adams. Advances in Neural Information Processing Systems, 2012. **[Deprecated]**
1104 | * [Pebl](https://github.com/abhik/pebl/) - Python Environment for Bayesian Learning. **[Deprecated]**
1105 | * [Theano](https://github.com/Theano/Theano/) - Optimizing GPU-meta-programming code generating array oriented optimizing math compiler in Python.
1106 | * [TensorFlow](https://github.com/tensorflow/tensorflow/) - Open source software library for numerical computation using data flow graphs.
1107 | * [pomegranate](https://github.com/jmschrei/pomegranate) - Hidden Markov Models for Python, implemented in Cython for speed and efficiency.
1108 | * [python-timbl](https://github.com/proycon/python-timbl) - A Python extension module wrapping the full TiMBL C++ programming interface. Timbl is an elaborate k-Nearest Neighbours machine learning toolkit.
1109 | * [deap](https://github.com/deap/deap) - Evolutionary algorithm framework.
1110 | * [pydeep](https://github.com/andersbll/deeppy) - Deep Learning In Python. **[Deprecated]**
1111 | * [mlxtend](https://github.com/rasbt/mlxtend) - A library consisting of useful tools for data science and machine learning tasks.
1112 | * [neon](https://github.com/NervanaSystems/neon) - Nervana's [high-performance](https://github.com/soumith/convnet-benchmarks) Python-based Deep Learning framework [DEEP LEARNING]. **[Deprecated]**
1113 | * [Optunity](https://optunity.readthedocs.io/en/latest/) - A library dedicated to automated hyperparameter optimization with a simple, lightweight API to facilitate drop-in replacement of grid search.
1114 | * [Neural Networks and Deep Learning](https://github.com/mnielsen/neural-networks-and-deep-learning) - Code samples for my book "Neural Networks and Deep Learning" [DEEP LEARNING].
1115 | * [Annoy](https://github.com/spotify/annoy) - Approximate nearest neighbours implementation.
1116 | * [TPOT](https://github.com/EpistasisLab/tpot) - Tool that automatically creates and optimizes machine learning pipelines using genetic programming. Consider it your personal data science assistant, automating a tedious part of machine learning.
1117 | * [pgmpy](https://github.com/pgmpy/pgmpy) A python library for working with Probabilistic Graphical Models.
1118 | * [DIGITS](https://github.com/NVIDIA/DIGITS) - The Deep Learning GPU Training System (DIGITS) is a web application for training deep learning models.
1119 | * [Orange](https://orange.biolab.si/) - Open source data visualization and data analysis for novices and experts.
1120 | * [MXNet](https://github.com/apache/incubator-mxnet) - Lightweight, Portable, Flexible Distributed/Mobile Deep Learning with Dynamic, Mutation-aware Dataflow Dep Scheduler; for Python, R, Julia, Go, Javascript and more.
1121 | * [milk](https://github.com/luispedro/milk) - Machine learning toolkit focused on supervised classification. **[Deprecated]**
1122 | * [TFLearn](https://github.com/tflearn/tflearn) - Deep learning library featuring a higher-level API for TensorFlow.
1123 | * [REP](https://github.com/yandex/rep) - an IPython-based environment for conducting data-driven research in a consistent and reproducible way. REP is not trying to substitute scikit-learn, but extends it and provides better user experience. **[Deprecated]**
1124 | * [rgf_python](https://github.com/RGF-team/rgf) - Python bindings for Regularized Greedy Forest (Tree) Library.
1125 | * [skbayes](https://github.com/AmazaspShumik/sklearn-bayes) - Python package for Bayesian Machine Learning with scikit-learn API.
1126 | * [fuku-ml](https://github.com/fukuball/fuku-ml) - Simple machine learning library, including Perceptron, Regression, Support Vector Machine, Decision Tree and more, it's easy to use and easy to learn for beginners.
1127 | * [Xcessiv](https://github.com/reiinakano/xcessiv) - A web-based application for quick, scalable, and automated hyperparameter tuning and stacked ensembling.
1128 | * [PyTorch](https://github.com/pytorch/pytorch) - Tensors and Dynamic neural networks in Python with strong GPU acceleration
1129 | * [PyTorch Lightning](https://github.com/PyTorchLightning/pytorch-lightning) - The lightweight PyTorch wrapper for high-performance AI research.
1130 | * [PyTorch Lightning Bolts](https://github.com/PyTorchLightning/pytorch-lightning-bolts) - Toolbox of models, callbacks, and datasets for AI/ML researchers.
1131 | * [skorch](https://github.com/skorch-dev/skorch) - A scikit-learn compatible neural network library that wraps PyTorch.
1132 | * [ML-From-Scratch](https://github.com/eriklindernoren/ML-From-Scratch) - Implementations of Machine Learning models from scratch in Python with a focus on transparency. Aims to showcase the nuts and bolts of ML in an accessible way.
1133 | * [Edward](http://edwardlib.org/) - A library for probabilistic modeling, inference, and criticism. Built on top of TensorFlow.
1134 | * [xRBM](https://github.com/omimo/xRBM) - A library for Restricted Boltzmann Machine (RBM) and its conditional variants in Tensorflow.
1135 | * [CatBoost](https://github.com/catboost/catboost) - General purpose gradient boosting on decision trees library with categorical features support out of the box. It is easy to install, well documented and supports CPU and GPU (even multi-GPU) computation.
1136 | * [stacked_generalization](https://github.com/fukatani/stacked_generalization) - Implementation of machine learning stacking technique as a handy library in Python.
1137 | * [modAL](https://github.com/modAL-python/modAL) - A modular active learning framework for Python, built on top of scikit-learn.
1138 | * [Cogitare](https://github.com/cogitare-ai/cogitare): A Modern, Fast, and Modular Deep Learning and Machine Learning framework for Python.
1139 | * [Parris](https://github.com/jgreenemi/Parris) - Parris, the automated infrastructure setup tool for machine learning algorithms.
1140 | * [neonrvm](https://github.com/siavashserver/neonrvm) - neonrvm is an open source machine learning library based on RVM technique. It's written in C programming language and comes with Python programming language bindings.
1141 | * [Turi Create](https://github.com/apple/turicreate) - Machine learning from Apple. Turi Create simplifies the development of custom machine learning models. You don't have to be a machine learning expert to add recommendations, object detection, image classification, image similarity or activity classification to your app.
1142 | * [xLearn](https://github.com/aksnzhy/xlearn) - A high performance, easy-to-use, and scalable machine learning package, which can be used to solve large-scale machine learning problems. xLearn is especially useful for solving machine learning problems on large-scale sparse data, which is very common in Internet services such as online advertisement and recommender systems.
1143 | * [mlens](https://github.com/flennerhag/mlens) - A high performance, memory efficient, maximally parallelized ensemble learning, integrated with scikit-learn.
1144 | * [Netron](https://github.com/lutzroeder/netron) - Visualizer for machine learning models.
1145 | * [Thampi](https://github.com/scoremedia/thampi) - Machine Learning Prediction System on AWS Lambda
1146 | * [MindsDB](https://github.com/mindsdb/mindsdb) - Open Source framework to streamline use of neural networks.
1147 | * [Microsoft Recommenders](https://github.com/Microsoft/Recommenders): Examples and best practices for building recommendation systems, provided as Jupyter notebooks. The repo contains some of the latest state of the art algorithms from Microsoft Research as well as from other companies and institutions.
1148 | * [StellarGraph](https://github.com/stellargraph/stellargraph): Machine Learning on Graphs, a Python library for machine learning on graph-structured (network-structured) data.
1149 | * [BentoML](https://github.com/bentoml/bentoml): Toolkit for package and deploy machine learning models for serving in production
1150 | * [MiraiML](https://github.com/arthurpaulino/miraiml): An asynchronous engine for continuous & autonomous machine learning, built for real-time usage.
1151 | * [numpy-ML](https://github.com/ddbourgin/numpy-ml): Reference implementations of ML models written in numpy
1152 | * [creme](https://github.com/creme-ml/creme): A framework for online machine learning.
1153 | * [Neuraxle](https://github.com/Neuraxio/Neuraxle): A framework providing the right abstractions to ease research, development, and deployment of your ML pipelines.
1154 | * [Cornac](https://github.com/PreferredAI/cornac) - A comparative framework for multimodal recommender systems with a focus on models leveraging auxiliary data.
1155 | * [JAX](https://github.com/google/jax) - JAX is Autograd and XLA, brought together for high-performance machine learning research.
1156 | * [Catalyst](https://github.com/catalyst-team/catalyst) - High-level utils for PyTorch DL & RL research. It was developed with a focus on reproducibility, fast experimentation and code/ideas reusing. Being able to research/develop something new, rather than write another regular train loop.
1157 | * [Fastai](https://github.com/fastai/fastai) - High-level wrapper built on the top of Pytorch which supports vision, text, tabular data and collaborative filtering.
1158 | * [scikit-multiflow](https://github.com/scikit-multiflow/scikit-multiflow) - A machine learning framework for multi-output/multi-label and stream data.
1159 | * [Lightwood](https://github.com/mindsdb/lightwood) - A Pytorch based framework that breaks down machine learning problems into smaller blocks that can be glued together seamlessly with objective to build predictive models with one line of code.
1160 | * [bayeso](https://github.com/jungtaekkim/bayeso) - A simple, but essential Bayesian optimization package, written in Python.
1161 | * [mljar-supervised](https://github.com/mljar/mljar-supervised) - An Automated Machine Learning (AutoML) python package for tabular data. It can handle: Binary Classification, MultiClass Classification and Regression. It provides explanations and markdown reports.
1162 | * [evostra](https://github.com/alirezamika/evostra) - A fast Evolution Strategy implementation in Python.
1163 | * [Determined](https://github.com/determined-ai/determined) - Scalable deep learning training platform, including integrated support for distributed training, hyperparameter tuning, experiment tracking, and model management.
1164 | * [PySyft](https://github.com/OpenMined/PySyft) - A Python library for secure and private Deep Learning built on PyTorch and TensorFlow.
1165 | * [PyGrid](https://github.com/OpenMined/PyGrid/) - Peer-to-peer network of data owners and data scientists who can collectively train AI models using PySyft
1166 |
1167 |
1168 | #### Data Analysis / Data Visualization
1169 | * [DataVisualization](https://github.com/Shanky-21/Data_visualization) - A Github Repository Where you can Learn Datavisualizatoin Basics to Intermediate level.
1170 | * [Cartopy](https://scitools.org.uk/cartopy/docs/latest/) - Cartopy is a Python package designed for geospatial data processing in order to produce maps and other geospatial data analyses.
1171 | * [SciPy](https://www.scipy.org/) - A Python-based ecosystem of open-source software for mathematics, science, and engineering.
1172 | * [NumPy](https://www.numpy.org/) - A fundamental package for scientific computing with Python.
1173 | * [AutoViz](https://github.com/AutoViML/AutoViz) AutoViz performs automatic visualization of any dataset with a single line of Python code. Give it any input file (CSV, txt or json) of any size and AutoViz will visualize it. See Medium article.
1174 | * [Numba](https://numba.pydata.org/) - Python JIT (just in time) compiler to LLVM aimed at scientific Python by the developers of Cython and NumPy.
1175 | * [Mars](https://github.com/mars-project/mars) - A tensor-based framework for large-scale data computation which is often regarded as a parallel and distributed version of NumPy.
1176 | * [NetworkX](https://networkx.github.io/) - A high-productivity software for complex networks.
1177 | * [igraph](https://igraph.org/python/) - binding to igraph library - General purpose graph library.
1178 | * [Pandas](https://pandas.pydata.org/) - A library providing high-performance, easy-to-use data structures and data analysis tools.
1179 | * [ParaMonte](https://github.com/cdslaborg/paramonte) - A general-purpose Python library for Bayesian data analysis and visualization via serial/parallel Monte Carlo and MCMC simulations. Documentation can be found [here](https://www.cdslab.org/paramonte/).
1180 | * [Open Mining](https://github.com/mining/mining) - Business Intelligence (BI) in Python (Pandas web interface) **[Deprecated]**
1181 | * [PyMC](https://github.com/pymc-devs/pymc) - Markov Chain Monte Carlo sampling toolkit.
1182 | * [zipline](https://github.com/quantopian/zipline) - A Pythonic algorithmic trading library.
1183 | * [PyDy](https://www.pydy.org/) - Short for Python Dynamics, used to assist with workflow in the modeling of dynamic motion based around NumPy, SciPy, IPython, and matplotlib.
1184 | * [SymPy](https://github.com/sympy/sympy) - A Python library for symbolic mathematics.
1185 | * [statsmodels](https://github.com/statsmodels/statsmodels) - Statistical modeling and econometrics in Python.
1186 | * [astropy](https://www.astropy.org/) - A community Python library for Astronomy.
1187 | * [matplotlib](https://matplotlib.org/) - A Python 2D plotting library.
1188 | * [bokeh](https://github.com/bokeh/bokeh) - Interactive Web Plotting for Python.
1189 | * [plotly](https://plot.ly/python/) - Collaborative web plotting for Python and matplotlib.
1190 | * [altair](https://github.com/altair-viz/altair) - A Python to Vega translator.
1191 | * [d3py](https://github.com/mikedewar/d3py) - A plotting library for Python, based on [D3.js](https://d3js.org/).
1192 | * [PyDexter](https://github.com/D3xterjs/pydexter) - Simple plotting for Python. Wrapper for D3xterjs; easily render charts in-browser.
1193 | * [ggplot](https://github.com/yhat/ggpy) - Same API as ggplot2 for R. **[Deprecated]**
1194 | * [ggfortify](https://github.com/sinhrks/ggfortify) - Unified interface to ggplot2 popular R packages.
1195 | * [Kartograph.py](https://github.com/kartograph/kartograph.py) - Rendering beautiful SVG maps in Python.
1196 | * [pygal](http://pygal.org/en/stable/) - A Python SVG Charts Creator.
1197 | * [PyQtGraph](https://github.com/pyqtgraph/pyqtgraph) - A pure-python graphics and GUI library built on PyQt4 / PySide and NumPy.
1198 | * [pycascading](https://github.com/twitter/pycascading) **[Deprecated]**
1199 | * [Petrel](https://github.com/AirSage/Petrel) - Tools for writing, submitting, debugging, and monitoring Storm topologies in pure Python.
1200 | * [Blaze](https://github.com/blaze/blaze) - NumPy and Pandas interface to Big Data.
1201 | * [emcee](https://github.com/dfm/emcee) - The Python ensemble sampling toolkit for affine-invariant MCMC.
1202 | * [windML](https://github.com/cigroup-ol/windml) - A Python Framework for Wind Energy Analysis and Prediction.
1203 | * [vispy](https://github.com/vispy/vispy) - GPU-based high-performance interactive OpenGL 2D/3D data visualization library.
1204 | * [cerebro2](https://github.com/numenta/nupic.cerebro2) A web-based visualization and debugging platform for NuPIC. **[Deprecated]**
1205 | * [NuPIC Studio](https://github.com/htm-community/nupic.studio) An all-in-one NuPIC Hierarchical Temporal Memory visualization and debugging super-tool! **[Deprecated]**
1206 | * [SparklingPandas](https://github.com/sparklingpandas/sparklingpandas) Pandas on PySpark (POPS).
1207 | * [Seaborn](https://seaborn.pydata.org/) - A python visualization library based on matplotlib.
1208 | * [bqplot](https://github.com/bloomberg/bqplot) - An API for plotting in Jupyter (IPython).
1209 | * [pastalog](https://github.com/rewonc/pastalog) - Simple, realtime visualization of neural network training performance.
1210 | * [Superset](https://github.com/apache/incubator-superset) - A data exploration platform designed to be visual, intuitive, and interactive.
1211 | * [Dora](https://github.com/nathanepstein/dora) - Tools for exploratory data analysis in Python.
1212 | * [Ruffus](http://www.ruffus.org.uk) - Computation Pipeline library for python.
1213 | * [SOMPY](https://github.com/sevamoo/SOMPY) - Self Organizing Map written in Python (Uses neural networks for data analysis).
1214 | * [somoclu](https://github.com/peterwittek/somoclu) Massively parallel self-organizing maps: accelerate training on multicore CPUs, GPUs, and clusters, has python API.
1215 | * [HDBScan](https://github.com/lmcinnes/hdbscan) - implementation of the hdbscan algorithm in Python - used for clustering
1216 | * [visualize_ML](https://github.com/ayush1997/visualize_ML) - A python package for data exploration and data analysis. **[Deprecated]**
1217 | * [scikit-plot](https://github.com/reiinakano/scikit-plot) - A visualization library for quick and easy generation of common plots in data analysis and machine learning.
1218 | * [Bowtie](https://github.com/jwkvam/bowtie) - A dashboard library for interactive visualizations using flask socketio and react.
1219 | * [lime](https://github.com/marcotcr/lime) - Lime is about explaining what machine learning classifiers (or models) are doing. It is able to explain any black box classifier, with two or more classes.
1220 | * [PyCM](https://github.com/sepandhaghighi/pycm) - PyCM is a multi-class confusion matrix library written in Python that supports both input data vectors and direct matrix, and a proper tool for post-classification model evaluation that supports most classes and overall statistics parameters
1221 | * [Dash](https://github.com/plotly/dash) - A framework for creating analytical web applications built on top of Plotly.js, React, and Flask
1222 | * [Lambdo](https://github.com/asavinov/lambdo) - A workflow engine for solving machine learning problems by combining in one analysis pipeline (i) feature engineering and machine learning (ii) model training and prediction (iii) table population and column evaluation via user-defined (Python) functions.
1223 | * [TensorWatch](https://github.com/microsoft/tensorwatch) - Debugging and visualization tool for machine learning and data science. It extensively leverages Jupyter Notebook to show real-time visualizations of data in running processes such as machine learning training.
1224 | * [dowel](https://github.com/rlworkgroup/dowel) - A little logger for machine learning research. Output any object to the terminal, CSV, TensorBoard, text logs on disk, and more with just one call to `logger.log()`.
1225 |
1226 |
1227 | #### Misc Scripts / iPython Notebooks / Codebases
1228 | * [MiniGrad](https://github.com/kennysong/minigrad) – A minimal, educational, Pythonic implementation of autograd (~100 loc).
1229 | * [Map/Reduce implementations of common ML algorithms](https://github.com/Yannael/BigDataAnalytics_INFOH515): Jupyter notebooks that cover how to implement from scratch different ML algorithms (ordinary least squares, gradient descent, k-means, alternating least squares), using Python NumPy, and how to then make these implementations scalable using Map/Reduce and Spark.
1230 | * [BioPy](https://github.com/jaredthecoder/BioPy) - Biologically-Inspired and Machine Learning Algorithms in Python. **[Deprecated]**
1231 | * [SVM Explorer](https://github.com/plotly/dash-svm) - Interactive SVM Explorer, using Dash and scikit-learn
1232 | * [pattern_classification](https://github.com/rasbt/pattern_classification)
1233 | * [thinking stats 2](https://github.com/Wavelets/ThinkStats2)
1234 | * [hyperopt](https://github.com/hyperopt/hyperopt-sklearn)
1235 | * [numpic](https://github.com/numenta/nupic)
1236 | * [2012-paper-diginorm](https://github.com/dib-lab/2012-paper-diginorm)
1237 | * [A gallery of interesting IPython notebooks](https://github.com/jupyter/jupyter/wiki/A-gallery-of-interesting-Jupyter-Notebooks)
1238 | * [ipython-notebooks](https://github.com/ogrisel/notebooks)
1239 | * [data-science-ipython-notebooks](https://github.com/donnemartin/data-science-ipython-notebooks) - Continually updated Data Science Python Notebooks: Spark, Hadoop MapReduce, HDFS, AWS, Kaggle, scikit-learn, matplotlib, pandas, NumPy, SciPy, and various command lines.
1240 | * [decision-weights](https://github.com/CamDavidsonPilon/decision-weights)
1241 | * [Sarah Palin LDA](https://github.com/Wavelets/sarah-palin-lda) - Topic Modeling the Sarah Palin emails.
1242 | * [Diffusion Segmentation](https://github.com/Wavelets/diffusion-segmentation) - A collection of image segmentation algorithms based on diffusion methods.
1243 | * [Scipy Tutorials](https://github.com/Wavelets/scipy-tutorials) - SciPy tutorials. This is outdated, check out scipy-lecture-notes.
1244 | * [Crab](https://github.com/marcelcaraciolo/crab) - A recommendation engine library for Python.
1245 | * [BayesPy](https://github.com/maxsklar/BayesPy) - Bayesian Inference Tools in Python.
1246 | * [scikit-learn tutorials](https://github.com/GaelVaroquaux/scikit-learn-tutorial) - Series of notebooks for learning scikit-learn.
1247 | * [sentiment-analyzer](https://github.com/madhusudancs/sentiment-analyzer) - Tweets Sentiment Analyzer
1248 | * [sentiment_classifier](https://github.com/kevincobain2000/sentiment_classifier) - Sentiment classifier using word sense disambiguation.
1249 | * [group-lasso](https://github.com/fabianp/group_lasso) - Some experiments with the coordinate descent algorithm used in the (Sparse) Group Lasso model.
1250 | * [jProcessing](https://github.com/kevincobain2000/jProcessing) - Kanji / Hiragana / Katakana to Romaji Converter. Edict Dictionary & parallel sentences Search. Sentence Similarity between two JP Sentences. Sentiment Analysis of Japanese Text. Run Cabocha(ISO--8859-1 configured) in Python.
1251 | * [mne-python-notebooks](https://github.com/mne-tools/mne-python-notebooks) - IPython notebooks for EEG/MEG data processing using mne-python.
1252 | * [Neon Course](https://github.com/NervanaSystems/neon_course) - IPython notebooks for a complete course around understanding Nervana's Neon.
1253 | * [pandas cookbook](https://github.com/jvns/pandas-cookbook) - Recipes for using Python's pandas library.
1254 | * [climin](https://github.com/BRML/climin) - Optimization library focused on machine learning, pythonic implementations of gradient descent, LBFGS, rmsprop, adadelta and others.
1255 | * [Allen Downey’s Data Science Course](https://github.com/AllenDowney/DataScience) - Code for Data Science at Olin College, Spring 2014.
1256 | * [Allen Downey’s Think Bayes Code](https://github.com/AllenDowney/ThinkBayes) - Code repository for Think Bayes.
1257 | * [Allen Downey’s Think Complexity Code](https://github.com/AllenDowney/ThinkComplexity) - Code for Allen Downey's book Think Complexity.
1258 | * [Allen Downey’s Think OS Code](https://github.com/AllenDowney/ThinkOS) - Text and supporting code for Think OS: A Brief Introduction to Operating Systems.
1259 | * [Python Programming for the Humanities](https://www.karsdorp.io/python-course/) - Course for Python programming for the Humanities, assuming no prior knowledge. Heavy focus on text processing / NLP.
1260 | * [GreatCircle](https://github.com/mwgg/GreatCircle) - Library for calculating great circle distance.
1261 | * [Optunity examples](http://optunity.readthedocs.io/en/latest/notebooks/index.html) - Examples demonstrating how to use Optunity in synergy with machine learning libraries.
1262 | * [Dive into Machine Learning with Python Jupyter notebook and scikit-learn](https://github.com/hangtwenty/dive-into-machine-learning) - "I learned Python by hacking first, and getting serious *later.* I wanted to do this with Machine Learning. If this is your style, join me in getting a bit ahead of yourself."
1263 | * [TDB](https://github.com/ericjang/tdb) - TensorDebugger (TDB) is a visual debugger for deep learning. It features interactive, node-by-node debugging and visualization for TensorFlow.
1264 | * [Suiron](https://github.com/kendricktan/suiron/) - Machine Learning for RC Cars.
1265 | * [Introduction to machine learning with scikit-learn](https://github.com/justmarkham/scikit-learn-videos) - IPython notebooks from Data School's video tutorials on scikit-learn.
1266 | * [Practical XGBoost in Python](https://parrotprediction.teachable.com/p/practical-xgboost-in-python) - comprehensive online course about using XGBoost in Python.
1267 | * [Introduction to Machine Learning with Python](https://github.com/amueller/introduction_to_ml_with_python) - Notebooks and code for the book "Introduction to Machine Learning with Python"
1268 | * [Pydata book](https://github.com/wesm/pydata-book) - Materials and IPython notebooks for "Python for Data Analysis" by Wes McKinney, published by O'Reilly Media
1269 | * [Homemade Machine Learning](https://github.com/trekhleb/homemade-machine-learning) - Python examples of popular machine learning algorithms with interactive Jupyter demos and math being explained
1270 | * [Prodmodel](https://github.com/prodmodel/prodmodel) - Build tool for data science pipelines.
1271 | * [the-elements-of-statistical-learning](https://github.com/maitbayev/the-elements-of-statistical-learning) - This repository contains Jupyter notebooks implementing the algorithms found in the book and summary of the textbook.
1272 | * [Hyperparameter-Optimization-of-Machine-Learning-Algorithms](https://github.com/LiYangHart/Hyperparameter-Optimization-of-Machine-Learning-Algorithms) - Code for hyperparameter tuning/optimization of machine learning and deep learning algorithms.
1273 |
1274 |
1275 | #### Neural Networks
1276 |
1277 | * [nn_builder](https://github.com/p-christ/nn_builder) - nn_builder is a python package that lets you build neural networks in 1 line
1278 | * [NeuralTalk](https://github.com/karpathy/neuraltalk) - NeuralTalk is a Python+numpy project for learning Multimodal Recurrent Neural Networks that describe images with sentences.
1279 | * [Neuron](https://github.com/molcik/python-neuron) - Neuron is simple class for time series predictions. It's utilize LNU (Linear Neural Unit), QNU (Quadratic Neural Unit), RBF (Radial Basis Function), MLP (Multi Layer Perceptron), MLP-ELM (Multi Layer Perceptron - Extreme Learning Machine) neural networks learned with Gradient descent or LeLevenberg–Marquardt algorithm.
1280 |
1281 | * [NeuralTalk](https://github.com/karpathy/neuraltalk2) - NeuralTalk is a Python+numpy project for learning Multimodal Recurrent Neural Networks that describe images with sentences. **[Deprecated]**
1282 | * [Neuron](https://github.com/molcik/python-neuron) - Neuron is simple class for time series predictions. It's utilize LNU (Linear Neural Unit), QNU (Quadratic Neural Unit), RBF (Radial Basis Function), MLP (Multi Layer Perceptron), MLP-ELM (Multi Layer Perceptron - Extreme Learning Machine) neural networks learned with Gradient descent or LeLevenberg–Marquardt algorithm. **[Deprecated]**
1283 | * [Data Driven Code](https://github.com/atmb4u/data-driven-code) - Very simple implementation of neural networks for dummies in python without using any libraries, with detailed comments.
1284 | * [Machine Learning, Data Science and Deep Learning with Python](https://www.manning.com/livevideo/machine-learning-data-science-and-deep-learning-with-python) - LiveVideo course that covers machine learning, Tensorflow, artificial intelligence, and neural networks.
1285 | * [TResNet: High Performance GPU-Dedicated Architecture](https://github.com/mrT23/TResNet) - TResNet models were designed and optimized to give the best speed-accuracy tradeoff out there on GPUs.
1286 | * [TResNet: Simple and powerful neural network library for python](https://github.com/zueve/neurolab) - Variety of supported types of Artificial Neural Network and learning algorithms.
1287 |
1288 |
1289 |
1290 | #### Kaggle Competition Source Code
1291 | * [open-solution-home-credit](https://github.com/neptune-ml/open-solution-home-credit) -> source code and [experiments results](https://app.neptune.ml/neptune-ml/Home-Credit-Default-Risk) for [Home Credit Default Risk](https://www.kaggle.com/c/home-credit-default-risk).
1292 | * [open-solution-googleai-object-detection](https://github.com/neptune-ml/open-solution-googleai-object-detection) -> source code and [experiments results](https://app.neptune.ml/neptune-ml/Google-AI-Object-Detection-Challenge) for [Google AI Open Images - Object Detection Track](https://www.kaggle.com/c/google-ai-open-images-object-detection-track).
1293 | * [open-solution-salt-identification](https://github.com/neptune-ml/open-solution-salt-identification) -> source code and [experiments results](https://app.neptune.ml/neptune-ml/Salt-Detection) for [TGS Salt Identification Challenge](https://www.kaggle.com/c/tgs-salt-identification-challenge).
1294 | * [open-solution-ship-detection](https://github.com/neptune-ml/open-solution-ship-detection) -> source code and [experiments results](https://app.neptune.ml/neptune-ml/Ships) for [Airbus Ship Detection Challenge](https://www.kaggle.com/c/airbus-ship-detection).
1295 | * [open-solution-data-science-bowl-2018](https://github.com/neptune-ml/open-solution-data-science-bowl-2018) -> source code and [experiments results](https://app.neptune.ml/neptune-ml/Data-Science-Bowl-2018) for [2018 Data Science Bowl](https://www.kaggle.com/c/data-science-bowl-2018).
1296 | * [open-solution-value-prediction](https://github.com/neptune-ml/open-solution-value-prediction) -> source code and [experiments results](https://app.neptune.ml/neptune-ml/Santander-Value-Prediction-Challenge) for [Santander Value Prediction Challenge](https://www.kaggle.com/c/santander-value-prediction-challenge).
1297 | * [open-solution-toxic-comments](https://github.com/neptune-ml/open-solution-toxic-comments) -> source code for [Toxic Comment Classification Challenge](https://www.kaggle.com/c/jigsaw-toxic-comment-classification-challenge).
1298 | * [wiki challenge](https://github.com/hammer/wikichallenge) - An implementation of Dell Zhang's solution to Wikipedia's Participation Challenge on Kaggle.
1299 | * [kaggle insults](https://github.com/amueller/kaggle_insults) - Kaggle Submission for "Detecting Insults in Social Commentary".
1300 | * [kaggle_acquire-valued-shoppers-challenge](https://github.com/MLWave/kaggle_acquire-valued-shoppers-challenge) - Code for the Kaggle acquire valued shoppers challenge.
1301 | * [kaggle-cifar](https://github.com/zygmuntz/kaggle-cifar) - Code for the CIFAR-10 competition at Kaggle, uses cuda-convnet.
1302 | * [kaggle-blackbox](https://github.com/zygmuntz/kaggle-blackbox) - Deep learning made easy.
1303 | * [kaggle-accelerometer](https://github.com/zygmuntz/kaggle-accelerometer) - Code for Accelerometer Biometric Competition at Kaggle.
1304 | * [kaggle-advertised-salaries](https://github.com/zygmuntz/kaggle-advertised-salaries) - Predicting job salaries from ads - a Kaggle competition.
1305 | * [kaggle amazon](https://github.com/zygmuntz/kaggle-amazon) - Amazon access control challenge.
1306 | * [kaggle-bestbuy_big](https://github.com/zygmuntz/kaggle-bestbuy_big) - Code for the Best Buy competition at Kaggle.
1307 | * [kaggle-bestbuy_small](https://github.com/zygmuntz/kaggle-bestbuy_small)
1308 | * [Kaggle Dogs vs. Cats](https://github.com/kastnerkyle/kaggle-dogs-vs-cats) - Code for Kaggle Dogs vs. Cats competition.
1309 | * [Kaggle Galaxy Challenge](https://github.com/benanne/kaggle-galaxies) - Winning solution for the Galaxy Challenge on Kaggle.
1310 | * [Kaggle Gender](https://github.com/zygmuntz/kaggle-gender) - A Kaggle competition: discriminate gender based on handwriting.
1311 | * [Kaggle Merck](https://github.com/zygmuntz/kaggle-merck) - Merck challenge at Kaggle.
1312 | * [Kaggle Stackoverflow](https://github.com/zygmuntz/kaggle-stackoverflow) - Predicting closed questions on Stack Overflow.
1313 | * [kaggle_acquire-valued-shoppers-challenge](https://github.com/MLWave/kaggle_acquire-valued-shoppers-challenge) - Code for the Kaggle acquire valued shoppers challenge.
1314 | * [wine-quality](https://github.com/zygmuntz/wine-quality) - Predicting wine quality.
1315 |
1316 |
1317 | #### Reinforcement Learning
1318 | * [DeepMind Lab](https://github.com/deepmind/lab) - DeepMind Lab is a 3D learning environment based on id Software's Quake III Arena via ioquake3 and other open source software. Its primary purpose is to act as a testbed for research in artificial intelligence, especially deep reinforcement learning.
1319 | * [Gym](https://github.com/openai/gym) - OpenAI Gym is a toolkit for developing and comparing reinforcement learning algorithms.
1320 | * [Serpent.AI](https://github.com/SerpentAI/SerpentAI) - Serpent.AI is a game agent framework that allows you to turn any video game you own into a sandbox to develop AI and machine learning experiments. For both researchers and hobbyists.
1321 | * [ViZDoom](https://github.com/mwydmuch/ViZDoom) - ViZDoom allows developing AI bots that play Doom using only the visual information (the screen buffer). It is primarily intended for research in machine visual learning, and deep reinforcement learning, in particular.
1322 | * [Roboschool](https://github.com/openai/roboschool) - Open-source software for robot simulation, integrated with OpenAI Gym.
1323 | * [Retro](https://github.com/openai/retro) - Retro Games in Gym
1324 | * [SLM Lab](https://github.com/kengz/SLM-Lab) - Modular Deep Reinforcement Learning framework in PyTorch.
1325 | * [Coach](https://github.com/NervanaSystems/coach) - Reinforcement Learning Coach by Intel® AI Lab enables easy experimentation with state of the art Reinforcement Learning algorithms
1326 | * [garage](https://github.com/rlworkgroup/garage) - A toolkit for reproducible reinforcement learning research
1327 | * [metaworld](https://github.com/rlworkgroup/metaworld) - An open source robotics benchmark for meta- and multi-task reinforcement learning
1328 | * [acme](https://deepmind.com/research/publications/Acme) - An Open Source Distributed Framework for Reinforcement Learning that makes build and train your agents easily.
1329 | * [Spinning Up](https://spinningup.openai.com) - An educational resource designed to let anyone learn to become a skilled practitioner in deep reinforcement learning
1330 |
1331 |
1332 | ## Ruby
1333 |
1334 |
1335 | #### Natural Language Processing
1336 |
1337 | * [Awesome NLP with Ruby](https://github.com/arbox/nlp-with-ruby) - Curated link list for practical natural language processing in Ruby.
1338 | * [Treat](https://github.com/louismullie/treat) - Text REtrieval and Annotation Toolkit, definitely the most comprehensive toolkit I’ve encountered so far for Ruby.
1339 | * [Stemmer](https://github.com/aurelian/ruby-stemmer) - Expose libstemmer_c to Ruby. **[Deprecated]**
1340 | * [Raspell](https://sourceforge.net/projects/raspell/) - raspell is an interface binding for ruby. **[Deprecated]**
1341 | * [UEA Stemmer](https://github.com/ealdent/uea-stemmer) - Ruby port of UEALite Stemmer - a conservative stemmer for search and indexing.
1342 | * [Twitter-text-rb](https://github.com/twitter/twitter-text/tree/master/rb) - A library that does auto linking and extraction of usernames, lists and hashtags in tweets.
1343 |
1344 |
1345 | #### General-Purpose Machine Learning
1346 |
1347 | * [Awesome Machine Learning with Ruby](https://github.com/arbox/machine-learning-with-ruby) - Curated list of ML related resources for Ruby.
1348 | * [Ruby Machine Learning](https://github.com/tsycho/ruby-machine-learning) - Some Machine Learning algorithms, implemented in Ruby. **[Deprecated]**
1349 | * [Machine Learning Ruby](https://github.com/mizoR/machine-learning-ruby) **[Deprecated]**
1350 | * [jRuby Mahout](https://github.com/vasinov/jruby_mahout) - JRuby Mahout is a gem that unleashes the power of Apache Mahout in the world of JRuby. **[Deprecated]**
1351 | * [CardMagic-Classifier](https://github.com/cardmagic/classifier) - A general classifier module to allow Bayesian and other types of classifications.
1352 | * [rb-libsvm](https://github.com/febeling/rb-libsvm) - Ruby language bindings for LIBSVM which is a Library for Support Vector Machines.
1353 | * [Scoruby](https://github.com/asafschers/scoruby) - Creates Random Forest classifiers from PMML files.
1354 | * [rumale](https://github.com/yoshoku/rumale) - Rumale is a machine learning library in Ruby
1355 |
1356 |
1357 | #### Data Analysis / Data Visualization
1358 |
1359 | * [rsruby](https://github.com/alexgutteridge/rsruby) - Ruby - R bridge.
1360 | * [data-visualization-ruby](https://github.com/chrislo/data_visualisation_ruby) - Source code and supporting content for my Ruby Manor presentation on Data Visualisation with Ruby. **[Deprecated]**
1361 | * [ruby-plot](https://www.ruby-toolbox.com/projects/ruby-plot) - gnuplot wrapper for Ruby, especially for plotting ROC curves into SVG files. **[Deprecated]**
1362 | * [plot-rb](https://github.com/zuhao/plotrb) - A plotting library in Ruby built on top of Vega and D3. **[Deprecated]**
1363 | * [scruffy](https://github.com/delano/scruffy) - A beautiful graphing toolkit for Ruby.
1364 | * [SciRuby](http://sciruby.com/)
1365 | * [Glean](https://github.com/glean/glean) - A data management tool for humans. **[Deprecated]**
1366 | * [Bioruby](https://github.com/bioruby/bioruby)
1367 | * [Arel](https://github.com/nkallen/arel) **[Deprecated]**
1368 |
1369 |
1370 | #### Misc
1371 |
1372 | * [Big Data For Chimps](https://github.com/infochimps-labs/big_data_for_chimps)
1373 | * [Listof](https://github.com/kevincobain2000/listof) - Community based data collection, packed in gem. Get list of pretty much anything (stop words, countries, non words) in txt, json or hash. [Demo/Search for a list](http://kevincobain2000.github.io/listof/)
1374 |
1375 |
1376 |
1377 | ## Rust
1378 |
1379 |
1380 | #### General-Purpose Machine Learning
1381 | * [deeplearn-rs](https://github.com/tedsta/deeplearn-rs) - deeplearn-rs provides simple networks that use matrix multiplication, addition, and ReLU under the MIT license.
1382 | * [rustlearn](https://github.com/maciejkula/rustlearn) - a machine learning framework featuring logistic regression, support vector machines, decision trees and random forests.
1383 | * [rusty-machine](https://github.com/AtheMathmo/rusty-machine) - a pure-rust machine learning library.
1384 | * [leaf](https://github.com/autumnai/leaf) - open source framework for machine intelligence, sharing concepts from TensorFlow and Caffe. Available under the MIT license. [**[Deprecated]**](https://medium.com/@mjhirn/tensorflow-wins-89b78b29aafb#.s0a3uy4cc)
1385 | * [RustNN](https://github.com/jackm321/RustNN) - RustNN is a feedforward neural network library. **[Deprecated]**
1386 | * [RusticSOM](https://github.com/avinashshenoy97/RusticSOM) - A Rust library for Self Organising Maps (SOM).
1387 |
1388 |
1389 |
1390 | ## R
1391 |
1392 |
1393 | #### General-Purpose Machine Learning
1394 |
1395 | * [ahaz](https://cran.r-project.org/web/packages/ahaz/index.html) - ahaz: Regularization for semiparametric additive hazards regression. **[Deprecated]**
1396 | * [arules](https://cran.r-project.org/web/packages/arules/index.html) - arules: Mining Association Rules and Frequent Itemsets
1397 | * [biglasso](https://cran.r-project.org/web/packages/biglasso/index.html) - biglasso: Extending Lasso Model Fitting to Big Data in R.
1398 | * [bmrm](https://cran.r-project.org/web/packages/bmrm/index.html) - bmrm: Bundle Methods for Regularized Risk Minimization Package.
1399 | * [Boruta](https://cran.r-project.org/web/packages/Boruta/index.html) - Boruta: A wrapper algorithm for all-relevant feature selection.
1400 | * [bst](https://cran.r-project.org/web/packages/bst/index.html) - bst: Gradient Boosting.
1401 | * [C50](https://cran.r-project.org/web/packages/C50/index.html) - C50: C5.0 Decision Trees and Rule-Based Models.
1402 | * [caret](https://topepo.github.io/caret/index.html) - Classification and Regression Training: Unified interface to ~150 ML algorithms in R.
1403 | * [caretEnsemble](https://cran.r-project.org/web/packages/caretEnsemble/index.html) - caretEnsemble: Framework for fitting multiple caret models as well as creating ensembles of such models. **[Deprecated]**
1404 | * [CatBoost](https://github.com/catboost/catboost) - General purpose gradient boosting on decision trees library with categorical features support out of the box for R.
1405 | * [Clever Algorithms For Machine Learning](https://machinelearningmastery.com/)
1406 | * [CORElearn](https://cran.r-project.org/web/packages/CORElearn/index.html) - CORElearn: Classification, regression, feature evaluation and ordinal evaluation.
1407 | * [CoxBoost](https://cran.r-project.org/web/packages/CoxBoost/index.html) - CoxBoost: Cox models by likelihood based boosting for a single survival endpoint or competing risks **[Deprecated]**
1408 | * [Cubist](https://cran.r-project.org/web/packages/Cubist/index.html) - Cubist: Rule- and Instance-Based Regression Modeling.
1409 | * [e1071](https://cran.r-project.org/web/packages/e1071/index.html) - e1071: Misc Functions of the Department of Statistics (e1071), TU Wien
1410 | * [earth](https://cran.r-project.org/web/packages/earth/index.html) - earth: Multivariate Adaptive Regression Spline Models
1411 | * [elasticnet](https://cran.r-project.org/web/packages/elasticnet/index.html) - elasticnet: Elastic-Net for Sparse Estimation and Sparse PCA.
1412 | * [ElemStatLearn](https://cran.r-project.org/web/packages/ElemStatLearn/index.html) - ElemStatLearn: Data sets, functions and examples from the book: "The Elements of Statistical Learning, Data Mining, Inference, and Prediction" by Trevor Hastie, Robert Tibshirani and Jerome Friedman Prediction" by Trevor Hastie, Robert Tibshirani and Jerome Friedman.
1413 | * [evtree](https://cran.r-project.org/web/packages/evtree/index.html) - evtree: Evolutionary Learning of Globally Optimal Trees.
1414 | * [forecast](https://cran.r-project.org/web/packages/forecast/index.html) - forecast: Timeseries forecasting using ARIMA, ETS, STLM, TBATS, and neural network models.
1415 | * [forecastHybrid](https://cran.r-project.org/web/packages/forecastHybrid/index.html) - forecastHybrid: Automatic ensemble and cross validation of ARIMA, ETS, STLM, TBATS, and neural network models from the "forecast" package.
1416 | * [fpc](https://cran.r-project.org/web/packages/fpc/index.html) - fpc: Flexible procedures for clustering.
1417 | * [frbs](https://cran.r-project.org/web/packages/frbs/index.html) - frbs: Fuzzy Rule-based Systems for Classification and Regression Tasks. **[Deprecated]**
1418 | * [GAMBoost](https://cran.r-project.org/web/packages/GAMBoost/index.html) - GAMBoost: Generalized linear and additive models by likelihood based boosting. **[Deprecated]**
1419 | * [gamboostLSS](https://cran.r-project.org/web/packages/gamboostLSS/index.html) - gamboostLSS: Boosting Methods for GAMLSS.
1420 | * [gbm](https://cran.r-project.org/web/packages/gbm/index.html) - gbm: Generalized Boosted Regression Models.
1421 | * [glmnet](https://cran.r-project.org/web/packages/glmnet/index.html) - glmnet: Lasso and elastic-net regularized generalized linear models.
1422 | * [glmpath](https://cran.r-project.org/web/packages/glmpath/index.html) - glmpath: L1 Regularization Path for Generalized Linear Models and Cox Proportional Hazards Model.
1423 | * [GMMBoost](https://cran.r-project.org/web/packages/GMMBoost/index.html) - GMMBoost: Likelihood-based Boosting for Generalized mixed models. **[Deprecated]**
1424 | * [grplasso](https://cran.r-project.org/web/packages/grplasso/index.html) - grplasso: Fitting user specified models with Group Lasso penalty.
1425 | * [grpreg](https://cran.r-project.org/web/packages/grpreg/index.html) - grpreg: Regularization paths for regression models with grouped covariates.
1426 | * [h2o](https://cran.r-project.org/web/packages/h2o/index.html) - A framework for fast, parallel, and distributed machine learning algorithms at scale -- Deeplearning, Random forests, GBM, KMeans, PCA, GLM.
1427 | * [hda](https://cran.r-project.org/web/packages/hda/index.html) - hda: Heteroscedastic Discriminant Analysis. **[Deprecated]**
1428 | * [Introduction to Statistical Learning](https://www-bcf.usc.edu/~gareth/ISL/)
1429 | * [ipred](https://cran.r-project.org/web/packages/ipred/index.html) - ipred: Improved Predictors.
1430 | * [kernlab](https://cran.r-project.org/web/packages/kernlab/index.html) - kernlab: Kernel-based Machine Learning Lab.
1431 | * [klaR](https://cran.r-project.org/web/packages/klaR/index.html) - klaR: Classification and visualization.
1432 | * [L0Learn](https://cran.r-project.org/web/packages/L0Learn/index.html) - L0Learn: Fast algorithms for best subset selection.
1433 | * [lars](https://cran.r-project.org/web/packages/lars/index.html) - lars: Least Angle Regression, Lasso and Forward Stagewise. **[Deprecated]**
1434 | * [lasso2](https://cran.r-project.org/web/packages/lasso2/index.html) - lasso2: L1 constrained estimation aka ‘lasso’.
1435 | * [LiblineaR](https://cran.r-project.org/web/packages/LiblineaR/index.html) - LiblineaR: Linear Predictive Models Based On The Liblinear C/C++ Library.
1436 | * [LogicReg](https://cran.r-project.org/web/packages/LogicReg/index.html) - LogicReg: Logic Regression.
1437 | * [Machine Learning For Hackers](https://github.com/johnmyleswhite/ML_for_Hackers)
1438 | * [maptree](https://cran.r-project.org/web/packages/maptree/index.html) - maptree: Mapping, pruning, and graphing tree models. **[Deprecated]**
1439 | * [mboost](https://cran.r-project.org/web/packages/mboost/index.html) - mboost: Model-Based Boosting.
1440 | * [medley](https://www.kaggle.com/general/3661) - medley: Blending regression models, using a greedy stepwise approach.
1441 | * [mlr](https://cran.r-project.org/web/packages/mlr/index.html) - mlr: Machine Learning in R.
1442 | * [ncvreg](https://cran.r-project.org/web/packages/ncvreg/index.html) - ncvreg: Regularization paths for SCAD- and MCP-penalized regression models.
1443 | * [nnet](https://cran.r-project.org/web/packages/nnet/index.html) - nnet: Feed-forward Neural Networks and Multinomial Log-Linear Models. **[Deprecated]**
1444 | * [pamr](https://cran.r-project.org/web/packages/pamr/index.html) - pamr: Pam: prediction analysis for microarrays. **[Deprecated]**
1445 | * [party](https://cran.r-project.org/web/packages/party/index.html) - party: A Laboratory for Recursive Partitioning
1446 | * [partykit](https://cran.r-project.org/web/packages/partykit/index.html) - partykit: A Toolkit for Recursive Partitioning.
1447 | * [penalized](https://cran.r-project.org/web/packages/penalized/index.html) - penalized: L1 (lasso and fused lasso) and L2 (ridge) penalized estimation in GLMs and in the Cox model.
1448 | * [penalizedLDA](https://cran.r-project.org/web/packages/penalizedLDA/index.html) - penalizedLDA: Penalized classification using Fisher's linear discriminant. **[Deprecated]**
1449 | * [penalizedSVM](https://cran.r-project.org/web/packages/penalizedSVM/index.html) - penalizedSVM: Feature Selection SVM using penalty functions.
1450 | * [quantregForest](https://cran.r-project.org/web/packages/quantregForest/index.html) - quantregForest: Quantile Regression Forests.
1451 | * [randomForest](https://cran.r-project.org/web/packages/randomForest/index.html) - randomForest: Breiman and Cutler's random forests for classification and regression.
1452 | * [randomForestSRC](https://cran.r-project.org/web/packages/randomForestSRC/index.html) - randomForestSRC: Random Forests for Survival, Regression and Classification (RF-SRC).
1453 | * [rattle](https://cran.r-project.org/web/packages/rattle/index.html) - rattle: Graphical user interface for data mining in R.
1454 | * [rda](https://cran.r-project.org/web/packages/rda/index.html) - rda: Shrunken Centroids Regularized Discriminant Analysis.
1455 | * [rdetools](https://cran.r-project.org/web/packages/rdetools/index.html) - rdetools: Relevant Dimension Estimation (RDE) in Feature Spaces. **[Deprecated]**
1456 | * [REEMtree](https://cran.r-project.org/web/packages/REEMtree/index.html) - REEMtree: Regression Trees with Random Effects for Longitudinal (Panel) Data. **[Deprecated]**
1457 | * [relaxo](https://cran.r-project.org/web/packages/relaxo/index.html) - relaxo: Relaxed Lasso. **[Deprecated]**
1458 | * [rgenoud](https://cran.r-project.org/web/packages/rgenoud/index.html) - rgenoud: R version of GENetic Optimization Using Derivatives
1459 | * [Rmalschains](https://cran.r-project.org/web/packages/Rmalschains/index.html) - Rmalschains: Continuous Optimization using Memetic Algorithms with Local Search Chains (MA-LS-Chains) in R.
1460 | * [rminer](https://cran.r-project.org/web/packages/rminer/index.html) - rminer: Simpler use of data mining methods (e.g. NN and SVM) in classification and regression. **[Deprecated]**
1461 | * [ROCR](https://cran.r-project.org/web/packages/ROCR/index.html) - ROCR: Visualizing the performance of scoring classifiers. **[Deprecated]**
1462 | * [RoughSets](https://cran.r-project.org/web/packages/RoughSets/index.html) - RoughSets: Data Analysis Using Rough Set and Fuzzy Rough Set Theories. **[Deprecated]**
1463 | * [rpart](https://cran.r-project.org/web/packages/rpart/index.html) - rpart: Recursive Partitioning and Regression Trees.
1464 | * [RPMM](https://cran.r-project.org/web/packages/RPMM/index.html) - RPMM: Recursively Partitioned Mixture Model.
1465 | * [RSNNS](https://cran.r-project.org/web/packages/RSNNS/index.html) - RSNNS: Neural Networks in R using the Stuttgart Neural Network Simulator (SNNS).
1466 | * [RWeka](https://cran.r-project.org/web/packages/RWeka/index.html) - RWeka: R/Weka interface.
1467 | * [RXshrink](https://cran.r-project.org/web/packages/RXshrink/index.html) - RXshrink: Maximum Likelihood Shrinkage via Generalized Ridge or Least Angle Regression.
1468 | * [sda](https://cran.r-project.org/web/packages/sda/index.html) - sda: Shrinkage Discriminant Analysis and CAT Score Variable Selection. **[Deprecated]**
1469 | * [spectralGraphTopology](https://cran.r-project.org/web/packages/spectralGraphTopology/index.html) - spectralGraphTopology: Learning Graphs from Data via Spectral Constraints.
1470 | * [SuperLearner](https://github.com/ecpolley/SuperLearner) - Multi-algorithm ensemble learning packages.
1471 | * [svmpath](https://cran.r-project.org/web/packages/svmpath/index.html) - svmpath: svmpath: the SVM Path algorithm. **[Deprecated]**
1472 | * [tgp](https://cran.r-project.org/web/packages/tgp/index.html) - tgp: Bayesian treed Gaussian process models. **[Deprecated]**
1473 | * [tree](https://cran.r-project.org/web/packages/tree/index.html) - tree: Classification and regression trees.
1474 | * [varSelRF](https://cran.r-project.org/web/packages/varSelRF/index.html) - varSelRF: Variable selection using random forests.
1475 | * [XGBoost.R](https://github.com/tqchen/xgboost/tree/master/R-package) - R binding for eXtreme Gradient Boosting (Tree) Library.
1476 | * [Optunity](https://optunity.readthedocs.io/en/latest/) - A library dedicated to automated hyperparameter optimization with a simple, lightweight API to facilitate drop-in replacement of grid search. Optunity is written in Python but interfaces seamlessly to R.
1477 | * [igraph](https://igraph.org/r/) - binding to igraph library - General purpose graph library.
1478 | * [MXNet](https://github.com/apache/incubator-mxnet) - Lightweight, Portable, Flexible Distributed/Mobile Deep Learning with Dynamic, Mutation-aware Dataflow Dep Scheduler; for Python, R, Julia, Go, Javascript and more.
1479 | * [TDSP-Utilities](https://github.com/Azure/Azure-TDSP-Utilities) - Two data science utilities in R from Microsoft: 1) Interactive Data Exploration, Analysis, and Reporting (IDEAR) ; 2) Automated Modeling and Reporting (AMR).
1480 |
1481 |
1482 | #### Data Manipulation | Data Analysis | Data Visualization
1483 |
1484 | * [dplyr](https://www.rdocumentation.org/packages/dplyr/versions/0.7.8) - A data manipulation package that helps to solve the most common data manipulation problems.
1485 | * [ggplot2](https://ggplot2.tidyverse.org/) - A data visualization package based on the grammar of graphics.
1486 | * [tmap](https://cran.r-project.org/web/packages/tmap/vignettes/tmap-getstarted.html) for visualizing geospatial data with static maps and [leaflet](https://rstudio.github.io/leaflet/) for interactive maps
1487 | * [tm](https://www.rdocumentation.org/packages/tm/) and [quanteda](https://quanteda.io/) are the main packages for managing, analyzing, and visualizing textual data.
1488 | * [shiny](https://shiny.rstudio.com/) is the basis for truly interactive displays and dashboards in R. However, some measure of interactivity can be achieved with [htmlwidgets](https://www.htmlwidgets.org/) bringing javascript libraries to R. These include, [plotly](https://plot.ly/r/), [dygraphs](http://rstudio.github.io/dygraphs), [highcharter](http://jkunst.com/highcharter/), and several others.
1489 |
1490 |
1491 | ## SAS
1492 |
1493 |
1494 | #### General-Purpose Machine Learning
1495 |
1496 | * [Visual Data Mining and Machine Learning](https://www.sas.com/en_us/software/visual-data-mining-machine-learning.html) - Interactive, automated, and programmatic modeling with the latest machine learning algorithms in and end-to-end analytics environment, from data prep to deployment. Free trial available.
1497 | * [Enterprise Miner](https://www.sas.com/en_us/software/enterprise-miner.html) - Data mining and machine learning that creates deployable models using a GUI or code.
1498 | * [Factory Miner](https://www.sas.com/en_us/software/factory-miner.html) - Automatically creates deployable machine learning models across numerous market or customer segments using a GUI.
1499 |
1500 |
1501 | #### Data Analysis / Data Visualization
1502 |
1503 | * [SAS/STAT](https://www.sas.com/en_us/software/stat.html) - For conducting advanced statistical analysis.
1504 | * [University Edition](https://www.sas.com/en_us/software/university-edition.html) - FREE! Includes all SAS packages necessary for data analysis and visualization, and includes online SAS courses.
1505 |
1506 |
1507 | #### Natural Language Processing
1508 |
1509 | * [Contextual Analysis](https://www.sas.com/en_us/software/contextual-analysis.html) - Add structure to unstructured text using a GUI.
1510 | * [Sentiment Analysis](https://www.sas.com/en_us/software/sentiment-analysis.html) - Extract sentiment from text using a GUI.
1511 | * [Text Miner](https://www.sas.com/en_us/software/text-miner.html) - Text mining using a GUI or code.
1512 |
1513 |
1514 | #### Demos and Scripts
1515 |
1516 | * [ML_Tables](https://github.com/sassoftware/enlighten-apply/tree/master/ML_tables) - Concise cheat sheets containing machine learning best practices.
1517 | * [enlighten-apply](https://github.com/sassoftware/enlighten-apply) - Example code and materials that illustrate applications of SAS machine learning techniques.
1518 | * [enlighten-integration](https://github.com/sassoftware/enlighten-integration) - Example code and materials that illustrate techniques for integrating SAS with other analytics technologies in Java, PMML, Python and R.
1519 | * [enlighten-deep](https://github.com/sassoftware/enlighten-deep) - Example code and materials that illustrate using neural networks with several hidden layers in SAS.
1520 | * [dm-flow](https://github.com/sassoftware/dm-flow) - Library of SAS Enterprise Miner process flow diagrams to help you learn by example about specific data mining topics.
1521 |
1522 |
1523 |
1524 | ## Scala
1525 |
1526 |
1527 | #### Natural Language Processing
1528 |
1529 | * [ScalaNLP](http://www.scalanlp.org/) - ScalaNLP is a suite of machine learning and numerical computing libraries.
1530 | * [Breeze](https://github.com/scalanlp/breeze) - Breeze is a numerical processing library for Scala.
1531 | * [Chalk](https://github.com/scalanlp/chalk) - Chalk is a natural language processing library. **[Deprecated]**
1532 | * [FACTORIE](https://github.com/factorie/factorie) - FACTORIE is a toolkit for deployable probabilistic modeling, implemented as a software library in Scala. It provides its users with a succinct language for creating relational factor graphs, estimating parameters and performing inference.
1533 | * [Montague](https://github.com/Workday/upshot-montague) - Montague is a semantic parsing library for Scala with an easy-to-use DSL.
1534 | * [Spark NLP](https://github.com/JohnSnowLabs/spark-nlp) - Natural language processing library built on top of Apache Spark ML to provide simple, performant, and accurate NLP annotations for machine learning pipelines, that scale easily in a distributed environment.
1535 |
1536 |
1537 | #### Data Analysis / Data Visualization
1538 |
1539 | * [MLlib in Apache Spark](https://spark.apache.org/docs/latest/mllib-guide.html) - Distributed machine learning library in Spark
1540 | * [Hydrosphere Mist](https://github.com/Hydrospheredata/mist) - a service for deployment Apache Spark MLLib machine learning models as realtime, batch or reactive web services.
1541 | * [Scalding](https://github.com/twitter/scalding) - A Scala API for Cascading.
1542 | * [Summing Bird](https://github.com/twitter/summingbird) - Streaming MapReduce with Scalding and Storm.
1543 | * [Algebird](https://github.com/twitter/algebird) - Abstract Algebra for Scala.
1544 | * [xerial](https://github.com/xerial/xerial) - Data management utilities for Scala. **[Deprecated]**
1545 | * [PredictionIO](https://github.com/apache/predictionio) - PredictionIO, a machine learning server for software developers and data engineers.
1546 | * [BIDMat](https://github.com/BIDData/BIDMat) - CPU and GPU-accelerated matrix library intended to support large-scale exploratory data analysis.
1547 | * [Flink](https://flink.apache.org/) - Open source platform for distributed stream and batch data processing.
1548 | * [Spark Notebook](http://spark-notebook.io) - Interactive and Reactive Data Science using Scala and Spark.
1549 |
1550 |
1551 | #### General-Purpose Machine Learning
1552 |
1553 | * [DeepLearning.scala](https://deeplearning.thoughtworks.school/) - Creating statically typed dynamic neural networks from object-oriented & functional programming constructs.
1554 | * [Conjecture](https://github.com/etsy/Conjecture) - Scalable Machine Learning in Scalding.
1555 | * [brushfire](https://github.com/stripe/brushfire) - Distributed decision tree ensemble learning in Scala.
1556 | * [ganitha](https://github.com/tresata/ganitha) - Scalding powered machine learning. **[Deprecated]**
1557 | * [adam](https://github.com/bigdatagenomics/adam) - A genomics processing engine and specialized file format built using Apache Avro, Apache Spark and Parquet. Apache 2 licensed.
1558 | * [bioscala](https://github.com/bioscala/bioscala) - Bioinformatics for the Scala programming language
1559 | * [BIDMach](https://github.com/BIDData/BIDMach) - CPU and GPU-accelerated Machine Learning Library.
1560 | * [Figaro](https://github.com/p2t2/figaro) - a Scala library for constructing probabilistic models.
1561 | * [H2O Sparkling Water](https://github.com/h2oai/sparkling-water) - H2O and Spark interoperability.
1562 | * [FlinkML in Apache Flink](https://ci.apache.org/projects/flink/flink-docs-master/dev/libs/ml/index.html) - Distributed machine learning library in Flink.
1563 | * [DynaML](https://github.com/transcendent-ai-labs/DynaML) - Scala Library/REPL for Machine Learning Research.
1564 | * [Saul](https://github.com/CogComp/saul) - Flexible Declarative Learning-Based Programming.
1565 | * [SwiftLearner](https://github.com/valdanylchuk/swiftlearner/) - Simply written algorithms to help study ML or write your own implementations.
1566 | * [Smile](https://haifengl.github.io/) - Statistical Machine Intelligence and Learning Engine.
1567 | * [doddle-model](https://github.com/picnicml/doddle-model) - An in-memory machine learning library built on top of Breeze. It provides immutable objects and exposes its functionality through a scikit-learn-like API.
1568 | * [TensorFlow Scala](https://github.com/eaplatanios/tensorflow_scala) - Strongly-typed Scala API for TensorFlow.
1569 |
1570 |
1571 | ## Scheme
1572 |
1573 |
1574 | #### Neural Networks
1575 |
1576 | * [layer](https://github.com/cloudkj/layer) - Neural network inference from the command line, implemented in [CHICKEN Scheme](https://www.call-cc.org/).
1577 |
1578 |
1579 | ## Swift
1580 |
1581 |
1582 | #### General-Purpose Machine Learning
1583 |
1584 | * [Bender](https://github.com/xmartlabs/Bender) - Fast Neural Networks framework built on top of Metal. Supports TensorFlow models.
1585 | * [Swift AI](https://github.com/Swift-AI/Swift-AI) - Highly optimized artificial intelligence and machine learning library written in Swift.
1586 | * [Swift for Tensorflow](https://github.com/tensorflow/swift) - a next-generation platform for machine learning, incorporating the latest research across machine learning, compilers, differentiable programming, systems design, and beyond.
1587 | * [BrainCore](https://github.com/alejandro-isaza/BrainCore) - The iOS and OS X neural network framework.
1588 | * [swix](https://github.com/stsievert/swix) - A bare bones library that includes a general matrix language and wraps some OpenCV for iOS development. **[Deprecated]**
1589 | * [AIToolbox](https://github.com/KevinCoble/AIToolbox) - A toolbox framework of AI modules written in Swift: Graphs/Trees, Linear Regression, Support Vector Machines, Neural Networks, PCA, KMeans, Genetic Algorithms, MDP, Mixture of Gaussians.
1590 | * [MLKit](https://github.com/Somnibyte/MLKit) - A simple Machine Learning Framework written in Swift. Currently features Simple Linear Regression, Polynomial Regression, and Ridge Regression.
1591 | * [Swift Brain](https://github.com/vlall/Swift-Brain) - The first neural network / machine learning library written in Swift. This is a project for AI algorithms in Swift for iOS and OS X development. This project includes algorithms focused on Bayes theorem, neural networks, SVMs, Matrices, etc...
1592 | * [Perfect TensorFlow](https://github.com/PerfectlySoft/Perfect-TensorFlow) - Swift Language Bindings of TensorFlow. Using native TensorFlow models on both macOS / Linux.
1593 | * [PredictionBuilder](https://github.com/denissimon/prediction-builder-swift) - A library for machine learning that builds predictions using a linear regression.
1594 | * [Awesome CoreML](https://github.com/SwiftBrain/awesome-CoreML-models) - A curated list of pretrained CoreML models.
1595 | * [Awesome Core ML Models](https://github.com/likedan/Awesome-CoreML-Models) - A curated list of machine learning models in CoreML format.
1596 |
1597 |
1598 | ## TensorFlow
1599 |
1600 |
1601 | #### General-Purpose Machine Learning
1602 | * [Awesome TensorFlow](https://github.com/jtoy/awesome-tensorflow) - A list of all things related to TensorFlow.
1603 | * [Golden TensorFlow](https://golden.com/wiki/TensorFlow) - A page of content on TensorFlow, including academic papers and links to related topics.
1604 |
1605 |
1606 | ## Tools
1607 |
1608 |
1609 | #### Neural Networks
1610 | * [layer](https://github.com/cloudkj/layer) - Neural network inference from the command line
1611 |
1612 |
1613 | #### Misc
1614 | * [CatalyzeX](https://chrome.google.com/webstore/detail/code-finder-for-research/aikkeehnlfpamidigaffhfmgbkdeheil) - Browser extension ([Chrome](https://chrome.google.com/webstore/detail/code-finder-for-research/aikkeehnlfpamidigaffhfmgbkdeheil) and [Firefox](https://addons.mozilla.org/en-US/firefox/addon/code-finder-catalyzex/)) that automatically finds and shows code implementations for machine learning papers anywhere: Google, Twitter, Arxiv, Scholar, etc.
1615 | * [ML Workspace](https://github.com/ml-tooling/ml-workspace) - All-in-one web-based IDE for machine learning and data science. The workspace is deployed as a docker container and is preloaded with a variety of popular data science libraries (e.g., Tensorflow, PyTorch) and dev tools (e.g., Jupyter, VS Code).
1616 | * [Notebooks](https://github.com/rlan/notebooks) - A starter kit for Jupyter notebooks and machine learning. Companion docker images consist of all combinations of python versions, machine learning frameworks (Keras, PyTorch and Tensorflow) and CPU/CUDA versions.
1617 | * [DVC](https://github.com/iterative/dvc) - Data Science Version Control is an open-source version control system for machine learning projects with pipelines support. It makes ML projects reproducible and shareable.
1618 | * [Kedro](https://github.com/quantumblacklabs/kedro/) - Kedro is a data and development workflow framework that implements best practices for data pipelines with an eye towards productionizing machine learning models.
1619 | * [guild.ai](https://guild.ai/) - Tool to log, analyze, compare and "optimize" experiments. It's cross-platform and framework independent, and provided integrated visualizers such as tensorboard.
1620 | * [Sacred](https://github.com/IDSIA/sacred) - Python tool to help you configure, organize, log and reproduce experiments. Like a notebook lab in the context of Chemistry/Biology. The community has built multiple add-ons leveraging the proposed standard.
1621 | * [MLFlow](https://mlflow.org/) - platform to manage the ML lifecycle, including experimentation, reproducibility and deployment. Framework and language agnostic, take a look at all the built-in integrations.
1622 | * [Weights & Biases](https://www.wandb.com/) - Machine learning experiment tracking, dataset versioning, hyperparameter search, visualization, and collaboration
1623 | * More tools to improve the ML lifecycle: [Catalyst](https://github.com/catalyst-team/catalyst), [PachydermIO](https://www.pachyderm.io/). The following are Github-alike and targeting teams [Weights & Biases](https://www.wandb.com/), [Neptune.Ml](https://neptune.ml/), [Comet.ml](https://www.comet.ml/), [Valohai.ai](https://valohai.com/), [DAGsHub](https://DAGsHub.com/).
1624 | * [MachineLearningWithTensorFlow2ed](https://www.manning.com/books/machine-learning-with-tensorflow-second-edition) - a book on general purpose machine learning techniques regression, classification, unsupervised clustering, reinforcement learning, auto encoders, convolutional neural networks, RNNs, LSTMs, using TensorFlow 1.14.1.
1625 | * [m2cgen](https://github.com/BayesWitnesses/m2cgen) - A tool that allows the conversion of ML models into native code (Java, C, Python, Go, JavaScript, Visual Basic, C#, R, PowerShell, PHP, Dart) with zero dependencies.
1626 | * [CML](https://github.com/iterative/cml) - A library for doing continuous integration with ML projects. Use GitHub Actions & GitLab CI to train and evaluate models in production like environments and automatically generate visual reports with metrics and graphs in pull/merge requests. Framework & language agnostic.
1627 | * [Pythonizr](https://pythonizr.com) - An online tool to generate boilerplate machine learning code that uses scikit-learn.
1628 |
1629 | ## Credits
1630 |
1631 | * Some of the python libraries were cut-and-pasted from [vinta](https://github.com/vinta/awesome-python)
1632 | * References for Go were mostly cut-and-pasted from [gopherdata](https://github.com/gopherdata/resources/tree/master/tooling)
1633 |
--------------------------------------------------------------------------------