sail-sg / sewformer

140 stars 14 forks source link

KeyError: 'is_training' #9

Open nagexiaochengzi opened 8 months ago

nagexiaochengzi commented 8 months ago

Traceback (most recent call last): File "SewFormer/Sewformer/inference.py", line 138, in shape_experiment = ExperimentWrappper(config, system_info['wandb_username']) # finished experiment File "SewFormer/Sewformer/experiment.py", line 39, in init if config['experiment']['is_training'] and self.run_local_path is not None: KeyError: 'is_training'

yukistavailable commented 7 months ago

just modify the code line 39 in SewFormer/Sewformer/experiment.py as following

if config['experiment'].get('is_training') and self.run_local_path is not None:
nagexiaochengzi commented 6 months ago

Where do you realize the reconstruction of garments?