├── .gitattributes ├── .idea ├── keras.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── .ipynb_checkpoints ├── 1. predict_iris_data-checkpoint.ipynb ├── 2. predict_redwine_whitewine-checkpoint.ipynb ├── 3. predict_boston_house-checkpoint.ipynb ├── 4. predict_MNIST_with_MLP-checkpoint.ipynb ├── 5. predict_MNIST_with_CNN-checkpoint.ipynb ├── 6. predict_binary_img_with_CNN-checkpoint.ipynb ├── 7. predict_multi_img_with_CNN-checkpoint.ipynb ├── 8. predict_spam_or_ham_with_LSTM-checkpoint.ipynb ├── 9. predict_korea_news_category_with_LSTM-checkpoint.ipynb ├── keras_cpu_test-checkpoint.ipynb └── keras_gpu_test-checkpoint.ipynb ├── 1. predict_iris_data.ipynb ├── 10. predict_korea_movie_review_classification.ipynb ├── 11. seq2seq model (translate).ipynb ├── 2. predict_redwine_whitewine.ipynb ├── 3. predict_boston_house.ipynb ├── 4. predict_MNIST_with_MLP.ipynb ├── 5. predict_MNIST_with_CNN.ipynb ├── 6. predict_binary_img_with_CNN.ipynb ├── 7. predict_multi_img_with_CNN.ipynb ├── 8. predict_spam_or_ham_with_LSTM.ipynb ├── 9. predict_korea_news_category_with_LSTM.ipynb ├── README.md ├── bfg-1.13.0.jar ├── dataset ├── ThoraricSurgery.csv ├── ThoraricSurgery_test.csv ├── housing.csv ├── iris-test.csv ├── iris.csv ├── pima-indians-diabetes-test.csv ├── pima-indians-diabetes.csv ├── sonar.csv ├── spam.csv ├── test.csv └── wine.csv ├── keras_cpu_test.ipynb ├── keras_gpu_test.ipynb ├── model ├── cnn_mnist.model ├── dog_cat_classify.model ├── iris.model ├── mnist_mlp.model ├── model_day4.model ├── multi_img_classification.model ├── predict_korea_news_LSTM.model └── spam_ham_LSTM.model └── numpy_data ├── binary_image_data.npy ├── image_data.npy └── multi_image_data.npy /.gitattributes: -------------------------------------------------------------------------------- 1 | *.npy filter=lfs diff=lfs merge=lfs -text 2 | -------------------------------------------------------------------------------- /.idea/keras.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 11 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 14 | 15 | 16 | 17 | 18 | 23 | 24 | 25 | 27 | 28 | 40 | 41 | 42 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 |