baa3284-capstone-project
Science Score: 44.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (13.5%) to scientific vocabulary
Repository
Basic Info
- Host: GitHub
- Owner: robotictang
- License: apache-2.0
- Language: Jupyter Notebook
- Default Branch: main
- Size: 79.8 MB
Statistics
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
- Releases: 0
Metadata Files
README.md
BAA3284: Capstone Project
Python and Applications of Deep Neural Networks
Instructor: Dr Tang Tiong Yew
The content of this course changes as technology evolves, to keep up to date with changes follow me on GitHub.
Course Description
Deep learning is a group of exciting new technologies for neural networks. Through a combination of advanced training techniques and neural network architectural components, it is now possible to create neural networks that can handle tabular data, images, text, and audio as both input and output. Deep learning allows a neural network to learn hierarchies of information in a way that is like the function of the human brain. This course will introduce the student to classic neural network structures, Convolution Neural Networks (CNN), Long Short-Term Memory (LSTM), Gated Recurrent Neural Networks (GRU), General Adversarial Networks (GAN) and reinforcement learning. Application of these architectures to computer vision, time series, security, natural language processing (NLP), and data generation will be covered. High Performance Computing (HPC) aspects will demonstrate how deep learning can be leveraged both on graphical processing units (GPUs), as well as grids. Focus is primarily upon the application of deep learning to problems, with some introduction to mathematical foundations. Students will use the Python programming language to implement deep learning using Google TensorFlow and Keras. It is not necessary to know Python prior to this course; however, familiarity of at least one programming language is assumed. This course will be delivered in a hybrid format that includes both classroom and online instruction.
Textbook
The original author of this code was contributed by Jeff Heaton and the code is then adapted to be used in this course with Apache License Version 2.0. This same material is also available in book format. The course textbook is Applications of Deep Neural networks with Keras, ISBN 9798416344269.
If you would like to cite the material from this course/book, please use the following BibTex citation:
@misc{heaton2020applications,
title={Applications of Deep Neural Networks},
author={Jeff Heaton},
year={2020},
eprint={2009.05673},
archivePrefix={arXiv},
primaryClass={cs.LG}
}
Objectives
- Explain how neural networks (deep and otherwise) compare to other machine learning models.
- Determine when a deep neural network would be a good choice for a particular problem.
- Demonstrate your understanding of the material through a capstone project uploaded to GitHub.
Module|Content
---|---
Module 1
| Module 1: Python Preliminaries
- Part 1.1: Course Overview
- Part 1.2: Introduction to Python
- Part 1.3: Python Lists, Dictionaries, Sets & JSON
- Part 1.4: File Handling
- Part 1.5: Functions, Lambdas, and Map/ReducePython Preliminaries
| Module 2: Python for Machine Learning
- Part 2.1: Introduction to Pandas for Deep Learning
- Part 2.2: Encoding Categorical Values in Pandas
- Part 2.3: Grouping, Sorting, and Shuffling
- Part 2.4: Using Apply and Map in Pandas
- Part 2.5: Feature Engineering in Padas
| Module 3: TensorFlow and Keras for Neural Networks
- Part 3.1: Deep Learning and Neural Network Introduction
- Part 3.2: Introduction to Tensorflow & Keras
- Part 3.3: Saving and Loading a Keras Neural Network
- Part 3.4: Early Stopping in Keras to Prevent Overfitting
- Part 3.5: Extracting Keras Weights and Manual Neural Network Calculation
|Module 4: Training for Tabular Data
- Part 4.1: Encoding a Feature Vector for Keras Deep Learning
- Part 4.2: Keras Multiclass Classification for Deep Neural Networks with ROC and AUC
- Part 4.3: Keras Regression for Deep Neural Networks with RMSE
- Part 4.4: Backpropagation, Nesterov Momentum, and ADAM Training
- Part 4.5: Neural Network RMSE and Log Loss Error Calculation from Scratch
| Module 5: Regularization and Dropout
- Part 5.1: Introduction to Regularization: Ridge and Lasso
- Part 5.2: Using K-Fold Cross Validation with Keras
- Part 5.3: Using L1 and L2 Regularization with Keras to Decrease Overfitting
- Part 5.4: Drop Out for Keras to Decrease Overfitting
- Part 5.5: Bootstrapping and Benchmarking Hyperparameters
| Module 6: CNN for Vision
- Part 6.1: Image Processing in Python
- Part 6.2: Using Convolutional Networks with Keras
- Part 6.3: Using Pretrained Neural Networks
- Part 6.4: Looking at Keras Generators and Image Augmentation
- Part 6.5: Recognizing Multiple Images with YOLOv5
| Module 7: Generative Adversarial Networks (GANs)
- Part 7.1: Introduction to GANS for Image and Data Generation
- Part 7.2: Train StyleGAN3 with your Own Images
- Part 7.3: Exploring the StyleGAN Latent Vector
- Part 7.4: GANS to Enhance Old Photographs Deoldify
- Part 7.5: GANs for Tabular Synthetic Data Generation
| Module 8: Kaggle
- Part 8.1: Introduction to Kaggle
- Part 8.2: Building Ensembles with Scikit-Learn and Keras
- Part 8.3: How Should you Architect Your Keras Neural Network: Hyperparameters
- Part 8.4: Bayesian Hyperparameter Optimization for Keras
- Part 8.5: Current Semester's Kaggle
| Module 9: Transfer Learning
- Part 9.1: Introduction to Keras Transfer Learning
- Part 9.2: Keras Transfer Learning for Computer Vision
- Part 9.3: Transfer Learning for NLP with Keras
- Part 9.4: Transfer Learning for Facial Feature Recognition
- Part 9.5: Transfer Learning for Style Transfer
| Module 10: Time Series in Keras
- Part 10.1: Time Series Data Encoding for Deep Learning, Keras
- Part 10.2: Programming LSTM with Keras and TensorFlow
- Part 10.3: Text Generation with Keras
- Part 10.4: Introduction to Transformers
- Part 10.5: Transformers for Timeseries
| Module 11: Natural Language Processing
- Part 11.1: Hugging Face Introduction
- Part 11.2: Hugging Face Tokenizers
- Part 11.3: Hugging Face Data Sets
- Part 11.4: Training a Model in Hugging Face
- Part 11.5: What are Embedding Layers in Keras
| Module 12: Reinforcement Learning
- Kaggle Assignment due: 11/29/2022 (approx 4-6PM, due to Kaggle GMT timezone)
- Part 12.1: Introduction to the OpenAI Gym
- Part 12.2: Introduction to Q-Learning for Keras
- Part 12.3: Keras Q-Learning in the OpenAI Gym
- Part 12.4: Atari Games with Keras Neural Networks
- Part 12.5: Application of Reinforcement Learning
| Module 13: Deployment and Monitoring
- Part 13.1: Flask and Deep Learning Web Services
- Part 13.2: Interrupting and Continuing Training
- Part 13.3: Using a Keras Deep Neural Network with a Web Application
- Part 13.4: When to Retrain Your Neural Network
- Part 13.5: Tensor Processing Units (TPUs)
Datasets
Videos
Fundamentals of Deep learning
Previous LSTM Approaches
State-of-the-art Transformers Approaches
CPU VS GPU VS TPU (Training Speed Test)
Video Summary: CPU: 45 min , GPU: 55 sec, TPU: 15sec
Google Colab VS AWS SageMaker Studio Lab
Tips to Use Colab
Jupyter Notebook Top 12 Extensions
Owner
- Name: Tang Tiong Yew
- Login: robotictang
- Kind: user
- Location: Malaysia
- Company: Monash University
- Website: tangwebpage.appspot.com
- Repositories: 10
- Profile: https://github.com/robotictang
Citation (CITATION.cff)
cff-version: 1.2.0 message: "If you use this software, please cite it as below." authors: - family-names: "Jeff" given-names: "Heaton" orcid: "https://orcid.org/0000-0003-1496-4049" title: "Applications of Deep Neural Networks" version: 2021.08.01 date-released: 2021-08-01 url: "https://arxiv.org/abs/2009.05673"