Update file wandb.py
Browse files
wandb.py
CHANGED
|
@@ -8,7 +8,7 @@ from util import Config, RandomCode
|
|
| 8 |
class Wandb:
|
| 9 |
def __init__(self, config: Config):
|
| 10 |
self.__dict__ = dict(config.__dict__)
|
| 11 |
-
locals().update(
|
| 12 |
|
| 13 |
print(f"self: {self}")
|
| 14 |
print(f'self dict: {dict(self.__dict__)}')
|
|
|
|
| 8 |
class Wandb:
|
| 9 |
def __init__(self, config: Config):
|
| 10 |
self.__dict__ = dict(config.__dict__)
|
| 11 |
+
locals().update(self.__dict__)
|
| 12 |
|
| 13 |
print(f"self: {self}")
|
| 14 |
print(f'self dict: {dict(self.__dict__)}')
|