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 ./in2n/in2n_pipeline.py line 38
datamanager: InstructNeRF2NeRFDataManagerConfig =InstructNeRF2NeRFDataManagerConfig()
would lead to an exception in nerfstudio envs\nerf\Lib\dataclasses.py
line 815, in _get_field
raise ValueError(f'mutable default {type(f.default)} for field '
ValueError: mutable default <class 'in2n.in2n_datamanager.InstructNeRF2NeRFDataManagerConfig'> for field datamanager is not allowed: use default_factory
which is fixed by changing line 38 to
datamanager: InstructNeRF2NeRFDataManagerConfig = field(default_factory=InstructNeRF2NeRFDataManagerConfig)
The text was updated successfully, but these errors were encountered:
in ./in2n/in2n_pipeline.py line 38
datamanager: InstructNeRF2NeRFDataManagerConfig =InstructNeRF2NeRFDataManagerConfig()
would lead to an exception in nerfstudio envs\nerf\Lib\dataclasses.py
line 815, in _get_field
raise ValueError(f'mutable default {type(f.default)} for field '
ValueError: mutable default <class 'in2n.in2n_datamanager.InstructNeRF2NeRFDataManagerConfig'> for field datamanager is not allowed: use default_factory
which is fixed by changing line 38 to
datamanager: InstructNeRF2NeRFDataManagerConfig = field(default_factory=InstructNeRF2NeRFDataManagerConfig)
The text was updated successfully, but these errors were encountered: