You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In aframev2/projects/train/train/data/base.py and aframev2/train/train/model/base.py instances of self.hparams.{attribute} caused AttributeErrors with errors similar to,
AttributeError: 'AttributeDict' object has no attribute 'data_dir'
It started to work by changing all instances of self.hparams.{attribute} to self.hparams.init_args["{attribute}"]
The text was updated successfully, but these errors were encountered:
In
aframev2/projects/train/train/data/base.py
andaframev2/train/train/model/base.py
instances ofself.hparams.{attribute}
caused AttributeErrors with errors similar to,It started to work by changing all instances of
self.hparams.{attribute}
toself.hparams.init_args["{attribute}"]
The text was updated successfully, but these errors were encountered: