mirror of
https://github.com/RosettaCommons/foundry.git
synced 2026-06-04 13:24:22 +08:00
* Add search path for rfd3 configurations * Add search path for rfd3 configurations * Add Hydra searchpath for rf3 and rfd3 model-specific configs (#166) * Initial plan * Add search path for rf3 configurations Co-authored-by: Ubiquinone-dot <66851659+Ubiquinone-dot@users.noreply.github.com> * Add rfd3 searchpath to validate.yaml and dev.yaml Co-authored-by: Ubiquinone-dot <66851659+Ubiquinone-dot@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: Ubiquinone-dot <66851659+Ubiquinone-dot@users.noreply.github.com> --------- Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
50 lines
1.6 KiB
YAML
50 lines
1.6 KiB
YAML
# @package _global_
|
||
# ^ The "package" determines where the content of the config is placed in the output config
|
||
# For more information about overriding configs, see: https://hydra.cc/docs/advanced/overriding_packages/#overriding-packages-using-the-defaults-list
|
||
|
||
hydra:
|
||
searchpath:
|
||
- pkg://rf3.configs
|
||
- pkg://configs
|
||
|
||
# NOTE: order of defaults determines the order in which configs override each other (higher up items are overridden by lower items)
|
||
defaults:
|
||
- callbacks: default
|
||
- logger: csv
|
||
- trainer: ???
|
||
- paths: default
|
||
- datasets: ???
|
||
- dataloader: default
|
||
- hydra: default
|
||
- model: ???
|
||
# We must keep _self_ before experiment and debug to ensure that the experiment and debug configs can override
|
||
- _self_
|
||
|
||
# experiment configs allow for version control of specific hyperparameters
|
||
# e.g. best hyperparameters for given model and datamodule
|
||
- experiment: ???
|
||
|
||
# debug configs to add onto any experiment for quickly testing or debugging code
|
||
- debug: null
|
||
|
||
|
||
# DO NOT set these here. Set them in the relevant experiment config file.
|
||
# ... these are just here to ensure users always specify these fields in their experiment configs.
|
||
name: ???
|
||
tags: ???
|
||
|
||
# NOTE: These values will be overwritten by the experiment config if they are set there. They are just provided as defaults
|
||
# here.
|
||
# ... task name (determines the output directory path)
|
||
task_name: "validate"
|
||
|
||
project: ??? # required for W&B logging
|
||
|
||
seed: 1
|
||
|
||
# Dump CIF files for validation structures
|
||
callbacks:
|
||
dump_validation_structures_callback:
|
||
dump_predictions: True
|
||
one_model_per_file: False
|
||
dump_trajectories: False |