├── .gitignore ├── GAN-fashion-MNIST ├── README.md ├── __init__.py ├── gan.py ├── imgs │ ├── D_loss.png │ ├── G_loss.png │ ├── fashion-mnist │ │ ├── D_loss.png │ │ ├── G_loss.png │ │ ├── step-000.png │ │ ├── step-1000.png │ │ ├── step-17000.png │ │ ├── step-2000.png │ │ ├── step-29000.png │ │ ├── step-3000.png │ │ ├── step-4000.png │ │ ├── step-44000.png │ │ ├── step-62000.png │ │ └── train.gif │ ├── mnist │ │ ├── D_loss.png │ │ ├── G_loss.png │ │ ├── step-000.png │ │ ├── step-1000.png │ │ ├── step-13000.png │ │ ├── step-15000.png │ │ ├── step-16000.png │ │ ├── step-2000.png │ │ ├── step-25000.png │ │ ├── step-3000.png │ │ ├── step-37000.png │ │ ├── step-4000.png │ │ ├── step-50000.png │ │ └── train.gif │ ├── step-000.png │ ├── step-1000.png │ ├── step-2000.png │ ├── step-3000.png │ ├── step-4000.png │ ├── step-44000.png │ ├── step-62000.png │ ├── train.gif │ ├── vanilla_gan_arch.png │ └── vanilla_gan_detailed_arch.png └── utils.py ├── GoogleDevMLRecipes ├── 2 │ ├── iris.pdf │ └── src.py ├── 5 │ └── src.py ├── 6 │ ├── label_image.py │ └── test_examples │ │ ├── 201ce94e7998a27257cdc2426ae7060c.jpg │ │ └── brilliant-light-white-rose-1920x1200-photo-dsc09528.jpg └── README.md ├── README.md ├── exploring-MNIST ├── README.md └── __init__.py ├── exploring-census-dataset ├── .ipynb_checkpoints │ └── Exploring Census Dataset with Facets and LIME-checkpoint.ipynb └── Exploring Census Dataset with Facets and LIME.ipynb └── exploring-spiral-dataset ├── .ipynb_checkpoints └── tensorflow-spiral-checkpoint.ipynb └── tensorflow-spiral.ipynb /.gitignore: -------------------------------------------------------------------------------- 1 | *.gz 2 | exploring-census-dataset/graphs/* 3 | 4 | -------------------------------------------------------------------------------- /GAN-fashion-MNIST/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/README.md -------------------------------------------------------------------------------- /GAN-fashion-MNIST/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GAN-fashion-MNIST/gan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/gan.py -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/D_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/D_loss.png -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/G_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/G_loss.png -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/fashion-mnist/D_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/fashion-mnist/D_loss.png -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/fashion-mnist/G_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/fashion-mnist/G_loss.png -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/fashion-mnist/step-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/fashion-mnist/step-000.png -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/fashion-mnist/step-1000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/fashion-mnist/step-1000.png -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/fashion-mnist/step-17000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/fashion-mnist/step-17000.png -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/fashion-mnist/step-2000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/fashion-mnist/step-2000.png -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/fashion-mnist/step-29000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/fashion-mnist/step-29000.png -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/fashion-mnist/step-3000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/fashion-mnist/step-3000.png -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/fashion-mnist/step-4000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/fashion-mnist/step-4000.png -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/fashion-mnist/step-44000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/fashion-mnist/step-44000.png -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/fashion-mnist/step-62000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/fashion-mnist/step-62000.png -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/fashion-mnist/train.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/fashion-mnist/train.gif -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/mnist/D_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/mnist/D_loss.png -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/mnist/G_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/mnist/G_loss.png -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/mnist/step-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/mnist/step-000.png -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/mnist/step-1000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/mnist/step-1000.png -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/mnist/step-13000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/mnist/step-13000.png -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/mnist/step-15000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/mnist/step-15000.png -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/mnist/step-16000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/mnist/step-16000.png -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/mnist/step-2000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/mnist/step-2000.png -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/mnist/step-25000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/mnist/step-25000.png -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/mnist/step-3000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/mnist/step-3000.png -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/mnist/step-37000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/mnist/step-37000.png -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/mnist/step-4000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/mnist/step-4000.png -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/mnist/step-50000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/mnist/step-50000.png -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/mnist/train.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/mnist/train.gif -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/step-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/step-000.png -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/step-1000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/step-1000.png -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/step-2000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/step-2000.png -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/step-3000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/step-3000.png -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/step-4000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/step-4000.png -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/step-44000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/step-44000.png -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/step-62000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/step-62000.png -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/train.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/train.gif -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/vanilla_gan_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/vanilla_gan_arch.png -------------------------------------------------------------------------------- /GAN-fashion-MNIST/imgs/vanilla_gan_detailed_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/imgs/vanilla_gan_detailed_arch.png -------------------------------------------------------------------------------- /GAN-fashion-MNIST/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GAN-fashion-MNIST/utils.py -------------------------------------------------------------------------------- /GoogleDevMLRecipes/2/iris.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GoogleDevMLRecipes/2/iris.pdf -------------------------------------------------------------------------------- /GoogleDevMLRecipes/2/src.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GoogleDevMLRecipes/2/src.py -------------------------------------------------------------------------------- /GoogleDevMLRecipes/5/src.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GoogleDevMLRecipes/5/src.py -------------------------------------------------------------------------------- /GoogleDevMLRecipes/6/label_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GoogleDevMLRecipes/6/label_image.py -------------------------------------------------------------------------------- /GoogleDevMLRecipes/6/test_examples/201ce94e7998a27257cdc2426ae7060c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GoogleDevMLRecipes/6/test_examples/201ce94e7998a27257cdc2426ae7060c.jpg -------------------------------------------------------------------------------- /GoogleDevMLRecipes/6/test_examples/brilliant-light-white-rose-1920x1200-photo-dsc09528.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GoogleDevMLRecipes/6/test_examples/brilliant-light-white-rose-1920x1200-photo-dsc09528.jpg -------------------------------------------------------------------------------- /GoogleDevMLRecipes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/GoogleDevMLRecipes/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/README.md -------------------------------------------------------------------------------- /exploring-MNIST/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/exploring-MNIST/README.md -------------------------------------------------------------------------------- /exploring-MNIST/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exploring-census-dataset/.ipynb_checkpoints/Exploring Census Dataset with Facets and LIME-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/exploring-census-dataset/.ipynb_checkpoints/Exploring Census Dataset with Facets and LIME-checkpoint.ipynb -------------------------------------------------------------------------------- /exploring-census-dataset/Exploring Census Dataset with Facets and LIME.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/exploring-census-dataset/Exploring Census Dataset with Facets and LIME.ipynb -------------------------------------------------------------------------------- /exploring-spiral-dataset/.ipynb_checkpoints/tensorflow-spiral-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/exploring-spiral-dataset/.ipynb_checkpoints/tensorflow-spiral-checkpoint.ipynb -------------------------------------------------------------------------------- /exploring-spiral-dataset/tensorflow-spiral.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hereismari/DeepLearning/HEAD/exploring-spiral-dataset/tensorflow-spiral.ipynb --------------------------------------------------------------------------------