mirror of
https://github.com/RosettaCommons/foundry.git
synced 2026-06-04 13:24:22 +08:00
* Initial commit of chiral changes Initial checkin of chiral feature code Add chiral metric * Update the way chiral features are incorporated into the model Move initialization to new func use default pytorch reset parameters fix initialization for chirals config rename argument of confidence head fix initialization for chirals * refactor: src nest, rename rf2aa to modelhub * refactor: initial commit without projects * Initial commit of chiral changes * Initial checkin of chiral feature code * Add chiral metric * Remove option for double residual connection. Add kq_norm oiptions to base (20250125) config. * Restoring flag * config * rename argument of confidence head * Update the way chiral features are incorporated into the model * config * rename argument of confidence head * Update the way chiral features are incorporated into the model * Initial commit of chiral changes Initial checkin of chiral feature code Add chiral metric * Update the way chiral features are incorporated into the model Move initialization to new func use default pytorch reset parameters fix initialization for chirals config rename argument of confidence head fix initialization for chirals * refactor: new modelhub --------- Co-authored-by: fdimaio <dimaio@uw.edu> Co-authored-by: HaotianZhangAI4Science <haotianzhang@zju.edu.cn>
49 lines
1.7 KiB
YAML
49 lines
1.7 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
|
||
|
||
# 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
|
||
|
||
# passing checkpoint path required for validation
|
||
# DO NOT set here; set in the experiment config file
|
||
ckpt_path: ??? |