Deep Learning
Deep Learning uses multi-layered neural networks to learn representations of data with multiple levels of abstraction. It drives modern AI advances in computer vision, NLP, and more.
Neural Networks
A simple feed-forward neural network consists of an input layer, one or more hidden layers, and an output layer.
import tensorflow as tf
model = tf.keras.Sequential([
tf.keras.layers.Dense(128, activation='relu'),
tf.keras.layers.Dense(10, activation='softmax')
])
Projects
GPT-3 Content Generator
Generates blog articles using OpenAI's GPT-3 API (Requires API Key).
Hand Gesture Recognition
CV Backend Req.




