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
When running scripts.export.py with an existing config file, if you that from a machine that has less GPUs than the original config file, it fails,
example :
ifargs.train_config:
withopen(args.train_config) astrain_config_file:
train_config_json=json.load(train_config_file)
train_config_json["gpu_ids"] ="0"# force the GPU ID before parsing the train optionsopt=TrainOptions().parse_json(train_config_json)
The text was updated successfully, but these errors were encountered:
When running
scripts.export.py
with an existing config file, if you that from a machine that has less GPUs than the original config file, it fails,example :
Because in the config file you have something like :
So you get
One ugly fix would be in
scripts/export.py
L173The text was updated successfully, but these errors were encountered: