Update file logger.py
Browse files
logger.py
CHANGED
|
@@ -20,7 +20,7 @@ class Wandb:
|
|
| 20 |
|
| 21 |
|
| 22 |
def init(self):
|
| 23 |
-
wandb.init(self.project, self.entity, self.name, reinit=True, config={})
|
| 24 |
|
| 25 |
def __call__(self, args):
|
| 26 |
wandb.log(args)
|
|
|
|
| 20 |
|
| 21 |
|
| 22 |
def init(self):
|
| 23 |
+
wandb.init(project=self.project, entity=self.entity, name=self.name, reinit=True, config={})
|
| 24 |
|
| 25 |
def __call__(self, args):
|
| 26 |
wandb.log(args)
|