Skip to content

Commit

Permalink
Update cifar_100_EfficientNet.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sashakolpakov authored Nov 1, 2023
1 parent 29ec2ae commit 8b66329
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cifar_100_EfficientNet.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ def subsample_train(X_train, y_train, num_samples):
#
return X_sub[ind], y_sub[ind]

# We take only 50 samples in each category
# We take only 20 samples in each category

num_samples = 50
num_samples = 20
X_sub, y_sub = subsample_train(X_train, y_train, num_samples)

# Preparing tensors for the training set and labels
Expand Down

0 comments on commit 8b66329

Please sign in to comment.