Residual Model

This commit is contained in:
Si11ium
2020-05-13 14:55:57 +02:00
parent 7f79b62ee0
commit 68084d42a2
3 changed files with 8 additions and 2 deletions

View File

@ -105,6 +105,7 @@ class Config(ConfigParser, ABC):
params.update(self.train.__dict__)
assert all(key not in list(params.keys()) for key in self.data.__dict__)
params.update(self.data.__dict__)
params.update(version=self.version)
params.update(exp_path=str(self.exp_path), exp_fingerprint=str(self.fingerprint))
return params

View File

@ -64,7 +64,7 @@ class Logger(LightningLoggerBase, ABC):
api_key=self.config.project.neptune_key,
experiment_name=self.name,
project_name=self.project_name,
upload_source_files=list())
params=self.config.model_paramters)
self.neptunelogger = NeptuneLogger(**self._neptune_kwargs)
self.testtubelogger = TestTubeLogger(**self._testtube_kwargs)
self.log_config_as_ini()