Files
foundry/configs/experiment/quick-af3.yaml
Nathaniel Corley 5a492032d5 refactor: new modelhub (#109)
* 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>
2025-04-08 13:33:17 -07:00

51 lines
1.4 KiB
YAML

# @package _global_
# Experiment that loads a small dataset for quick testing
name: quick-af3
# For explanation of the "override" syntax, see: https://hydra.cc/docs/upgrades/1.0_to_1.1/defaults_list_override/
defaults:
- override /trainer: af3
- override /datasets: af3
- override /model: af3
tags:
# list of tags to add to the run ( & on wandb to easily find & filter runs)
- quick
project: test
ckpt_path: /projects/ml/modelhub/inference/rf2aa-af3-repro7_ep680.pt
datasets:
train:
pdb:
# We must adjust the probability, since we set the monomer distillation dataset to null
probability: 1.0
sub_datasets:
interface:
dataset:
dataset:
# A small dataframe that loads quickly
data: /projects/ml/datahub/dfs/pdb/test_dfs/interfaces_df.parquet
filters:
- "num_polymer_pn_units <= 2"
- "cluster.notnull()"
pn_unit:
dataset:
dataset:
# A small dataframe that loads quickly
data: /projects/ml/datahub/dfs/pdb/test_dfs/pn_units_df.parquet
filters:
- "num_polymer_pn_units <= 2"
- "cluster.notnull()"
# Datasets set to null are ignored
monomer_distillation: null
val:
af3_validation:
dataset:
dataset:
filters:
- "n_tokens_total < 200"