my_project.train_exp1

Experimental configuration parameters for a specific training run.

This file is intended to store a set of hyperparameters for a particular experiment (e.g., exp1). It is not currently used by the main training script but serves as an example of how to manage different experimental setups.

 1"""
 2Experimental configuration parameters for a specific training run.
 3
 4This file is intended to store a set of hyperparameters for a particular
 5experiment (e.g., `exp1`). It is not currently used by the main training
 6script but serves as an example of how to manage different experimental setups.
 7"""
 8
 9EXP_PARAMS = {
10    "batch_size": 64,
11    "lr": 0.001,
12    "epochs": 10
13}
EXP_PARAMS = {'batch_size': 64, 'lr': 0.001, 'epochs': 10}