Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/the0demiurge/python-scripts
My testing, learning, minor projects, and interesting things.
https://github.com/the0demiurge/python-scripts
python3 snippets
Last synced: 2 months ago
JSON representation
My testing, learning, minor projects, and interesting things.
- Host: GitHub
- URL: https://github.com/the0demiurge/python-scripts
- Owner: the0demiurge
- Created: 2016-07-11T12:30:50.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-02-04T10:02:24.000Z (almost 3 years ago)
- Last Synced: 2024-10-03T12:39:32.262Z (3 months ago)
- Topics: python3, snippets
- Language: Jupyter Notebook
- Homepage: http://ss.pythonic.life
- Size: 136 MB
- Stars: 32
- Watchers: 5
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# My Python Scripts
用于python 测试与学习
# Contents
```
rc/
├── ComputerScience
│ └── data_structure
│ └── linked_list.py
├── Controller
│ ├── cartpole_pid.py
│ └── pid.py
├── DevTools
│ ├── crash_on_ipy.py
│ └── jupyter_hide_code.py
├── Example
│ ├── argparse_example.py
│ ├── ncurses_example.py
│ └── qrcode_example.py
├── MachineLearning
│ ├── algorithm
│ │ ├── DecisionTree.py
│ │ ├── DeepReinforcementLearning
│ │ │ ├── ReplayBuffer.py
│ │ │ ├── SimplePolicyGradient.py
│ │ │ └── step by step q learning.ipynb
│ │ ├── LDA.py
│ │ ├── neural_network.ipynb
│ │ ├── nn_mnist.py
│ │ ├── nn_mnist_static.py
│ │ └── tsne.py -> ../sklearn/tsne.py
│ ├── Deep_Learning
│ │ ├── dqn_cartpole.py
│ │ └── pg_cartpole.ipynb
│ ├── preprocess.py
│ ├── sklearn
│ │ └── tsne.py
│ └── TensorFlow
│ ├── Batcher.py
│ ├── IncreaseNN.py
│ └── multi-gpu.py
├── MinorProjects
│ ├── diff.py
│ ├── excel.py
│ ├── media
│ │ ├── comics
│ │ │ └── tmp.py
│ │ └── ffmpeg_convert2mp4.py
│ ├── multy_copy.py
│ ├── plz
│ │ ├── compute_time.py
│ │ ├── turtle.bot
│ │ ├── turtlebot.ipynb
│ │ └── turtlebot.py
│ └── sendmail.py
└── Web
├── Flask
├── html
│ └── split.html
├── ipgw.py
└── Verification code.ipynb18 directories, 37 files
```
src/MinorProjects/plz: 张老师实验室计算出勤时间的计算器
src/MinorProjects/tf: tensorflow 学习代码
src/MinorProjects/sendmail.py: 使用Python发送邮件(自动化运维)
`tree src/ -I 'pyc|__pycache__|js|ShadowSocksShare-OpenShift|MNIST_data'`