File size: 499 Bytes
808036c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | # pylint: disable=C0114
from models.protenix.config.extend_types import ListValue, RequiredValue
# The model will be download to the following dir if not exists:
# "./release_data/checkpoint/model_v0.5.0.pt"
inference_configs = {
"seeds": ListValue([101]),
"dump_dir": "./output",
"need_atom_confidence": False,
"sorted_by_ranking_score": True,
"input_json_path": RequiredValue(str),
"load_checkpoint_path": RequiredValue(str),
"num_workers": 16,
"use_msa": True,
}
|