Bias renamed and Model IO / Config module parameters

This commit is contained in:
Si11ium
2020-04-27 17:31:29 +02:00
parent 8497857a57
commit 3e75d73a6b
6 changed files with 35 additions and 14 deletions

View File

@ -1,3 +1,5 @@
from copy import deepcopy
from abc import ABC
from pathlib import Path
@ -109,7 +111,7 @@ class LightningBaseModule(pl.LightningModule, ABC):
def __init__(self, hparams):
super(LightningBaseModule, self).__init__()
self.hparams = hparams
self.hparams = deepcopy(hparams)
# Data loading
# =============================================================================