flpelerin commited on
Commit
a9599f9
·
1 Parent(s): 55b8f6f

Update 3 files

Browse files

- /wandb.py
- /logger.py
- /trainer.cli.py

Files changed (2) hide show
  1. wandb.py → logger.py +0 -3
  2. trainer.cli.py +1 -1
wandb.py → logger.py RENAMED
@@ -9,9 +9,6 @@ class Wandb:
9
  def __init__(self, config: Config):
10
  self.__dict__ = dict(config.__dict__)
11
 
12
-
13
- print(f"wandb: {wandb}")
14
-
15
  if self.entity == '' or self.project == '' or self.api_key == '':
16
  raise ValueError('Missing required values for either Entity, Project or API Key')
17
 
 
9
  def __init__(self, config: Config):
10
  self.__dict__ = dict(config.__dict__)
11
 
 
 
 
12
  if self.entity == '' or self.project == '' or self.api_key == '':
13
  raise ValueError('Missing required values for either Entity, Project or API Key')
14
 
trainer.cli.py CHANGED
@@ -6,7 +6,7 @@ from argparse import ArgumentParser
6
 
7
  from util import ConfigParser
8
 
9
- from wandb import Wandb
10
 
11
 
12
 
 
6
 
7
  from util import ConfigParser
8
 
9
+ from logger import Wandb
10
 
11
 
12