Update file trainer.py
Browse files- trainer.py +3 -0
trainer.py
CHANGED
|
@@ -8,6 +8,9 @@ class Trainer:
|
|
| 8 |
def __init__(self, config: Config):
|
| 9 |
self.__dict__ = dict(config.__dict__)
|
| 10 |
|
|
|
|
|
|
|
|
|
|
| 11 |
#self.wandb = Wandb(config.wandb)
|
| 12 |
|
| 13 |
print(f"model config: {model}")
|
|
|
|
| 8 |
def __init__(self, config: Config):
|
| 9 |
self.__dict__ = dict(config.__dict__)
|
| 10 |
|
| 11 |
+
print(f"self.dict: {self.__dict__}")
|
| 12 |
+
print(f"locals: {locals()}")
|
| 13 |
+
|
| 14 |
#self.wandb = Wandb(config.wandb)
|
| 15 |
|
| 16 |
print(f"model config: {model}")
|