├── .gitattributes ├── .gitignore ├── 1) CNN Review ├── fruit │ ├── cnn_fruit_acc.png │ ├── cnn_fruit_anlatım.py │ ├── cnn_fruit_hist.json │ └── cnn_fruit_loss.png └── mnist │ ├── cnn_mnist.py │ ├── cnn_mnist_acc.png │ ├── cnn_mnist_hist.json │ └── cnn_mnist_loss.png ├── 2) Deep Residual Network ├── CNN_DRN.pdf ├── cnn_anlatim.py └── drn_anlatim.py ├── 3) Transfer Learning ├── cfar10_vgg19 │ ├── transferLearning_vgg19_cfar10.py │ ├── transfer_learning_vgg19_cfar10.json │ ├── transfer_learning_vgg19_cfar10_acc.png │ └── transfer_learning_vgg19_cfar10_loss.png └── fruit_vgg16 │ ├── transfer_learning_fruit_hist.json │ ├── transfer_learning_vgg16_fruit_anlatım.py │ ├── vgg16_accuracy.png │ └── vgg16_loss.png ├── 4) Autoencoders ├── autoencoder_fashion_mnist_loss.png ├── autoencoder_result.png ├── autoencoders_FashionMNIST.py └── autoencoders_hist.json ├── 5) GANs ├── Figure_1.png ├── Figure_2.png ├── Figure_3.png └── gans_.py └── Advance Deep Learning.pptx /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataiteam/Advanced-Deep-Learning/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataiteam/Advanced-Deep-Learning/HEAD/.gitignore -------------------------------------------------------------------------------- /1) CNN Review/fruit/cnn_fruit_acc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataiteam/Advanced-Deep-Learning/HEAD/1) CNN Review/fruit/cnn_fruit_acc.png -------------------------------------------------------------------------------- /1) CNN Review/fruit/cnn_fruit_anlatım.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataiteam/Advanced-Deep-Learning/HEAD/1) CNN Review/fruit/cnn_fruit_anlatım.py -------------------------------------------------------------------------------- /1) CNN Review/fruit/cnn_fruit_hist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataiteam/Advanced-Deep-Learning/HEAD/1) CNN Review/fruit/cnn_fruit_hist.json -------------------------------------------------------------------------------- /1) CNN Review/fruit/cnn_fruit_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataiteam/Advanced-Deep-Learning/HEAD/1) CNN Review/fruit/cnn_fruit_loss.png -------------------------------------------------------------------------------- /1) CNN Review/mnist/cnn_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataiteam/Advanced-Deep-Learning/HEAD/1) CNN Review/mnist/cnn_mnist.py -------------------------------------------------------------------------------- /1) CNN Review/mnist/cnn_mnist_acc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataiteam/Advanced-Deep-Learning/HEAD/1) CNN Review/mnist/cnn_mnist_acc.png -------------------------------------------------------------------------------- /1) CNN Review/mnist/cnn_mnist_hist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataiteam/Advanced-Deep-Learning/HEAD/1) CNN Review/mnist/cnn_mnist_hist.json -------------------------------------------------------------------------------- /1) CNN Review/mnist/cnn_mnist_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataiteam/Advanced-Deep-Learning/HEAD/1) CNN Review/mnist/cnn_mnist_loss.png -------------------------------------------------------------------------------- /2) Deep Residual Network/CNN_DRN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataiteam/Advanced-Deep-Learning/HEAD/2) Deep Residual Network/CNN_DRN.pdf -------------------------------------------------------------------------------- /2) Deep Residual Network/cnn_anlatim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataiteam/Advanced-Deep-Learning/HEAD/2) Deep Residual Network/cnn_anlatim.py -------------------------------------------------------------------------------- /2) Deep Residual Network/drn_anlatim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataiteam/Advanced-Deep-Learning/HEAD/2) Deep Residual Network/drn_anlatim.py -------------------------------------------------------------------------------- /3) Transfer Learning/cfar10_vgg19/transferLearning_vgg19_cfar10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataiteam/Advanced-Deep-Learning/HEAD/3) Transfer Learning/cfar10_vgg19/transferLearning_vgg19_cfar10.py -------------------------------------------------------------------------------- /3) Transfer Learning/cfar10_vgg19/transfer_learning_vgg19_cfar10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataiteam/Advanced-Deep-Learning/HEAD/3) Transfer Learning/cfar10_vgg19/transfer_learning_vgg19_cfar10.json -------------------------------------------------------------------------------- /3) Transfer Learning/cfar10_vgg19/transfer_learning_vgg19_cfar10_acc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataiteam/Advanced-Deep-Learning/HEAD/3) Transfer Learning/cfar10_vgg19/transfer_learning_vgg19_cfar10_acc.png -------------------------------------------------------------------------------- /3) Transfer Learning/cfar10_vgg19/transfer_learning_vgg19_cfar10_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataiteam/Advanced-Deep-Learning/HEAD/3) Transfer Learning/cfar10_vgg19/transfer_learning_vgg19_cfar10_loss.png -------------------------------------------------------------------------------- /3) Transfer Learning/fruit_vgg16/transfer_learning_fruit_hist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataiteam/Advanced-Deep-Learning/HEAD/3) Transfer Learning/fruit_vgg16/transfer_learning_fruit_hist.json -------------------------------------------------------------------------------- /3) Transfer Learning/fruit_vgg16/transfer_learning_vgg16_fruit_anlatım.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataiteam/Advanced-Deep-Learning/HEAD/3) Transfer Learning/fruit_vgg16/transfer_learning_vgg16_fruit_anlatım.py -------------------------------------------------------------------------------- /3) Transfer Learning/fruit_vgg16/vgg16_accuracy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataiteam/Advanced-Deep-Learning/HEAD/3) Transfer Learning/fruit_vgg16/vgg16_accuracy.png -------------------------------------------------------------------------------- /3) Transfer Learning/fruit_vgg16/vgg16_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataiteam/Advanced-Deep-Learning/HEAD/3) Transfer Learning/fruit_vgg16/vgg16_loss.png -------------------------------------------------------------------------------- /4) Autoencoders/autoencoder_fashion_mnist_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataiteam/Advanced-Deep-Learning/HEAD/4) Autoencoders/autoencoder_fashion_mnist_loss.png -------------------------------------------------------------------------------- /4) Autoencoders/autoencoder_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataiteam/Advanced-Deep-Learning/HEAD/4) Autoencoders/autoencoder_result.png -------------------------------------------------------------------------------- /4) Autoencoders/autoencoders_FashionMNIST.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataiteam/Advanced-Deep-Learning/HEAD/4) Autoencoders/autoencoders_FashionMNIST.py -------------------------------------------------------------------------------- /4) Autoencoders/autoencoders_hist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataiteam/Advanced-Deep-Learning/HEAD/4) Autoencoders/autoencoders_hist.json -------------------------------------------------------------------------------- /5) GANs/Figure_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataiteam/Advanced-Deep-Learning/HEAD/5) GANs/Figure_1.png -------------------------------------------------------------------------------- /5) GANs/Figure_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataiteam/Advanced-Deep-Learning/HEAD/5) GANs/Figure_2.png -------------------------------------------------------------------------------- /5) GANs/Figure_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataiteam/Advanced-Deep-Learning/HEAD/5) GANs/Figure_3.png -------------------------------------------------------------------------------- /5) GANs/gans_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataiteam/Advanced-Deep-Learning/HEAD/5) GANs/gans_.py -------------------------------------------------------------------------------- /Advance Deep Learning.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataiteam/Advanced-Deep-Learning/HEAD/Advance Deep Learning.pptx --------------------------------------------------------------------------------