├── Jung_Kyung_hoon ├── Readme.md └── Value_Based │ ├── DoubleDQN │ ├── agent.py │ ├── qnetwork.py │ ├── replay_buffer.py │ └── train.py │ ├── DuelingDQN │ ├── Vanila_DQN.ipynb │ ├── agent.py │ ├── qnetwork.py │ ├── replay_buffer.py │ └── train.py │ ├── PER │ ├── 1_dim_state │ │ ├── agent.py │ │ ├── qnetwork.py │ │ ├── replay_buffer.py │ │ ├── segment_tree.py │ │ └── train.py │ ├── agent.py │ ├── qnetwork.py │ ├── replay_buffer.py │ ├── segment_tree.py │ └── train.py │ └── Vanila_DQN │ ├── agent.py │ ├── qnetwork.py │ ├── replay_buffer.py │ └── train.py ├── README.md ├── jihun └── README.md ├── jihwanpark ├── README └── dqn_per │ └── README ├── jungwoolee_pytorch ├── 00 DQN soft and hard version │ ├── DQN_cartpole_SoftTargetUpdate.ipynb │ ├── DQN_cartpole_targetNet.ipynb │ └── README.md ├── 01 Double DQN & Multi-step TD │ ├── DQN_network.py │ ├── Double_DQN.py │ ├── README.md │ ├── image │ │ ├── Figure_0.png │ │ └── README.md │ ├── main.py │ └── replay_buffer.py ├── 02 PER & Dueling DQN │ ├── Double_DQN.py │ ├── DuelingDQN_network.py │ ├── README.md │ ├── image │ │ ├── Double_Dueling_N.png │ │ └── README.md │ ├── main.py │ └── replay_buffer.py ├── 03 Noisy Network │ ├── Double_DQN.py │ ├── DuelingDQN_network.py │ ├── README.md │ ├── image │ │ ├── 1step_factorised.png │ │ └── README.md │ ├── main.py │ └── replay_buffer.py ├── 04 C51 │ └── README.md ├── 100 Algorithm_For_RL │ ├── 01 sum_tree │ │ ├── README.md │ │ ├── images │ │ │ ├── 1_init_01.PNG │ │ │ ├── 1_init_02.PNG │ │ │ ├── 2_update_01.PNG │ │ │ ├── 2_update_02.PNG │ │ │ ├── 2_update_03.PNG │ │ │ ├── 2_update_04.PNG │ │ │ ├── 2_update_05.PNG │ │ │ ├── 2_update_06.PNG │ │ │ ├── 2_update_07.PNG │ │ │ ├── 2_update_08.PNG │ │ │ ├── 2_update_09.PNG │ │ │ ├── 3_search_01.PNG │ │ │ ├── 3_search_02.PNG │ │ │ ├── 3_search_03.PNG │ │ │ ├── 4_finish_01.png │ │ │ ├── README.md │ │ │ ├── data_100.png │ │ │ ├── data_1000.png │ │ │ ├── data_10000.png │ │ │ ├── data_1000000.png │ │ │ └── data_origin.png │ │ └── sum_tree.py │ ├── 02 KNN & KD-tree │ │ ├── README.md │ │ ├── kd_tree.py │ │ └── knn_basic.py │ └── README.md └── README.md ├── kyushikmin_tf1 ├── 01_Deep_Q_Network.py ├── 02_Double_Deep_Q_Network.py ├── 03_Prioritized_Experience_Replay.py ├── 04_Dueling_Deep_Q_Network.py ├── 05_NoisyNet_DQN.py ├── 06_C51.py ├── 07_MultiStep_DQN.py ├── 09_Deep_Recurrent_Q_Network.py ├── 10_QR_DQN.py ├── 11_IQN.py ├── 12_ICM_DQN.py ├── 13_RND_DQN.py ├── DQN_GAMES │ ├── QarSim_file │ │ ├── Host.png │ │ ├── KTngbaGTq.gif │ │ ├── Obstacle_1.png │ │ ├── Remote_1.png │ │ ├── Remote_2.png │ │ ├── Remote_3.png │ │ ├── Remote_4.png │ │ ├── Remote_5.png │ │ ├── Remote_6.png │ │ ├── Small_Rock_furniture_icon.png │ │ ├── goal.png │ │ ├── icon.png │ │ ├── icon_resize.png │ │ ├── icon_resize2.png │ │ └── rock_icon.png │ ├── Qarsim.py │ ├── Qarsim.pyc │ ├── __pycache__ │ │ ├── breakout.cpython-35.pyc │ │ ├── breakout.cpython-36.pyc │ │ ├── dodge.cpython-35.pyc │ │ ├── dodge.cpython-36.pyc │ │ ├── dot.cpython-35.pyc │ │ ├── dot.cpython-36.pyc │ │ ├── dot_test.cpython-35.pyc │ │ ├── dot_test.cpython-36.pyc │ │ ├── easy_grid.cpython-35.pyc │ │ ├── pong.cpython-35.pyc │ │ ├── pong.cpython-36.pyc │ │ ├── pong_test.cpython-35.pyc │ │ ├── tetris.cpython-35.pyc │ │ ├── tetris.cpython-36.pyc │ │ ├── wormy.cpython-35.pyc │ │ └── wormy.cpython-36.pyc │ ├── breakout.PNG │ ├── breakout.py │ ├── breakout.pyc │ ├── debug.log │ ├── dodge.PNG │ ├── dodge.py │ ├── dot.py │ ├── dot.pyc │ ├── dot_game.PNG │ ├── dot_test.PNG │ ├── dot_test.py │ ├── dot_test.pyc │ ├── easy_grid.png │ ├── easy_grid.py │ ├── pong.PNG │ ├── pong.py │ ├── pong.pyc │ ├── pong_test.PNG │ ├── pong_test.py │ ├── tetris.PNG │ ├── tetris.py │ ├── tetris.pyc │ ├── wormy.png │ ├── wormy.py │ └── wormy.pyc ├── Environment_sample.py ├── Parameters.py └── README.md └── seonghwan └── README.md /Jung_Kyung_hoon/Readme.md: -------------------------------------------------------------------------------- 1 | ## Implementation framework: Pytorch 2 | -------------------------------------------------------------------------------- /Jung_Kyung_hoon/Value_Based/DoubleDQN/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/Jung_Kyung_hoon/Value_Based/DoubleDQN/agent.py -------------------------------------------------------------------------------- /Jung_Kyung_hoon/Value_Based/DoubleDQN/qnetwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/Jung_Kyung_hoon/Value_Based/DoubleDQN/qnetwork.py -------------------------------------------------------------------------------- /Jung_Kyung_hoon/Value_Based/DoubleDQN/replay_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/Jung_Kyung_hoon/Value_Based/DoubleDQN/replay_buffer.py -------------------------------------------------------------------------------- /Jung_Kyung_hoon/Value_Based/DoubleDQN/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/Jung_Kyung_hoon/Value_Based/DoubleDQN/train.py -------------------------------------------------------------------------------- /Jung_Kyung_hoon/Value_Based/DuelingDQN/Vanila_DQN.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/Jung_Kyung_hoon/Value_Based/DuelingDQN/Vanila_DQN.ipynb -------------------------------------------------------------------------------- /Jung_Kyung_hoon/Value_Based/DuelingDQN/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/Jung_Kyung_hoon/Value_Based/DuelingDQN/agent.py -------------------------------------------------------------------------------- /Jung_Kyung_hoon/Value_Based/DuelingDQN/qnetwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/Jung_Kyung_hoon/Value_Based/DuelingDQN/qnetwork.py -------------------------------------------------------------------------------- /Jung_Kyung_hoon/Value_Based/DuelingDQN/replay_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/Jung_Kyung_hoon/Value_Based/DuelingDQN/replay_buffer.py -------------------------------------------------------------------------------- /Jung_Kyung_hoon/Value_Based/DuelingDQN/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/Jung_Kyung_hoon/Value_Based/DuelingDQN/train.py -------------------------------------------------------------------------------- /Jung_Kyung_hoon/Value_Based/PER/1_dim_state/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/Jung_Kyung_hoon/Value_Based/PER/1_dim_state/agent.py -------------------------------------------------------------------------------- /Jung_Kyung_hoon/Value_Based/PER/1_dim_state/qnetwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/Jung_Kyung_hoon/Value_Based/PER/1_dim_state/qnetwork.py -------------------------------------------------------------------------------- /Jung_Kyung_hoon/Value_Based/PER/1_dim_state/replay_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/Jung_Kyung_hoon/Value_Based/PER/1_dim_state/replay_buffer.py -------------------------------------------------------------------------------- /Jung_Kyung_hoon/Value_Based/PER/1_dim_state/segment_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/Jung_Kyung_hoon/Value_Based/PER/1_dim_state/segment_tree.py -------------------------------------------------------------------------------- /Jung_Kyung_hoon/Value_Based/PER/1_dim_state/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/Jung_Kyung_hoon/Value_Based/PER/1_dim_state/train.py -------------------------------------------------------------------------------- /Jung_Kyung_hoon/Value_Based/PER/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/Jung_Kyung_hoon/Value_Based/PER/agent.py -------------------------------------------------------------------------------- /Jung_Kyung_hoon/Value_Based/PER/qnetwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/Jung_Kyung_hoon/Value_Based/PER/qnetwork.py -------------------------------------------------------------------------------- /Jung_Kyung_hoon/Value_Based/PER/replay_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/Jung_Kyung_hoon/Value_Based/PER/replay_buffer.py -------------------------------------------------------------------------------- /Jung_Kyung_hoon/Value_Based/PER/segment_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/Jung_Kyung_hoon/Value_Based/PER/segment_tree.py -------------------------------------------------------------------------------- /Jung_Kyung_hoon/Value_Based/PER/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/Jung_Kyung_hoon/Value_Based/PER/train.py -------------------------------------------------------------------------------- /Jung_Kyung_hoon/Value_Based/Vanila_DQN/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/Jung_Kyung_hoon/Value_Based/Vanila_DQN/agent.py -------------------------------------------------------------------------------- /Jung_Kyung_hoon/Value_Based/Vanila_DQN/qnetwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/Jung_Kyung_hoon/Value_Based/Vanila_DQN/qnetwork.py -------------------------------------------------------------------------------- /Jung_Kyung_hoon/Value_Based/Vanila_DQN/replay_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/Jung_Kyung_hoon/Value_Based/Vanila_DQN/replay_buffer.py -------------------------------------------------------------------------------- /Jung_Kyung_hoon/Value_Based/Vanila_DQN/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/Jung_Kyung_hoon/Value_Based/Vanila_DQN/train.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/README.md -------------------------------------------------------------------------------- /jihun/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jihun/README.md -------------------------------------------------------------------------------- /jihwanpark/README: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /jihwanpark/dqn_per/README: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /jungwoolee_pytorch/00 DQN soft and hard version/DQN_cartpole_SoftTargetUpdate.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/00 DQN soft and hard version/DQN_cartpole_SoftTargetUpdate.ipynb -------------------------------------------------------------------------------- /jungwoolee_pytorch/00 DQN soft and hard version/DQN_cartpole_targetNet.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/00 DQN soft and hard version/DQN_cartpole_targetNet.ipynb -------------------------------------------------------------------------------- /jungwoolee_pytorch/00 DQN soft and hard version/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /jungwoolee_pytorch/01 Double DQN & Multi-step TD/DQN_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/01 Double DQN & Multi-step TD/DQN_network.py -------------------------------------------------------------------------------- /jungwoolee_pytorch/01 Double DQN & Multi-step TD/Double_DQN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/01 Double DQN & Multi-step TD/Double_DQN.py -------------------------------------------------------------------------------- /jungwoolee_pytorch/01 Double DQN & Multi-step TD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/01 Double DQN & Multi-step TD/README.md -------------------------------------------------------------------------------- /jungwoolee_pytorch/01 Double DQN & Multi-step TD/image/Figure_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/01 Double DQN & Multi-step TD/image/Figure_0.png -------------------------------------------------------------------------------- /jungwoolee_pytorch/01 Double DQN & Multi-step TD/image/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /jungwoolee_pytorch/01 Double DQN & Multi-step TD/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/01 Double DQN & Multi-step TD/main.py -------------------------------------------------------------------------------- /jungwoolee_pytorch/01 Double DQN & Multi-step TD/replay_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/01 Double DQN & Multi-step TD/replay_buffer.py -------------------------------------------------------------------------------- /jungwoolee_pytorch/02 PER & Dueling DQN/Double_DQN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/02 PER & Dueling DQN/Double_DQN.py -------------------------------------------------------------------------------- /jungwoolee_pytorch/02 PER & Dueling DQN/DuelingDQN_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/02 PER & Dueling DQN/DuelingDQN_network.py -------------------------------------------------------------------------------- /jungwoolee_pytorch/02 PER & Dueling DQN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/02 PER & Dueling DQN/README.md -------------------------------------------------------------------------------- /jungwoolee_pytorch/02 PER & Dueling DQN/image/Double_Dueling_N.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/02 PER & Dueling DQN/image/Double_Dueling_N.png -------------------------------------------------------------------------------- /jungwoolee_pytorch/02 PER & Dueling DQN/image/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /jungwoolee_pytorch/02 PER & Dueling DQN/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/02 PER & Dueling DQN/main.py -------------------------------------------------------------------------------- /jungwoolee_pytorch/02 PER & Dueling DQN/replay_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/02 PER & Dueling DQN/replay_buffer.py -------------------------------------------------------------------------------- /jungwoolee_pytorch/03 Noisy Network/Double_DQN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/03 Noisy Network/Double_DQN.py -------------------------------------------------------------------------------- /jungwoolee_pytorch/03 Noisy Network/DuelingDQN_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/03 Noisy Network/DuelingDQN_network.py -------------------------------------------------------------------------------- /jungwoolee_pytorch/03 Noisy Network/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/03 Noisy Network/README.md -------------------------------------------------------------------------------- /jungwoolee_pytorch/03 Noisy Network/image/1step_factorised.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/03 Noisy Network/image/1step_factorised.png -------------------------------------------------------------------------------- /jungwoolee_pytorch/03 Noisy Network/image/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /jungwoolee_pytorch/03 Noisy Network/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/03 Noisy Network/main.py -------------------------------------------------------------------------------- /jungwoolee_pytorch/03 Noisy Network/replay_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/03 Noisy Network/replay_buffer.py -------------------------------------------------------------------------------- /jungwoolee_pytorch/04 C51/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/README.md -------------------------------------------------------------------------------- /jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/1_init_01.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/1_init_01.PNG -------------------------------------------------------------------------------- /jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/1_init_02.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/1_init_02.PNG -------------------------------------------------------------------------------- /jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/2_update_01.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/2_update_01.PNG -------------------------------------------------------------------------------- /jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/2_update_02.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/2_update_02.PNG -------------------------------------------------------------------------------- /jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/2_update_03.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/2_update_03.PNG -------------------------------------------------------------------------------- /jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/2_update_04.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/2_update_04.PNG -------------------------------------------------------------------------------- /jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/2_update_05.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/2_update_05.PNG -------------------------------------------------------------------------------- /jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/2_update_06.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/2_update_06.PNG -------------------------------------------------------------------------------- /jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/2_update_07.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/2_update_07.PNG -------------------------------------------------------------------------------- /jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/2_update_08.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/2_update_08.PNG -------------------------------------------------------------------------------- /jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/2_update_09.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/2_update_09.PNG -------------------------------------------------------------------------------- /jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/3_search_01.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/3_search_01.PNG -------------------------------------------------------------------------------- /jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/3_search_02.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/3_search_02.PNG -------------------------------------------------------------------------------- /jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/3_search_03.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/3_search_03.PNG -------------------------------------------------------------------------------- /jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/4_finish_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/4_finish_01.png -------------------------------------------------------------------------------- /jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/data_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/data_100.png -------------------------------------------------------------------------------- /jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/data_1000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/data_1000.png -------------------------------------------------------------------------------- /jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/data_10000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/data_10000.png -------------------------------------------------------------------------------- /jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/data_1000000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/data_1000000.png -------------------------------------------------------------------------------- /jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/data_origin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/images/data_origin.png -------------------------------------------------------------------------------- /jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/sum_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/100 Algorithm_For_RL/01 sum_tree/sum_tree.py -------------------------------------------------------------------------------- /jungwoolee_pytorch/100 Algorithm_For_RL/02 KNN & KD-tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/100 Algorithm_For_RL/02 KNN & KD-tree/README.md -------------------------------------------------------------------------------- /jungwoolee_pytorch/100 Algorithm_For_RL/02 KNN & KD-tree/kd_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/100 Algorithm_For_RL/02 KNN & KD-tree/kd_tree.py -------------------------------------------------------------------------------- /jungwoolee_pytorch/100 Algorithm_For_RL/02 KNN & KD-tree/knn_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/100 Algorithm_For_RL/02 KNN & KD-tree/knn_basic.py -------------------------------------------------------------------------------- /jungwoolee_pytorch/100 Algorithm_For_RL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/100 Algorithm_For_RL/README.md -------------------------------------------------------------------------------- /jungwoolee_pytorch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/jungwoolee_pytorch/README.md -------------------------------------------------------------------------------- /kyushikmin_tf1/01_Deep_Q_Network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/01_Deep_Q_Network.py -------------------------------------------------------------------------------- /kyushikmin_tf1/02_Double_Deep_Q_Network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/02_Double_Deep_Q_Network.py -------------------------------------------------------------------------------- /kyushikmin_tf1/03_Prioritized_Experience_Replay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/03_Prioritized_Experience_Replay.py -------------------------------------------------------------------------------- /kyushikmin_tf1/04_Dueling_Deep_Q_Network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/04_Dueling_Deep_Q_Network.py -------------------------------------------------------------------------------- /kyushikmin_tf1/05_NoisyNet_DQN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/05_NoisyNet_DQN.py -------------------------------------------------------------------------------- /kyushikmin_tf1/06_C51.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/06_C51.py -------------------------------------------------------------------------------- /kyushikmin_tf1/07_MultiStep_DQN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/07_MultiStep_DQN.py -------------------------------------------------------------------------------- /kyushikmin_tf1/09_Deep_Recurrent_Q_Network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/09_Deep_Recurrent_Q_Network.py -------------------------------------------------------------------------------- /kyushikmin_tf1/10_QR_DQN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/10_QR_DQN.py -------------------------------------------------------------------------------- /kyushikmin_tf1/11_IQN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/11_IQN.py -------------------------------------------------------------------------------- /kyushikmin_tf1/12_ICM_DQN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/12_ICM_DQN.py -------------------------------------------------------------------------------- /kyushikmin_tf1/13_RND_DQN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/13_RND_DQN.py -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/QarSim_file/Host.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/QarSim_file/Host.png -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/QarSim_file/KTngbaGTq.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/QarSim_file/KTngbaGTq.gif -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/QarSim_file/Obstacle_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/QarSim_file/Obstacle_1.png -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/QarSim_file/Remote_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/QarSim_file/Remote_1.png -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/QarSim_file/Remote_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/QarSim_file/Remote_2.png -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/QarSim_file/Remote_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/QarSim_file/Remote_3.png -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/QarSim_file/Remote_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/QarSim_file/Remote_4.png -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/QarSim_file/Remote_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/QarSim_file/Remote_5.png -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/QarSim_file/Remote_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/QarSim_file/Remote_6.png -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/QarSim_file/Small_Rock_furniture_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/QarSim_file/Small_Rock_furniture_icon.png -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/QarSim_file/goal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/QarSim_file/goal.png -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/QarSim_file/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/QarSim_file/icon.png -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/QarSim_file/icon_resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/QarSim_file/icon_resize.png -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/QarSim_file/icon_resize2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/QarSim_file/icon_resize2.png -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/QarSim_file/rock_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/QarSim_file/rock_icon.png -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/Qarsim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/Qarsim.py -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/Qarsim.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/Qarsim.pyc -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/__pycache__/breakout.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/__pycache__/breakout.cpython-35.pyc -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/__pycache__/breakout.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/__pycache__/breakout.cpython-36.pyc -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/__pycache__/dodge.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/__pycache__/dodge.cpython-35.pyc -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/__pycache__/dodge.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/__pycache__/dodge.cpython-36.pyc -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/__pycache__/dot.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/__pycache__/dot.cpython-35.pyc -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/__pycache__/dot.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/__pycache__/dot.cpython-36.pyc -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/__pycache__/dot_test.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/__pycache__/dot_test.cpython-35.pyc -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/__pycache__/dot_test.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/__pycache__/dot_test.cpython-36.pyc -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/__pycache__/easy_grid.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/__pycache__/easy_grid.cpython-35.pyc -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/__pycache__/pong.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/__pycache__/pong.cpython-35.pyc -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/__pycache__/pong.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/__pycache__/pong.cpython-36.pyc -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/__pycache__/pong_test.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/__pycache__/pong_test.cpython-35.pyc -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/__pycache__/tetris.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/__pycache__/tetris.cpython-35.pyc -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/__pycache__/tetris.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/__pycache__/tetris.cpython-36.pyc -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/__pycache__/wormy.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/__pycache__/wormy.cpython-35.pyc -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/__pycache__/wormy.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/__pycache__/wormy.cpython-36.pyc -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/breakout.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/breakout.PNG -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/breakout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/breakout.py -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/breakout.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/breakout.pyc -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/debug.log -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/dodge.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/dodge.PNG -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/dodge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/dodge.py -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/dot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/dot.py -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/dot.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/dot.pyc -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/dot_game.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/dot_game.PNG -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/dot_test.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/dot_test.PNG -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/dot_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/dot_test.py -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/dot_test.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/dot_test.pyc -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/easy_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/easy_grid.png -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/easy_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/easy_grid.py -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/pong.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/pong.PNG -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/pong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/pong.py -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/pong.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/pong.pyc -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/pong_test.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/pong_test.PNG -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/pong_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/pong_test.py -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/tetris.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/tetris.PNG -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/tetris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/tetris.py -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/tetris.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/tetris.pyc -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/wormy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/wormy.png -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/wormy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/wormy.py -------------------------------------------------------------------------------- /kyushikmin_tf1/DQN_GAMES/wormy.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/DQN_GAMES/wormy.pyc -------------------------------------------------------------------------------- /kyushikmin_tf1/Environment_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/Environment_sample.py -------------------------------------------------------------------------------- /kyushikmin_tf1/Parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/Parameters.py -------------------------------------------------------------------------------- /kyushikmin_tf1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeejwUniverse/following_deepmid/HEAD/kyushikmin_tf1/README.md -------------------------------------------------------------------------------- /seonghwan/README.md: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------