Skip to content
Open
Changes from all commits
Commits
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
6 changes: 3 additions & 3 deletions dl_keras_codes/dlcodes/mobilenet.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
import matplotlib.pyplot as plt

# Set the path to the train and test folders
train_folder = "Train"
val_folder = "Validation"
test_folder = "Test"
train_folder = "train"
val_folder = "valid"
test_folder = "test"

# Set the number of classes
num_classes = 2
Expand Down