浏览代码

Improve requirements

pull/1/head
bushuhui 6 年前
父节点
当前提交
58fb04b491
共有 5 个文件被更改,包括 1039 次插入328 次删除
  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. 二进制
      tips/cheatsheet/Scikit Learn.pdf

+ 996
- 301
4_logistic_regression/Least_squares.ipynb
文件差异内容过多而无法显示
查看文件


+ 16
- 14
4_logistic_regression/Logistic_regression.ipynb
文件差异内容过多而无法显示
查看文件


+ 10
- 11
References.md 查看文件

@@ -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 查看文件

@@ -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
@@ -23,6 +35,8 @@
# export VIRTUALENVWRAPPER_PYTHON=/usr/bin/python
# export WORKON_HOME=/home/bushuhui/virtualenv
# source /usr/local/bin/virtualenvwrapper.sh 
#

#
# Usage:
# # create virtual env
@@ -35,7 +49,8 @@
#
# Install this list packages:
# pip install -r requirements.txt
#
# Save package list
# pip freeze >> requirements.txt


attrs==19.1.0


二进制
tips/cheatsheet/Scikit Learn.pdf 查看文件


正在加载...
取消
保存