flpelerin commited on
Commit
691312d
·
1 Parent(s): a565dbc

Update file logger.py

Browse files
Files changed (1) hide show
  1. logger.py +1 -5
logger.py CHANGED
@@ -20,11 +20,7 @@ class Wandb:
20
 
21
 
22
  def init(self):
23
- wandb.init(config={
24
- 'project': self.project,
25
- 'entity': self.entity,
26
- 'name': self.name
27
- }, reinit=True)
28
 
29
  def __call__(self, args):
30
  wandb.log(args)
 
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)