Files
foundry/models/rf3/configs/validate.yaml
Jasper Butcher e94fdf63e7 Add search path for rfd3 configurations (#147)
* 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>
2026-01-14 16:59:18 -08:00

50 lines
1.6 KiB
YAML
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# @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