gitextract_iw5u6yje/ ├── .gitignore ├── LICENCE ├── README.md ├── Reinforcement_learning_TUT/ │ └── README.md ├── basic/ │ ├── .ipynb_checkpoints/ │ │ └── 36_regex-checkpoint.ipynb │ ├── 25_import.py │ ├── 28_try.py │ ├── 29_zip_lambda_map.py │ ├── 30_copy_deepcopy.py │ ├── 34_pickle.py │ ├── 35_set.py │ ├── 36_RegEx.py │ └── 36_regex.ipynb ├── kerasTUT/ │ ├── 10-save.py │ ├── 2-installation.py │ ├── 3-backend.py │ ├── 4-regressor_example.py │ ├── 5-classifier_example.py │ ├── 6-CNN_example.py │ ├── 7-RNN_Classifier_example.py │ ├── 8-RNN_LSTM_Regressor_example.py │ ├── 9-Autoencoder_example.py │ └── README.md ├── matplotlibTUT/ │ ├── README.md │ ├── plt10_scatter.py │ ├── plt11_bar.py │ ├── plt12_contours.py │ ├── plt13_image.py │ ├── plt14_3d.py │ ├── plt15_subplot.py │ ├── plt16_grid_subplot.py │ ├── plt17_plot_in_plot.py │ ├── plt18_secondary_yaxis.py │ ├── plt19_animation.py │ ├── plt1_why.py │ ├── plt2_install.py │ ├── plt3_simple_plot.py │ ├── plt4_figure.py │ ├── plt5_ax_setting1.py │ ├── plt6_ax_setting2.py │ ├── plt7_legend.py │ ├── plt8_annotation.py │ └── plt9_tick_visibility.py ├── multiprocessingTUT/ │ ├── multiprocessing3_queue.py │ ├── multiprocessing4_efficiency_comparison.py │ ├── multiprocessing5_pool.py │ └── multiprocessing7_lock.py ├── numpy&pandas/ │ ├── 11_pandas_intro.py │ ├── 12_selection.py │ ├── 13_set_value.py │ ├── 14_nan.py │ ├── 15_read_to/ │ │ ├── 15_read_to.py │ │ └── student.csv │ ├── 16_concat.py │ ├── 17_merge.py │ └── 18_plot.py ├── pyTorch tutorial/ │ └── README.md ├── sklearnTUT/ │ ├── sk10_cross_validation3.py │ ├── sk11_save.py │ ├── sk4_learning_pattern.py │ ├── sk5_datasets.py │ ├── sk6_model_attribute_method.py │ ├── sk7_normalization.py │ ├── sk8_cross_validation/ │ │ ├── for_you_to_practice.py │ │ └── full_code.py │ └── sk9_cross_validation2.py ├── tensorflowTUT/ │ ├── README.md │ ├── tensorflow10_def_add_layer.py │ ├── tensorflow11_build_network.py │ ├── tensorflow12_plut_result.py │ ├── tensorflow6_session.py │ ├── tensorflow7_variable.py │ ├── tensorflow8_feeds.py │ ├── tf11_build_network/ │ │ └── full_code.py │ ├── tf12_plot_result/ │ │ └── full_code.py │ ├── tf14_tensorboard/ │ │ └── full_code.py │ ├── tf15_tensorboard/ │ │ ├── full_code.py │ │ └── logs/ │ │ └── events.out.tfevents.1494075549.Morvan │ ├── tf16_classification/ │ │ └── full_code.py │ ├── tf17_dropout/ │ │ └── full_code.py │ ├── tf18_CNN2/ │ │ └── full_code.py │ ├── tf18_CNN3/ │ │ └── full_code.py │ ├── tf19_saver.py │ ├── tf20_RNN2/ │ │ └── full_code.py │ ├── tf20_RNN2.2/ │ │ ├── full_code.py │ │ └── logs/ │ │ ├── events.out.tfevents.1490697566.Morvan │ │ ├── events.out.tfevents.1490697588.Morvan │ │ ├── events.out.tfevents.1493818356.Morvan │ │ ├── events.out.tfevents.1493818411.Morvan │ │ ├── events.out.tfevents.1493818762.Morvan │ │ ├── events.out.tfevents.1509756112.Morvan │ │ └── events.out.tfevents.1509756156.Morvan │ ├── tf21_autoencoder/ │ │ └── full_code.py │ ├── tf22_scope/ │ │ ├── tf22_RNN_scope.py │ │ └── tf22_scope.py │ ├── tf23_BN/ │ │ └── tf23_BN.py │ └── tf5_example2/ │ └── full_code.py ├── theanoTUT/ │ ├── README.md │ ├── theano10_regression_visualization/ │ │ ├── for_you_to_practice.py │ │ └── full_code.py │ ├── theano11_classification_nn/ │ │ ├── for_you_to_practice.py │ │ └── full_code.py │ ├── theano12_regularization/ │ │ ├── for_you_to_practice.py │ │ └── full_code.py │ ├── theano13_save/ │ │ ├── for_you_to_practice.py │ │ └── full_code.py │ ├── theano14_summary.py │ ├── theano2_install.py │ ├── theano3_what_does_ML_do.py │ ├── theano4_basic_usage.py │ ├── theano5_function.py │ ├── theano6_shared_variable.py │ ├── theano7_activation_function.py │ ├── theano8_Layer_class.py │ └── theano9_regression_nn/ │ ├── for_you_to_practice.py │ └── full_code.py ├── threadingTUT/ │ ├── thread2_add_thread.py │ ├── thread3_join.py │ ├── thread4_queue.py │ ├── thread5_GIL.py │ └── thread6_lock.py └── tkinterTUT/ ├── tk10_frame.py ├── tk11_msgbox.py ├── tk12_position.py ├── tk13_login_example/ │ └── tk13_login_example.py ├── tk14_login_example/ │ └── tk14_login_example.py ├── tk15_login_example/ │ └── tk15_login_example.py ├── tk2_label_button.py ├── tk3_entry_text.py ├── tk4_listbox.py ├── tk5_radiobutton.py ├── tk6_scale.py ├── tk7_checkbutton.py ├── tk8_canvas.py └── tk9_menubar.py