├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ └── bug_report.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── audio-processing └── pytorch │ └── audio_preprocessing_tutorial.ipynb ├── generative-adversarial-network └── tensorflow │ └── deep_convolutional_gan.ipynb ├── getting-started ├── pytorch │ ├── data_loading_processing.ipynb │ └── tensor_intro.ipynb ├── scikit-learn │ └── handwritten-digit-classifier.ipynb └── tensorflow │ ├── handwritten_digit_classifier.ipynb │ └── image_classification.ipynb ├── image-processing ├── pytorch │ └── object_detection_finetuning.ipynb └── tensorflow │ └── image_classification.ipynb ├── logo.png ├── natural-language-processing ├── pytorch │ └── translation_with_sequence2sequence.ipynb └── tensorflow │ ├── rnn_text_gen.ipynb │ ├── transformer_language_understanding.ipynb │ └── translation_with_sequence2sequence.ipynb ├── reinforcement-learning └── pytorch │ └── deep_q_learning.ipynb └── transfer-learning └── pytorch └── cnn_transfer_learning.ipynb /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notebookexplore/NotebookExplore/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notebookexplore/NotebookExplore/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notebookexplore/NotebookExplore/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notebookexplore/NotebookExplore/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notebookexplore/NotebookExplore/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notebookexplore/NotebookExplore/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notebookexplore/NotebookExplore/HEAD/README.md -------------------------------------------------------------------------------- /audio-processing/pytorch/audio_preprocessing_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notebookexplore/NotebookExplore/HEAD/audio-processing/pytorch/audio_preprocessing_tutorial.ipynb -------------------------------------------------------------------------------- /generative-adversarial-network/tensorflow/deep_convolutional_gan.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notebookexplore/NotebookExplore/HEAD/generative-adversarial-network/tensorflow/deep_convolutional_gan.ipynb -------------------------------------------------------------------------------- /getting-started/pytorch/data_loading_processing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notebookexplore/NotebookExplore/HEAD/getting-started/pytorch/data_loading_processing.ipynb -------------------------------------------------------------------------------- /getting-started/pytorch/tensor_intro.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notebookexplore/NotebookExplore/HEAD/getting-started/pytorch/tensor_intro.ipynb -------------------------------------------------------------------------------- /getting-started/scikit-learn/handwritten-digit-classifier.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notebookexplore/NotebookExplore/HEAD/getting-started/scikit-learn/handwritten-digit-classifier.ipynb -------------------------------------------------------------------------------- /getting-started/tensorflow/handwritten_digit_classifier.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notebookexplore/NotebookExplore/HEAD/getting-started/tensorflow/handwritten_digit_classifier.ipynb -------------------------------------------------------------------------------- /getting-started/tensorflow/image_classification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notebookexplore/NotebookExplore/HEAD/getting-started/tensorflow/image_classification.ipynb -------------------------------------------------------------------------------- /image-processing/pytorch/object_detection_finetuning.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notebookexplore/NotebookExplore/HEAD/image-processing/pytorch/object_detection_finetuning.ipynb -------------------------------------------------------------------------------- /image-processing/tensorflow/image_classification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notebookexplore/NotebookExplore/HEAD/image-processing/tensorflow/image_classification.ipynb -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notebookexplore/NotebookExplore/HEAD/logo.png -------------------------------------------------------------------------------- /natural-language-processing/pytorch/translation_with_sequence2sequence.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notebookexplore/NotebookExplore/HEAD/natural-language-processing/pytorch/translation_with_sequence2sequence.ipynb -------------------------------------------------------------------------------- /natural-language-processing/tensorflow/rnn_text_gen.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notebookexplore/NotebookExplore/HEAD/natural-language-processing/tensorflow/rnn_text_gen.ipynb -------------------------------------------------------------------------------- /natural-language-processing/tensorflow/transformer_language_understanding.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notebookexplore/NotebookExplore/HEAD/natural-language-processing/tensorflow/transformer_language_understanding.ipynb -------------------------------------------------------------------------------- /natural-language-processing/tensorflow/translation_with_sequence2sequence.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notebookexplore/NotebookExplore/HEAD/natural-language-processing/tensorflow/translation_with_sequence2sequence.ipynb -------------------------------------------------------------------------------- /reinforcement-learning/pytorch/deep_q_learning.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notebookexplore/NotebookExplore/HEAD/reinforcement-learning/pytorch/deep_q_learning.ipynb -------------------------------------------------------------------------------- /transfer-learning/pytorch/cnn_transfer_learning.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notebookexplore/NotebookExplore/HEAD/transfer-learning/pytorch/cnn_transfer_learning.ipynb --------------------------------------------------------------------------------