Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
1f17514
Update Jupyter notebook metadata: change display name to 'DSI_partici…
ajharris Oct 23, 2025
5c2de6c
Add introductory modules on Deep Learning, Neural Networks, and Recom…
ajharris Oct 24, 2025
1bf9c0e
Implement feature X to enhance user experience and fix bug Y in module Z
ajharris Oct 25, 2025
41280a2
Update lab_2 notebook execution counts and add identity matrix one-ho…
ajharris Oct 25, 2025
35754a8
Fix formatting of identity matrix representation in one-hot encoding …
ajharris Oct 26, 2025
e97175b
Fix formatting of identity matrix representation in one-hot encoding …
ajharris Oct 26, 2025
277f9e8
Fix formatting of identity matrix representation in one-hot encoding …
ajharris Oct 26, 2025
8924b6e
Implement feature X to enhance user experience and fix bug Y in module Z
ajharris Oct 26, 2025
8a5f232
Add summary for Module 2: Neural Networks and Backpropagation, coveri…
ajharris Oct 26, 2025
19374b3
Fix formatting of one-hot encoding example
ajharris Oct 26, 2025
412f516
Finished Lab_3
ajharris Oct 27, 2025
b4edeee
Merge branch 'assignment-one' of https://github.com/ajharris/deep_lea…
ajharris Oct 27, 2025
29d7fb3
2/3 complete assignment 1
ajharris Oct 27, 2025
0db4f9d
partially working Assignment 1
ajharris Oct 27, 2025
2880d60
Assignment 1 notebook for building a vision model with Keras
ajharris Oct 28, 2025
ec6d0c9
Add audio and text slides for GPTutor sessions on Convolutional Neura…
ajharris Oct 29, 2025
1110e4a
Implement feature X to enhance user experience and fix bug Y in module Z
ajharris Oct 29, 2025
7436b74
Refactor lab_5.ipynb: Remove unnecessary output logs, update executio…
ajharris Oct 30, 2025
a8717dd
Merge pull request #2 from ajharris/main
ajharris Oct 30, 2025
97f4d6a
Complete Lab 5
ajharris Oct 30, 2025
efd62fa
Finished Lab 4
ajharris Oct 30, 2025
6ca959a
Lab 4 complete
ajharris Oct 30, 2025
f623d35
added updated slides
ajharris Oct 30, 2025
de2c4c4
Started Lab 6 and assignment two
ajharris Oct 31, 2025
16580ae
Lab 6 complete
ajharris Nov 1, 2025
031e058
Implementing Google Colab
ajharris Nov 1, 2025
a2a3f8a
Processed text embeddings on CUDA
ajharris Nov 1, 2025
79440ce
Created using Colab
ajharris Nov 1, 2025
8a8b833
Cleaned metadata
ajharris Nov 1, 2025
63d0889
cleaned metadata
ajharris Nov 1, 2025
f819604
Updated using Colab
ajharris Nov 1, 2025
4a2d7d5
Clean up Colab metadata in assignment_2.ipynb
ajharris Nov 1, 2025
f46fe95
Updated ipynb
ajharris Nov 1, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
976 changes: 976 additions & 0 deletions 01_materials/labs/.ipynb_checkpoints/lab_1-checkpoint.ipynb

Large diffs are not rendered by default.

27 changes: 27 additions & 0 deletions 01_materials/labs/lab1test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import os
os.environ["CUDA_VISIBLE_DEVICES"] = "-1"
os.environ["OMP_NUM_THREADS"] = "1"
os.environ["TF_NUM_INTRAOP_THREADS"] = "1"
os.environ["TF_NUM_INTEROP_THREADS"] = "1"

import tensorflow as tf
from tensorflow.keras.models import Sequential
from tensorflow.keras.layers import Dense
from tensorflow.keras.utils import to_categorical
from sklearn.datasets import load_digits
from sklearn.model_selection import train_test_split

digits = load_digits()
X = digits.data
y = to_categorical(digits.target)
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2)

model = Sequential([
Dense(64, activation="relu", input_shape=(64,)),
Dense(10, activation="softmax")
])
model.compile(optimizer="adam", loss="categorical_crossentropy", metrics=["accuracy"])

print("Starting training…")
model.fit(X_train, y_train, epochs=2, batch_size=32, validation_split=0.2)
print("Done")
1,117 changes: 1,002 additions & 115 deletions 01_materials/labs/lab_1.ipynb

Large diffs are not rendered by default.

790 changes: 715 additions & 75 deletions 01_materials/labs/lab_2.ipynb

Large diffs are not rendered by default.

Loading