"git@developer.sourcefind.cn:OpenDAS/openfold.git" did not exist on "78644cdf4407f8f9215939f486394b3a4285915f"
Commit 8b5212da authored by Ryan Kosai's avatar Ryan Kosai
Browse files

Remove unnecessary double-load of config_json.

parent f37d0d96
...@@ -185,12 +185,7 @@ def main(args): ...@@ -185,12 +185,7 @@ def main(args):
use_deepspeed_evoformer_attention=args.use_deepspeed_evoformer_attention, use_deepspeed_evoformer_attention=args.use_deepspeed_evoformer_attention,
) )
if args.experiment_config_json: if args.experiment_config_json:
with open(args.experiment_config_json, 'r') as f:
custom_config_dict = json.load(f)
config.update_from_flattened_dict(custom_config_dict)
if args.experiment_config_json:
with open(args.experiment_config_json, 'r') as f: with open(args.experiment_config_json, 'r') as f:
custom_config_dict = json.load(f) custom_config_dict = json.load(f)
config.update_from_flattened_dict(custom_config_dict) config.update_from_flattened_dict(custom_config_dict)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment