protenix / configs /configs_inference.py
wuxing0105's picture
Add files using upload-large-folder tool
808036c verified
Raw
History Blame Contribute Delete
499 Bytes
# 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,
}