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>
33 lines
1.1 KiB
YAML
33 lines
1.1 KiB
YAML
dataset:
|
|
_target_: datahub.datasets.datasets.StructuralDatasetWrapper
|
|
save_failed_examples_to_dir: ${paths.data.failed_examples_dir}
|
|
cif_parser_args:
|
|
cache_dir: null
|
|
load_from_cache: false
|
|
save_to_cache: false
|
|
dataset:
|
|
_target_: datahub.datasets.datasets.PandasDataset
|
|
# we will use the example_id as the unique column
|
|
id_column: example_id
|
|
# return all keys (do not subset)
|
|
return_key: null
|
|
transform:
|
|
# common Transform pipeline components for all PDB datasets
|
|
_target_: ${datasets.pipeline_target}
|
|
is_inference: False
|
|
protein_msa_dirs: ${paths.data.protein_msa_dirs}
|
|
rna_msa_dirs: ${paths.data.rna_msa_dirs}
|
|
n_recycles: ${datasets.n_recycles_train}
|
|
crop_size: ${datasets.crop_size}
|
|
n_msa: ${datasets.n_msa}
|
|
diffusion_batch_size: ${datasets.diffusion_batch_size_train}
|
|
max_atoms_in_crop: ${datasets.max_atoms_in_crop}
|
|
|
|
weights:
|
|
_target_: datahub.samplers.calculate_weights_for_pdb_dataset_df
|
|
beta: 0.5
|
|
alphas:
|
|
a_prot: 3.0 # 3 for AF-3
|
|
a_nuc: 0.0 # 3 for AF-3
|
|
a_ligand: 1.0 # 1 for AF-3
|
|
a_loi: 5.0 # 5 for AF-3 |