Browse Source

Improve requirements

pull/1/MERGE
bushuhui 5 years ago
parent
commit
58fb04b491
5 changed files with 1039 additions and 328 deletions
  1. +996
    -301
      4_logistic_regression/Least_squares.ipynb
  2. +16
    -14
      4_logistic_regression/Logistic_regression.ipynb
  3. +10
    -11
      References.md
  4. +17
    -2
      requirements.txt
  5. BIN
      tips/cheatsheet/Scikit Learn.pdf

+ 996
- 301
4_logistic_regression/Least_squares.ipynb
File diff suppressed because it is too large
View File


+ 16
- 14
4_logistic_regression/Logistic_regression.ipynb
File diff suppressed because it is too large
View File


+ 10
- 11
References.md View File

@@ -3,6 +3,16 @@



## Notebook, Book, Tutorial
* [Deep Learning with PyTorch](https://pytorch.org/deep-learning-with-pytorch-thank-you)
* [Machine Learning Yearning 中文版 - 《机器学习训练秘籍》](https://github.com/deeplearning-ai/machine-learning-yearning-cn) ([在线阅读](https://deeplearning-ai.github.io/machine-learning-yearning-cn/))
* [ipython-notebooks: A collection of IPython notebooks covering various topics](https://github.com/jdwittenauer/ipython-notebooks)
* [Learn Data Science](http://learnds.com/)
* [AM207 2016](https://github.com/AM207/2016/tree/master)
* [Python机器学习](https://ljalphabeta.gitbooks.io/python-/content/)
* [scientific-python-lectures](http://nbviewer.jupyter.org/github/jrjohansson/scientific-python-lectures/tree/master/)


## Python & IPython

* [Python Numpy Tutorial - 简明Python, Numpy, Matplotlib教程](http://cs231n.github.io/python-numpy-tutorial/)
@@ -29,16 +39,6 @@



## Notebook, Book, Tutorial

* [Machine Learning Yearning 中文版 - 《机器学习训练秘籍》](https://github.com/deeplearning-ai/machine-learning-yearning-cn) ([在线阅读](https://deeplearning-ai.github.io/machine-learning-yearning-cn/))
* [ipython-notebooks: A collection of IPython notebooks covering various topics](https://github.com/jdwittenauer/ipython-notebooks)
* [Learn Data Science](http://learnds.com/)
* [AM207 2016](https://github.com/AM207/2016/tree/master)
* [Python机器学习](https://ljalphabeta.gitbooks.io/python-/content/)
* [scientific-python-lectures](http://nbviewer.jupyter.org/github/jrjohansson/scientific-python-lectures/tree/master/)



## Awesome series & Collections

@@ -48,7 +48,6 @@
* [Awesome Deep Vision](https://github.com/kjw0612/awesome-deep-vision)
* [Awesome 3D Reconstruction](https://github.com/openMVG/awesome_3DReconstruction_list)
* [awesome-algorithm](https://github.com/apachecn/awesome-algorithm)

* [Papers with code. Sorted by stars. Updated weekly.](https://github.com/zziz/pwc)




+ 17
- 2
requirements.txt View File

@@ -8,11 +8,23 @@
# pip
# sudo apt-get install python-pip python3-pip
# pip install pip -U
# pip config set global.index-url 'https://mirrors.aliyun.com/pypi/simple/'
# pip config set global.index-url 'https://mirrors.ustc.edu.cn/pypi/web/simple'
#

#
# Install virtualenv
# Install virtualenv by apt-get
# sudo apt-get install virtualenvwrapper
#
# Add following lines to `~/.bashrc`
# # virtualenv
# export VIRTUALENVWRAPPER_PYTHON=/usr/bin/python
# export WORKON_HOME=/home/bushuhui/virtualenv
# source /usr/share/virtualenvwrapper/virtualenvwrapper.sh
#


# Install virtualenv by pip
# pip install setuptools
# pip install virtualenv
# pip install virtualenvwrapper
@@ -24,6 +36,8 @@
# export WORKON_HOME=/home/bushuhui/virtualenv
# source /usr/local/bin/virtualenvwrapper.sh 
#

#
# Usage:
# # create virtual env
# mkvirtualenv --python=/usr/local/python3.5.3/bin/python venv
@@ -35,7 +49,8 @@
#
# Install this list packages:
# pip install -r requirements.txt
#
# Save package list
# pip freeze >> requirements.txt


attrs==19.1.0


BIN
tips/cheatsheet/Scikit Learn.pdf View File


Loading…
Cancel
Save