Skip to content

Commit

Permalink
bug-fix pretrained model path
Browse files Browse the repository at this point in the history
  • Loading branch information
meyerkm committed Dec 14, 2023
1 parent 198335a commit f827648
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipelines/association_testing_pretrained.snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ n_repeats = config['n_repeats']
debug = '--debug ' if debug_flag else ''
do_scoretest = '--do-scoretest ' if config.get('do_scoretest', False) else ''
tensor_compression_level = config['training'].get('tensor_compression_level', 1)
pretrained_model_path = Path('models') #Path(config.get("pretrained_model_path", "pretrained_models"))
pretrained_model_path = Path(config.get("pretrained_model_path", "pretrained_models"))

wildcard_constraints:
repeat="\d+",
Expand Down

0 comments on commit f827648

Please sign in to comment.