├── .gitattributes ├── .gitignore ├── Convolutional └── train_picture.py ├── LICENSE ├── LSTM ├── dense_new.py ├── draw_attention.py ├── gen_poetry.py ├── logs │ ├── events.out.tfevents.1537016081.DESKTOP-842V9B8 │ └── weights-045-0.2604.hdf5 ├── model.png ├── my_model.h5 ├── p.json ├── predict_poetry.py └── read_utils.py ├── README.md ├── associate ├── 0.02支持度_0.5置信度_产生了54条规则.xlsx ├── NS_new.xls ├── README.md ├── regularNum.xlsx └── 自然论文关联分析.py ├── deviationDetection_PCA ├── pca_analysis_log.py └── test.xlsx ├── graphviz └── drawGraphvizTest.py ├── hierarchy ├── test.xlsx └── 层次聚类和热图.py ├── kerasTest ├── kerasBasicExample.py ├── kerasBasicUse.py ├── kerasCNN.py └── kerasRNN.py ├── pandas_apply ├── NS_new.xls └── pandas_apply_test.py ├── picReaderAndSaverBaseWeb ├── README.md ├── app.py ├── orm.py ├── picRead_Saver.py ├── tem.jpg └── templates │ ├── asyHello.py │ └── home.html ├── seabornTest ├── seaborn画图.py ├── test.xlsx └── tips.xlsx ├── test20MachineLearning ├── 10ML.py ├── 10ML_Method.py ├── Iris.csv ├── README.md ├── requirements.txt ├── 机器学习工作流程实例分析.pdf └── 机器学习工作流程实例分析.pptx └── weChatAutoReply ├── logDeal.py └── weChatMachine.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/.gitignore -------------------------------------------------------------------------------- /Convolutional/train_picture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/Convolutional/train_picture.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/LICENSE -------------------------------------------------------------------------------- /LSTM/dense_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/LSTM/dense_new.py -------------------------------------------------------------------------------- /LSTM/draw_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/LSTM/draw_attention.py -------------------------------------------------------------------------------- /LSTM/gen_poetry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/LSTM/gen_poetry.py -------------------------------------------------------------------------------- /LSTM/logs/events.out.tfevents.1537016081.DESKTOP-842V9B8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/LSTM/logs/events.out.tfevents.1537016081.DESKTOP-842V9B8 -------------------------------------------------------------------------------- /LSTM/logs/weights-045-0.2604.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/LSTM/logs/weights-045-0.2604.hdf5 -------------------------------------------------------------------------------- /LSTM/model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/LSTM/model.png -------------------------------------------------------------------------------- /LSTM/my_model.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/LSTM/my_model.h5 -------------------------------------------------------------------------------- /LSTM/p.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/LSTM/p.json -------------------------------------------------------------------------------- /LSTM/predict_poetry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/LSTM/predict_poetry.py -------------------------------------------------------------------------------- /LSTM/read_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/LSTM/read_utils.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/README.md -------------------------------------------------------------------------------- /associate/0.02支持度_0.5置信度_产生了54条规则.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/associate/0.02支持度_0.5置信度_产生了54条规则.xlsx -------------------------------------------------------------------------------- /associate/NS_new.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/associate/NS_new.xls -------------------------------------------------------------------------------- /associate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/associate/README.md -------------------------------------------------------------------------------- /associate/regularNum.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/associate/regularNum.xlsx -------------------------------------------------------------------------------- /associate/自然论文关联分析.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/associate/自然论文关联分析.py -------------------------------------------------------------------------------- /deviationDetection_PCA/pca_analysis_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/deviationDetection_PCA/pca_analysis_log.py -------------------------------------------------------------------------------- /deviationDetection_PCA/test.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/deviationDetection_PCA/test.xlsx -------------------------------------------------------------------------------- /graphviz/drawGraphvizTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/graphviz/drawGraphvizTest.py -------------------------------------------------------------------------------- /hierarchy/test.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/hierarchy/test.xlsx -------------------------------------------------------------------------------- /hierarchy/层次聚类和热图.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/hierarchy/层次聚类和热图.py -------------------------------------------------------------------------------- /kerasTest/kerasBasicExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/kerasTest/kerasBasicExample.py -------------------------------------------------------------------------------- /kerasTest/kerasBasicUse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/kerasTest/kerasBasicUse.py -------------------------------------------------------------------------------- /kerasTest/kerasCNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/kerasTest/kerasCNN.py -------------------------------------------------------------------------------- /kerasTest/kerasRNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/kerasTest/kerasRNN.py -------------------------------------------------------------------------------- /pandas_apply/NS_new.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/pandas_apply/NS_new.xls -------------------------------------------------------------------------------- /pandas_apply/pandas_apply_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/pandas_apply/pandas_apply_test.py -------------------------------------------------------------------------------- /picReaderAndSaverBaseWeb/README.md: -------------------------------------------------------------------------------- 1 | 在浏览器打开图片并显示的程序,包含格式: 2 | 1. jeg 3 | 2. png 4 | 3. matplotlib.pyplot 保存成的.pkl文件! -------------------------------------------------------------------------------- /picReaderAndSaverBaseWeb/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/picReaderAndSaverBaseWeb/app.py -------------------------------------------------------------------------------- /picReaderAndSaverBaseWeb/orm.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /picReaderAndSaverBaseWeb/picRead_Saver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/picReaderAndSaverBaseWeb/picRead_Saver.py -------------------------------------------------------------------------------- /picReaderAndSaverBaseWeb/tem.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/picReaderAndSaverBaseWeb/tem.jpg -------------------------------------------------------------------------------- /picReaderAndSaverBaseWeb/templates/asyHello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/picReaderAndSaverBaseWeb/templates/asyHello.py -------------------------------------------------------------------------------- /picReaderAndSaverBaseWeb/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/picReaderAndSaverBaseWeb/templates/home.html -------------------------------------------------------------------------------- /seabornTest/seaborn画图.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/seabornTest/seaborn画图.py -------------------------------------------------------------------------------- /seabornTest/test.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/seabornTest/test.xlsx -------------------------------------------------------------------------------- /seabornTest/tips.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/seabornTest/tips.xlsx -------------------------------------------------------------------------------- /test20MachineLearning/10ML.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/test20MachineLearning/10ML.py -------------------------------------------------------------------------------- /test20MachineLearning/10ML_Method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/test20MachineLearning/10ML_Method.py -------------------------------------------------------------------------------- /test20MachineLearning/Iris.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/test20MachineLearning/Iris.csv -------------------------------------------------------------------------------- /test20MachineLearning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/test20MachineLearning/README.md -------------------------------------------------------------------------------- /test20MachineLearning/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/test20MachineLearning/requirements.txt -------------------------------------------------------------------------------- /test20MachineLearning/机器学习工作流程实例分析.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/test20MachineLearning/机器学习工作流程实例分析.pdf -------------------------------------------------------------------------------- /test20MachineLearning/机器学习工作流程实例分析.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/test20MachineLearning/机器学习工作流程实例分析.pptx -------------------------------------------------------------------------------- /weChatAutoReply/logDeal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/weChatAutoReply/logDeal.py -------------------------------------------------------------------------------- /weChatAutoReply/weChatMachine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dongzhixiao/Python_Exercise/HEAD/weChatAutoReply/weChatMachine.py --------------------------------------------------------------------------------