Skip to content

Commit 8b66329

Browse files
Update cifar_100_EfficientNet.py
1 parent 29ec2ae commit 8b66329

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cifar_100_EfficientNet.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ def subsample_train(X_train, y_train, num_samples):
6161
#
6262
return X_sub[ind], y_sub[ind]
6363

64-
# We take only 50 samples in each category
64+
# We take only 20 samples in each category
6565

66-
num_samples = 50
66+
num_samples = 20
6767
X_sub, y_sub = subsample_train(X_train, y_train, num_samples)
6868

6969
# Preparing tensors for the training set and labels

0 commit comments

Comments
 (0)