torch_hyper_dict
TorchHyperDict
¶
Bases: FileConfig
PyTorch hyperparameter dictionary.
This class extends the FileConfig class to provide a dictionary for storing hyperparameters.
Attributes:
Name | Type | Description |
---|---|---|
filename |
str
|
The name of the file where the hyperparameters are stored. |
Source code in spotpython/hyperdict/torch_hyper_dict.py
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
|
load()
¶
Load the hyperparameters from the file.
Returns:
Type | Description |
---|---|
dict
|
A dictionary containing the hyperparameters. |
Examples: >>> thd = TorchHyperDict() >>> hyperparams = thd.load() >>> print(hyperparams) {‘learning_rate’: 0.001, ‘batch_size’: 32, ‘epochs’: 10}
Source code in spotpython/hyperdict/torch_hyper_dict.py
31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
|