File size: 458 Bytes
079c32c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
from dataclasses import dataclass
import numpy as np
@dataclass
class TrainingReturn:
'''
Attributions
wandb_url: The weight & biases (wandb) project url of the trainning experiment.
'''
wandb_url: str
@dataclass
class EvalReturn:
'''
Attributions
eval_value: The mean of evaluation return.
eval_value_std: The standard deviation of evaluation return.
'''
eval_value: np.float32
eval_value_std: np.float32
|