├── .gitattributes ├── .gitignore ├── README.md ├── genetic_models_and_neural_networks ├── README.md ├── nn_with_gm.ipynb ├── paper_Stathakis.pdf ├── rand_dict └── train.csv ├── gradient_policy_and_actor_critic ├── Acrobot with A2C.ipynb ├── Acrobot with Actor-Critic.ipynb ├── Cart-Pole with Policy Gradient.ipynb ├── Continuous Mountain Car with DDPG.ipynb └── README.md ├── mdn ├── README.md ├── mdn.ipynb ├── mdn_low_level_api.ipynb └── mdn_with_tensorboard.ipynb ├── mnist ├── MNIST with TFv1.ipynb ├── MNIST_data │ ├── t10k-images-idx3-ubyte.gz │ ├── t10k-labels-idx1-ubyte.gz │ ├── train-images-idx3-ubyte.gz │ └── train-labels-idx1-ubyte.gz ├── README.md ├── best_model.ckpt.data-00000-of-00001 ├── best_model.ckpt.index ├── best_model.ckpt.meta ├── checkpoint └── roc_graph.png ├── q_learning_and_dqn ├── Q Learning and Deep Q Network.ipynb ├── README.md └── board.jpg └── roc_graph ├── README.md └── roc_graph.ipynb /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakedzy/notebooks/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakedzy/notebooks/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakedzy/notebooks/HEAD/README.md -------------------------------------------------------------------------------- /genetic_models_and_neural_networks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakedzy/notebooks/HEAD/genetic_models_and_neural_networks/README.md -------------------------------------------------------------------------------- /genetic_models_and_neural_networks/nn_with_gm.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakedzy/notebooks/HEAD/genetic_models_and_neural_networks/nn_with_gm.ipynb -------------------------------------------------------------------------------- /genetic_models_and_neural_networks/paper_Stathakis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakedzy/notebooks/HEAD/genetic_models_and_neural_networks/paper_Stathakis.pdf -------------------------------------------------------------------------------- /genetic_models_and_neural_networks/rand_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakedzy/notebooks/HEAD/genetic_models_and_neural_networks/rand_dict -------------------------------------------------------------------------------- /genetic_models_and_neural_networks/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakedzy/notebooks/HEAD/genetic_models_and_neural_networks/train.csv -------------------------------------------------------------------------------- /gradient_policy_and_actor_critic/Acrobot with A2C.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakedzy/notebooks/HEAD/gradient_policy_and_actor_critic/Acrobot with A2C.ipynb -------------------------------------------------------------------------------- /gradient_policy_and_actor_critic/Acrobot with Actor-Critic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakedzy/notebooks/HEAD/gradient_policy_and_actor_critic/Acrobot with Actor-Critic.ipynb -------------------------------------------------------------------------------- /gradient_policy_and_actor_critic/Cart-Pole with Policy Gradient.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakedzy/notebooks/HEAD/gradient_policy_and_actor_critic/Cart-Pole with Policy Gradient.ipynb -------------------------------------------------------------------------------- /gradient_policy_and_actor_critic/Continuous Mountain Car with DDPG.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakedzy/notebooks/HEAD/gradient_policy_and_actor_critic/Continuous Mountain Car with DDPG.ipynb -------------------------------------------------------------------------------- /gradient_policy_and_actor_critic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakedzy/notebooks/HEAD/gradient_policy_and_actor_critic/README.md -------------------------------------------------------------------------------- /mdn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakedzy/notebooks/HEAD/mdn/README.md -------------------------------------------------------------------------------- /mdn/mdn.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakedzy/notebooks/HEAD/mdn/mdn.ipynb -------------------------------------------------------------------------------- /mdn/mdn_low_level_api.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakedzy/notebooks/HEAD/mdn/mdn_low_level_api.ipynb -------------------------------------------------------------------------------- /mdn/mdn_with_tensorboard.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakedzy/notebooks/HEAD/mdn/mdn_with_tensorboard.ipynb -------------------------------------------------------------------------------- /mnist/MNIST with TFv1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakedzy/notebooks/HEAD/mnist/MNIST with TFv1.ipynb -------------------------------------------------------------------------------- /mnist/MNIST_data/t10k-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakedzy/notebooks/HEAD/mnist/MNIST_data/t10k-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /mnist/MNIST_data/t10k-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakedzy/notebooks/HEAD/mnist/MNIST_data/t10k-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /mnist/MNIST_data/train-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakedzy/notebooks/HEAD/mnist/MNIST_data/train-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /mnist/MNIST_data/train-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakedzy/notebooks/HEAD/mnist/MNIST_data/train-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /mnist/README.md: -------------------------------------------------------------------------------- 1 | # MNIST Predictions 2 | This always a useful reference :) 3 | -------------------------------------------------------------------------------- /mnist/best_model.ckpt.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakedzy/notebooks/HEAD/mnist/best_model.ckpt.data-00000-of-00001 -------------------------------------------------------------------------------- /mnist/best_model.ckpt.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakedzy/notebooks/HEAD/mnist/best_model.ckpt.index -------------------------------------------------------------------------------- /mnist/best_model.ckpt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakedzy/notebooks/HEAD/mnist/best_model.ckpt.meta -------------------------------------------------------------------------------- /mnist/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakedzy/notebooks/HEAD/mnist/checkpoint -------------------------------------------------------------------------------- /mnist/roc_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakedzy/notebooks/HEAD/mnist/roc_graph.png -------------------------------------------------------------------------------- /q_learning_and_dqn/Q Learning and Deep Q Network.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakedzy/notebooks/HEAD/q_learning_and_dqn/Q Learning and Deep Q Network.ipynb -------------------------------------------------------------------------------- /q_learning_and_dqn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakedzy/notebooks/HEAD/q_learning_and_dqn/README.md -------------------------------------------------------------------------------- /q_learning_and_dqn/board.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakedzy/notebooks/HEAD/q_learning_and_dqn/board.jpg -------------------------------------------------------------------------------- /roc_graph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakedzy/notebooks/HEAD/roc_graph/README.md -------------------------------------------------------------------------------- /roc_graph/roc_graph.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakedzy/notebooks/HEAD/roc_graph/roc_graph.ipynb --------------------------------------------------------------------------------