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>
18 lines
579 B
YAML
18 lines
579 B
YAML
# https://hydra.cc/docs/configure_hydra/intro/
|
|
|
|
# enable color logging (requires `colorlog` to be installed)
|
|
# defaults:
|
|
# - override hydra_logging: colorlog
|
|
# - override job_logging: colorlog
|
|
|
|
|
|
# output directory, generated dynamically on each run
|
|
run:
|
|
dir: ${paths.log_dir}/${task_name}/${name}/${now:%Y-%m-%d}_${now:%H-%M}
|
|
|
|
# ... this is where the log file is written (i.e. the programs output)
|
|
job_logging:
|
|
handlers:
|
|
file:
|
|
# Incorporates fix from https://github.com/facebookresearch/hydra/pull/2242
|
|
filename: ${hydra.runtime.output_dir}/experiment.log |