chore: draft new configs
This commit is contained in:
parent
67f620d599
commit
157e061f86
6 changed files with 113 additions and 0 deletions
14
src/experiment_logger/config_logger.py
Normal file
14
src/experiment_logger/config_logger.py
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
from dataclasses import dataclass
|
||||
from typing import Optional
|
||||
|
||||
|
||||
@dataclass
|
||||
class LoggingConfig:
|
||||
track: bool = False
|
||||
wandb_project_name: str = "PPO-Modularity"
|
||||
wandb_entity: Optional[str] = "SEL3-2026-Groep-4"
|
||||
capture_video: bool = False
|
||||
save_model: bool = True
|
||||
checkpoint_frequency: int = 100
|
||||
upload_model: bool = False
|
||||
hf_entity: str = ""
|
||||
Reference in a new issue