Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: hongjian/tutorials
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: MorvanZhou/tutorials
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 5 commits
  • 34 files changed
  • 1 contributor

Commits on Mar 7, 2018

  1. fix typo

    MorvanZhou committed Mar 7, 2018
    Copy the full SHA
    0036113 View commit details

Commits on Mar 9, 2018

  1. fix typo

    MorvanZhou committed Mar 9, 2018
    Copy the full SHA
    37de6e0 View commit details

Commits on Oct 29, 2020

  1. up

    MorvanZhou committed Oct 29, 2020
    Copy the full SHA
    19081c8 View commit details
  2. update

    MorvanZhou committed Oct 29, 2020
    Copy the full SHA
    6c50656 View commit details

Commits on Oct 31, 2020

  1. up

    MorvanZhou committed Oct 31, 2020
    Copy the full SHA
    c36c899 View commit details
Showing with 774 additions and 126 deletions.
  1. +27 −27 README.md
  2. +4 −4 Reinforcement_learning_TUT/README.md
  3. +648 −0 basic/.ipynb_checkpoints/36_regex-checkpoint.ipynb
  4. +1 −1 basic/36_RegEx.py
  5. +1 −1 kerasTUT/10-save.py
  6. +1 −1 kerasTUT/2-installation.py
  7. +1 −1 kerasTUT/3-backend.py
  8. +1 −1 kerasTUT/4-regressor_example.py
  9. +1 −1 kerasTUT/5-classifier_example.py
  10. +2 −2 kerasTUT/6-CNN_example.py
  11. +1 −1 kerasTUT/7-RNN_Classifier_example.py
  12. +1 −1 kerasTUT/8-RNN_LSTM_Regressor_example.py
  13. +1 −1 kerasTUT/9-Autoencoder_example.py
  14. +10 −10 kerasTUT/README.md
  15. +29 −29 matplotlibTUT/README.md
  16. +4 −4 pyTorch tutorial/README.md
  17. +23 −23 tensorflowTUT/README.md
  18. BIN tensorflowTUT/tf15_tensorboard/logs/events.out.tfevents.1494075549.Morvan
  19. BIN tensorflowTUT/tf20_RNN2.2/logs/events.out.tfevents.1490697566.Morvan
  20. BIN tensorflowTUT/tf20_RNN2.2/logs/events.out.tfevents.1490697588.Morvan
  21. BIN tensorflowTUT/tf20_RNN2.2/logs/events.out.tfevents.1493818356.Morvan
  22. BIN tensorflowTUT/tf20_RNN2.2/logs/events.out.tfevents.1493818411.Morvan
  23. BIN tensorflowTUT/tf20_RNN2.2/logs/events.out.tfevents.1493818762.Morvan
  24. BIN tensorflowTUT/tf20_RNN2.2/logs/events.out.tfevents.1509756112.Morvan
  25. BIN tensorflowTUT/tf20_RNN2.2/logs/events.out.tfevents.1509756156.Morvan
  26. BIN tensorflowTUT/tf20_RNN2/MNIST_data/t10k-images-idx3-ubyte.gz
  27. BIN tensorflowTUT/tf20_RNN2/MNIST_data/t10k-labels-idx1-ubyte.gz
  28. BIN tensorflowTUT/tf20_RNN2/MNIST_data/train-images-idx3-ubyte.gz
  29. BIN tensorflowTUT/tf20_RNN2/MNIST_data/train-labels-idx1-ubyte.gz
  30. +1 −1 tensorflowTUT/tf21_autoencoder/full_code.py
  31. +1 −1 tensorflowTUT/tf22_scope/tf22_RNN_scope.py
  32. +1 −1 tensorflowTUT/tf22_scope/tf22_scope.py
  33. +1 −1 tensorflowTUT/tf23_BN/tf23_BN.py
  34. +14 −14 theanoTUT/README.md
54 changes: 27 additions & 27 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,41 +1,41 @@
<p align="center">
<a href="https://morvanzhou.github.io/tutorials/" target="_blank">
<img width="60%" src="https://github.com/MorvanZhou/tutorials/blob/master/%E7%89%87%E5%A4%B4.png" style="max-width:100%;">
<a href="https://mofanpy.com/tutorials/" target="_blank">
<img width="60%" src="%E7%89%87%E5%A4%B4.png" style="max-width:100%;">
</a>
</p>


<br>

我是 周沫凡, [莫烦Python](https://morvanzhou.github.io/) 只是谐音, 我喜欢制作,
分享所学的东西, 所以你能在这里找到很多有用的东西, 少走弯路. 你能在[这里](https://morvanzhou.github.io/about/)找到关于我的所有东西.
我是 周沫凡, [莫烦Python](https://mofanpy.com/) 只是谐音, 我喜欢制作,
分享所学的东西, 所以你能在这里找到很多有用的东西, 少走弯路. 你能在[这里](https://mofanpy.com/about/)找到关于我的所有东西.

## 这个 Python tutorial 的一些内容:

* [Python 基础](https://morvanzhou.github.io/tutorials/python-basic/)
* [基础](https://morvanzhou.github.io/tutorials/python-basic/basic/)
* [多线程 threading](https://morvanzhou.github.io/tutorials/python-basic/threading/)
* [多进程 multiprocessing](https://morvanzhou.github.io/tutorials/python-basic/multiprocessing/)
* [简单窗口 tkinter](https://morvanzhou.github.io/tutorials/python-basic/tkinter/)
* [机器学习](https://morvanzhou.github.io/tutorials/machine-learning/)
* [有趣的机器学习](https://morvanzhou.github.io/tutorials/machine-learning/ML-intro/)
* [强化学习 (Reinforcement Learning)](https://morvanzhou.github.io/tutorials/machine-learning/reinforcement-learning/)
* [进化算法 (Evolutionary Algorithm) 如遗传算法等](https://morvanzhou.github.io/tutorials/machine-learning/evolutionary-algorithm/)
* [Tensorflow (神经网络)](https://morvanzhou.github.io/tutorials/machine-learning/tensorflow/)
* [PyTorch (神经网络)](https://morvanzhou.github.io/tutorials/machine-learning/torch/)
* [Theano (神经网络)](https://morvanzhou.github.io/tutorials/machine-learning/theano/)
* [Keras (快速神经网络)](https://morvanzhou.github.io/tutorials/machine-learning/keras/)
* [Scikit-Learn (机器学习)](https://morvanzhou.github.io/tutorials/machine-learning/sklearn/)
* [机器学习实战](https://morvanzhou.github.io/tutorials/machine-learning/ML-practice/)
* [数据处理](https://morvanzhou.github.io/tutorials/data-manipulation/)
* [Numpy & Pandas (处理数据)](https://morvanzhou.github.io/tutorials/data-manipulation/np-pd/)
* [Matplotlib (绘图)](https://morvanzhou.github.io/tutorials/data-manipulation/plt/)
* [爬虫](https://morvanzhou.github.io/tutorials/data-manipulation/scraping/)
* [其他](https://morvanzhou.github.io/tutorials/others/)
* [Git (版本管理)](https://morvanzhou.github.io/tutorials/others/git/)
* [Linux 简易教学](https://morvanzhou.github.io/tutorials/others/linux-basic/)
* [Python 基础](https://mofanpy.com/tutorials/python-basic/)
* [基础](https://mofanpy.com/tutorials/python-basic/basic/)
* [多线程 threading](https://mofanpy.com/tutorials/python-basic/threading/)
* [多进程 multiprocessing](https://mofanpy.com/tutorials/python-basic/multiprocessing/)
* [简单窗口 tkinter](https://mofanpy.com/tutorials/python-basic/tkinter/)
* [机器学习](https://mofanpy.com/tutorials/machine-learning/)
* [有趣的机器学习](https://mofanpy.com/tutorials/machine-learning/ML-intro/)
* [强化学习 (Reinforcement Learning)](https://mofanpy.com/tutorials/machine-learning/reinforcement-learning/)
* [进化算法 (Evolutionary Algorithm) 如遗传算法等](https://mofanpy.com/tutorials/machine-learning/evolutionary-algorithm/)
* [Tensorflow (神经网络)](https://mofanpy.com/tutorials/machine-learning/tensorflow/)
* [PyTorch (神经网络)](https://mofanpy.com/tutorials/machine-learning/torch/)
* [Theano (神经网络)](https://mofanpy.com/tutorials/machine-learning/theano/)
* [Keras (快速神经网络)](https://mofanpy.com/tutorials/machine-learning/keras/)
* [Scikit-Learn (机器学习)](https://mofanpy.com/tutorials/machine-learning/sklearn/)
* [机器学习实战](https://mofanpy.com/tutorials/machine-learning/ML-practice/)
* [数据处理](https://mofanpy.com/tutorials/data-manipulation/)
* [Numpy & Pandas (处理数据)](https://mofanpy.com/tutorials/data-manipulation/np-pd/)
* [Matplotlib (绘图)](https://mofanpy.com/tutorials/data-manipulation/plt/)
* [爬虫](https://mofanpy.com/tutorials/data-manipulation/scraping/)
* [其他](https://mofanpy.com/tutorials/others/)
* [Git (版本管理)](https://mofanpy.com/tutorials/others/git/)
* [Linux 简易教学](https://mofanpy.com/tutorials/others/linux-basic/)

## 赞助和支持

这些 tutorial 都是我用业余时间写出来, 录成视频, 如果你觉得它对你很有帮助, 请你也分享给需要学习的朋友们.
如果你看好我的经验分享, 也请考虑适当的 [赞助打赏](https://morvanzhou.github.io/support/), 让我能继续分享更好的内容给大家.
如果你看好我的经验分享, 也请考虑适当的 [赞助打赏](https://mofanpy.com/support/), 让我能继续分享更好的内容给大家.
8 changes: 4 additions & 4 deletions Reinforcement_learning_TUT/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<p align="center">
<a href="https://www.youtube.com/watch?v=pieI7rOXELI&list=PLXO45tsB95cIplu-fLMpUEEZTwrDNh6Ba" target="_blank">
<img width="60%" src="https://github.com/MorvanZhou/Reinforcement-learning-with-tensorflow/blob/master/RL_cover.jpg?raw=true" style="max-width:100%;">
<img width="60%" src="/MorvanZhou/Reinforcement-learning-with-tensorflow/blob/master/RL_cover.jpg?raw=true" style="max-width:100%;">
</a>
</p>

@@ -10,11 +10,11 @@

# Note! This Reinforcement Learning Tutorial has been moved to anther independent repo:

[https://github.com/MorvanZhou/Reinforcement-learning-with-tensorflow](https://github.com/MorvanZhou/Reinforcement-learning-with-tensorflow)
[/MorvanZhou/Reinforcement-learning-with-tensorflow](/MorvanZhou/Reinforcement-learning-with-tensorflow)

# 请注意! 这个 强化学习 的教程代码已经被移至另一个网页:

[https://github.com/MorvanZhou/Reinforcement-learning-with-tensorflow](https://github.com/MorvanZhou/Reinforcement-learning-with-tensorflow)
[/MorvanZhou/Reinforcement-learning-with-tensorflow](/MorvanZhou/Reinforcement-learning-with-tensorflow)


# Donation
@@ -31,7 +31,7 @@

<div>
<a href="https://www.patreon.com/morvan">
<img src="https://morvanzhou.github.io/static/img/support/patreon.jpg"
<img src="https://mofanpy.com/static/img/support/patreon.jpg"
alt="Patreon"
height=120></a>
</div>
Loading