Files
Machine-Learning-Collection/ML/Pytorch/pytorch_lightning/9. Profiler/config.py

16 lines
231 B
Python
Raw Normal View History

# Training hyperparameters
INPUT_SIZE = 784
NUM_CLASSES = 10
LEARNING_RATE = 0.001
BATCH_SIZE = 64
NUM_EPOCHS = 3
# Dataset
DATA_DIR = "dataset/"
NUM_WORKERS = 4
# Compute related
ACCELERATOR = "gpu"
DEVICES = [0]
PRECISION = 16