|
5 | 5 |
|
6 | 6 | - [Comprehensive topic-wise list of Machine Learning and Deep Learning tutorials, codes, articles and other resources](https://github.com/ujjwalkarn/Machine-Learning-Tutorials/blob/master/README.md).
|
7 | 7 |
|
8 |
| -##The Python Language |
| 8 | +## The Python Language |
9 | 9 | - [Learn Python Codecademy](https://www.codecademy.com/learn/python#)
|
10 | 10 | - [**Awesome Python**](https://github.com/vinta/awesome-python)
|
11 | 11 | - [**Jargon from the functional programming world in simple terms!**](https://github.com/hemanth/functional-programming-jargon)
|
|
24 | 24 | - [Scripting with Python](https://www.schrodinger.com//AcrobatFile.php?type=supportdocs&type2=&ident=404)
|
25 | 25 | - [**Can I use Python as a bash replacement?**](http://stackoverflow.com/questions/209470/can-i-use-python-as-a-bash-replacement)
|
26 | 26 |
|
27 |
| -##Data Science with Python |
| 27 | +## Data Science with Python |
28 | 28 | - [**Data Science IPython Notebooks**](https://github.com/donnemartin/data-science-ipython-notebooks)
|
29 | 29 | - [Awesome Python - Data Analysis](https://github.com/vinta/awesome-python#science-and-data-analysis)
|
30 | 30 | - Statistics
|
|
50 | 50 | - [Awesome Python - Data Visualization](https://github.com/vinta/awesome-python#data-visualization)
|
51 | 51 | - [Awesome Python - Map Reduce](https://github.com/vinta/awesome-python#mapreduce)
|
52 | 52 |
|
53 |
| -##Pandas Library in Python |
| 53 | +## Pandas Library in Python |
54 | 54 | - [Intro to pandas data structures](http://www.gregreda.com/2013/10/26/intro-to-pandas-data-structures/)
|
55 | 55 | - [Useful Pandas Cheatsheet](https://github.com/pandas-dev/pandas/blob/master/doc/cheatsheet/Pandas_Cheat_Sheet.pdf)
|
56 | 56 | - [An Introduction to Scientific Python – Pandas](http://www.datadependence.com/2016/05/scientific-python-pandas/)
|
|
83 | 83 | - [Selecting multiple rows and columns from a DataFrame](https://www.youtube.com/watch?v=xvpNA7bC8cs&list=PL5-da3qGB5ICCsgW1MxlZ0Hq8LL5U3u9y&index=19)
|
84 | 84 | - [Reducing the size of a DataFrame](https://www.youtube.com/watch?v=wDYDYGyN_cw&list=PL5-da3qGB5ICCsgW1MxlZ0Hq8LL5U3u9y&index=21)
|
85 | 85 |
|
86 |
| -##Machine Learning with Python |
| 86 | +## Machine Learning with Python |
87 | 87 | - [AI, ML Related List](https://github.com/svaksha/pythonidae/blob/master/AI.md)
|
88 | 88 | - [Data Normalization in Python](http://blog.yhat.com/posts/data-normalization-in-python.html)
|
89 | 89 | - [**Python Machine Learning Book**](https://github.com/rasbt/python-machine-learning-book)
|
|
97 | 97 | - Computer Vision
|
98 | 98 | - [Awesome Python - Computer Vision](https://github.com/vinta/awesome-python#computer-vision)
|
99 | 99 |
|
100 |
| -##Scikit Learn |
| 100 | +## Scikit Learn |
101 | 101 | - [scikit learn on Wikipedia](https://en.wikipedia.org/wiki/Scikit-learn)
|
102 | 102 | - [**Introduction to machine learning with scikit-learn**](https://github.com/justmarkham/scikit-learn-videos), [**Videos!**](http://blog.kaggle.com/author/kevin-markham/)
|
103 | 103 | - [**A Gentle Introduction to Scikit-Learn: A Python Machine Learning Library**](http://machinelearningmastery.com/a-gentle-introduction-to-scikit-learn-a-python-machine-learning-library/)
|
|
110 | 110 | - [Saving classifier to disk in scikit-learn](http://stackoverflow.com/questions/10592605/save-classifier-to-disk-in-scikit-learn)
|
111 | 111 |
|
112 | 112 |
|
113 |
| -##Linear Regression in Python |
| 113 | +## Linear Regression in Python |
114 | 114 | - [Linear Regression in Python](http://nbviewer.ipython.org/github/justmarkham/DAT4/blob/master/notebooks/08_linear_regression.ipynb), [Blog Post](http://www.dataschool.io/linear-regression-in-python/)
|
115 | 115 | - [Linear Regression using Scikit Learn](http://scikit-learn.org/stable/modules/generated/sklearn.linear_model.LinearRegression.html)
|
116 | 116 | - [A friendly introduction to linear regression (using Python)](http://www.dataschool.io/linear-regression-in-python/)
|
117 | 117 | - [Linear Regression Example in Python](http://scipy-cookbook.readthedocs.io/items/LinearRegression.html)
|
118 | 118 | - [Regression analysis using Python StatsModels package](http://www.turingfinance.com/regression-analysis-using-python-statsmodels-and-quandl/)
|
119 | 119 | - [Run an OLS regression with Pandas Data Frame](http://stackoverflow.com/questions/19991445/run-an-ols-regression-with-pandas-data-frame)
|
120 | 120 |
|
121 |
| -##Logistic Regression in Python |
| 121 | +## Logistic Regression in Python |
122 | 122 | - [Logistic Regression with scikit learn](http://www.dataschool.io/logistic-regression-in-python-using-scikit-learn/)
|
123 | 123 | - [Logistic Regression in Python](http://blog.yhat.com/posts/logistic-regression-and-python.html)
|
124 | 124 | - [Implementing the softmax function in Python](http://stackoverflow.com/questions/34968722/softmax-function-python)
|
|
128 | 128 | - [TUTORIAL ON LOGISTIC REGRESSION AND OPTIMIZATION IN PYTHON](https://learningwithdata.wordpress.com/2015/04/30/tutorial-on-logistic-regression-and-optimization-in-python/)
|
129 | 129 | - [Using Logistic Regression in Python for Data Science](http://www.dummies.com/how-to/content/using-logistic-regression-in-python-for-data-scien.html)
|
130 | 130 |
|
131 |
| -##k Nearest Neighbours in Python |
| 131 | +## k Nearest Neighbours in Python |
132 | 132 | - [A good tutorial on implementing K Nearest Neighbors using scikit learn](http://scikit-learn.org/stable/modules/neighbors.html)
|
133 | 133 | - [**Is it possible to specify your own distance function using scikit-learn K-Means Clustering?**](http://stackoverflow.com/questions/5529625/is-it-possible-to-specify-your-own-distance-function-using-scikit-learn-k-means)
|
134 | 134 | - [Tutorial To Implement k-Nearest Neighbors in Python From Scratch](http://machinelearningmastery.com/tutorial-to-implement-k-nearest-neighbors-in-python-from-scratch/)
|
|
138 | 138 | - [Sklearn kNN usage with a user defined metric](http://stackoverflow.com/questions/21052509/sklearn-knn-usage-with-a-user-defined-metric)
|
139 | 139 |
|
140 | 140 |
|
141 |
| -##Neural Networks in Python |
| 141 | +## Neural Networks in Python |
142 | 142 | - [Implementing a Neural Network from scratch in Python](http://www.wildml.com/2015/09/implementing-a-neural-network-from-scratch/), [Code](https://github.com/dennybritz/nn-from-scratch)
|
143 | 143 | - [A Neural Network in 11 lines of Python](http://iamtrask.github.io/2015/07/12/basic-python-network/)
|
144 | 144 | - [Speeding up your Neural Network with Theano and the gpu](http://www.wildml.com/2015/09/speeding-up-your-neural-network-with-theano-and-the-gpu/), [Code](https://github.com/dennybritz/nn-theano)
|
|
148 | 148 | - [Neural Networks Tutorial – a Pathway to Deep Learning](http://www.adventuresinmachinelearning.com/neural-networks-tutorial/)
|
149 | 149 |
|
150 | 150 |
|
151 |
| -##Decision Trees in Python |
| 151 | +## Decision Trees in Python |
152 | 152 | - [How to extract the decision rules from scikit-learn decision-tree?](http://stackoverflow.com/questions/20224526/how-to-extract-the-decision-rules-from-scikit-learn-decision-tree)
|
153 | 153 | - [**How do I find which attributes my tree splits on, when using scikit-learn?**](http://stackoverflow.com/questions/20156951/how-do-i-find-which-attributes-my-tree-splits-on-when-using-scikit-learn)
|
154 | 154 | - [Quora: What is a good Python library for decision trees?](https://www.quora.com/What-is-a-good-Python-library-for-decision-trees), [StackOverflow](http://stackoverflow.com/questions/3127922/what-is-a-good-python-library-for-decision-trees)
|
|
160 | 160 | - [Code for simple decision tree in Python](https://github.com/gumption/Python_for_Data_Science/blob/master/simple_decision_tree.py)
|
161 | 161 | - [Lesson notebook: Regression and Classification Trees](http://nbviewer.jupyter.org/github/justmarkham/DAT8/blob/master/notebooks/17_decision_trees.ipynb)
|
162 | 162 |
|
163 |
| -##Random Forest with Python |
| 163 | +## Random Forest with Python |
164 | 164 | - [Getting Started with Random Forests: Titanic Competition on Kaggle](https://www.kaggle.com/c/titanic/details/getting-started-with-random-forests), [Python sample code](https://www.kaggle.com/c/digit-recognizer/forums/t/2299/getting-started-python-sample-code-random-forest)
|
165 | 165 | - [RandomForestClassifier vs ExtraTreesClassifier in scikit learn](http://stackoverflow.com/questions/22409855/randomforestclassifier-vs-extratreesclassifier-in-scikit-learn)
|
166 | 166 | - [Powerful Guide to learn Random Forest](http://www.analyticsvidhya.com/blog/2015/09/random-forest-algorithm-multiple-challenges/)
|
|
172 | 172 | - [How to output RandomForest Classifier from python?](http://stackoverflow.com/questions/23000693/how-to-output-randomforest-classifier-from-python)
|
173 | 173 | - [Lesson notebook: Ensembling, Bagging, and Random Forests](http://nbviewer.jupyter.org/github/justmarkham/DAT8/blob/master/notebooks/18_ensembling.ipynb)
|
174 | 174 |
|
175 |
| -##Support Vector Machine in Python |
| 175 | +## Support Vector Machine in Python |
176 | 176 | - [Fastest SVM implementation usable in Python](http://stackoverflow.com/questions/9299346/fastest-svm-implementation-usable-in-python)
|
177 | 177 | - [An example using python bindings for SVM library, LIBSVM](http://stackoverflow.com/questions/4214868/an-example-using-python-bindings-for-svm-library-libsvm)
|
178 | 178 | - [What is the best SVM library usable from Python?](https://www.quora.com/What-is-the-best-SVM-library-usable-from-Python)
|
|
181 | 181 | - [Linear SVC Machine learning SVM example with Python](https://pythonprogramming.net/linear-svc-example-scikit-learn-svm-python/)
|
182 | 182 | - [Understanding Support Vector Machine algorithm from examples (along with code)](http://www.analyticsvidhya.com/blog/2015/10/understaing-support-vector-machine-example-code/)
|
183 | 183 |
|
184 |
| -##NLP / Text Mining in Python |
| 184 | +## NLP / Text Mining in Python |
185 | 185 | - [**NLP with Python ORiley Book**](http://www.nltk.org/book_1ed/), [Python 3](http://www.nltk.org/book/)
|
186 | 186 | - [Awesome Python - NLP](https://github.com/vinta/awesome-python#natural-language-processing)
|
187 | 187 | - [Awesome Python - Text Processing](https://github.com/vinta/awesome-python#text-processing)
|
|
192 | 192 | - [N-grams: Explanation + 2 applications](http://stackoverflow.com/questions/1032288/n-grams-explanation-2-applications)
|
193 | 193 | - [NLP Tutorial with Python](http://www.datasciencecentral.com/profiles/blogs/python-nlp-tools)
|
194 | 194 |
|
195 |
| -##Sentiment Analysis with Python |
| 195 | +## Sentiment Analysis with Python |
196 | 196 | - [Twitter-Sentiment-Analysis](https://github.com/ujjwalkarn/Twitter-Sentiment-Analysis)
|
197 | 197 | - [Basic Sentiment Analysis with Python](http://fjavieralba.com/basic-sentiment-analysis-with-python.html)
|
198 | 198 | - [What is the best way to do Sentiment Analysis with Python?](https://www.quora.com/What-is-the-best-way-to-do-Sentiment-Analysis-with-Python-1)
|
|
203 | 203 | - [**Sentiment Analysis with bag-of-words**](http://ataspinar.com/2016/01/21/sentiment-analysis-with-bag-of-words/)
|
204 | 204 | - [**Sentiment Analysis with Naive Bayes**](http://ataspinar.com/2016/02/15/sentiment-analysis-with-the-naive-bayes-classifier/)
|
205 | 205 |
|
206 |
| -##Pickle: convert a python object into a character stream |
| 206 | +## Pickle: convert a python object into a character stream |
207 | 207 | - [Python serialization - Why pickle?](http://stackoverflow.com/questions/8968884/python-serialization-why-pickle)
|
208 | 208 | - [**Serializing Python Objects**](http://www.diveinto.org/python3/serializing.html), [**Binary Files**](http://www.diveinto.org/python3/files.html#binary)
|
209 | 209 | - [What is Pickle in python ?](https://pythontips.com/2013/08/02/what-is-pickle-in-python/)
|
210 | 210 | - [How to cPickle dump and load separate dictionaries to the same file?](http://stackoverflow.com/questions/11641493/how-to-cpickle-dump-and-load-separate-dictionaries-to-the-same-file)
|
211 | 211 | - [**Understanding Pickling in Python**](http://stackoverflow.com/questions/7501947/understanding-pickling-in-python)
|
212 | 212 |
|
213 |
| -##AutoML |
| 213 | +## AutoML |
214 | 214 | - [TPOT: A Python tool for automating data science](http://www.randalolson.com/2016/05/08/tpot-a-python-tool-for-automating-data-science/), [GitHub repo](https://github.com/rhiever/tpot)
|
215 | 215 |
|
216 |
| -##Regex Related |
| 216 | +## Regex Related |
217 | 217 | - [RegExr](http://regexr.com/)
|
218 | 218 | - [Regex101](https://regex101.com/)
|
219 | 219 | - [Pythex](http://pythex.org/)
|
220 | 220 | - [How to use Regular Expressions (Regex) in Microsoft Excel both in-cell and loops](http://stackoverflow.com/questions/22542834/how-to-use-regular-expressions-regex-in-microsoft-excel-both-in-cell-and-loops)
|
221 | 221 | - [Advanced Filters: Excel’s Amazing Alternative To Regex](http://searchengineland.com/advanced-filters-excels-amazing-alternative-to-regex-143680)
|
222 | 222 |
|
223 |
| -##Shell Scripting |
| 223 | +## Shell Scripting |
224 | 224 | - [**Calling an external command in Python**](http://stackoverflow.com/questions/89228/calling-an-external-command-in-python)
|
225 | 225 | - [**Running shell command from Python and capturing the output**](http://stackoverflow.com/questions/4760215/running-shell-command-from-python-and-capturing-the-output)
|
226 | 226 | - [**Can I use Python as a bash replacement?**](http://stackoverflow.com/questions/209470/can-i-use-python-as-a-bash-replacement)
|
|
233 | 233 | - [The Beginner’s Guide to Shell Scripting: The Basics](http://www.howtogeek.com/67469/the-beginners-guide-to-shell-scripting-the-basics/)
|
234 | 234 | - [Linux Shell Scripting Tutorial v1.05r3 A Beginner's handbook](http://www.freeos.com/guides/lsst/)
|
235 | 235 |
|
236 |
| -##Other good lists |
| 236 | +## Other good lists |
237 | 237 | - [pycrumbs - Bits and bytes of Python from the Internet](https://github.com/kirang89/pycrumbs)
|
238 | 238 | - [python github projects - Collect and classify python projects on Github](https://github.com/checkcheckzz/python-github-projects)
|
239 | 239 | - [python reference - Useful functions, tutorials, and other Python-related things](https://github.com/rasbt/python_reference)
|
|
0 commit comments