Spaces:
Runtime error
Runtime error
Update
Browse files- configs.py +3 -3
- requirements.txt +0 -0
configs.py
CHANGED
@@ -8,11 +8,11 @@ from torchvision.models import squeezenet1_0, SqueezeNet1_0_Weights
|
|
8 |
from torchvision.models import squeezenet1_0
|
9 |
# Constants
|
10 |
RANDOM_SEED = 123
|
11 |
-
BATCH_SIZE =
|
12 |
NUM_EPOCHS = 40
|
13 |
-
LEARNING_RATE =
|
14 |
STEP_SIZE = 10
|
15 |
-
GAMMA = 0.
|
16 |
DEVICE = torch.device("cuda:0" if torch.cuda.is_available() else "cpu")
|
17 |
NUM_PRINT = 100
|
18 |
TASK = 1
|
|
|
8 |
from torchvision.models import squeezenet1_0
|
9 |
# Constants
|
10 |
RANDOM_SEED = 123
|
11 |
+
BATCH_SIZE = 16
|
12 |
NUM_EPOCHS = 40
|
13 |
+
LEARNING_RATE = 5.488903014780378e-05
|
14 |
STEP_SIZE = 10
|
15 |
+
GAMMA = 0.3
|
16 |
DEVICE = torch.device("cuda:0" if torch.cuda.is_available() else "cpu")
|
17 |
NUM_PRINT = 100
|
18 |
TASK = 1
|
requirements.txt
CHANGED
Binary files a/requirements.txt and b/requirements.txt differ
|
|