1
Fork 0

chore: draft new configs

This commit is contained in:
Tibo De Peuter 2026-04-14 21:53:52 +02:00
parent 67f620d599
commit 157e061f86
Signed by: tdpeuter
SSH key fingerprint: SHA256:u/h/LVoqKF1Iz02uOyxe6hcjmoZASCGV2HM0TG9ZMoU
6 changed files with 113 additions and 0 deletions

View 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 = ""