Views
No views yet
<PROPERTY>_<config-checksum>/) contains:
final.ckpt (model trained on all data — used by predict.py), fold0-4.ckpt
(5-fold CV checkpoints), config.yaml, and property.txt.| Property | This release (v0.9) | Paper (Table 1) |
|---|---|---|
| HIC (hydrophobicity) | 0.685 | 0.644 |
| Titer (expression) | 0.425 | 0.428 |
| PR_CHO (polyreactivity) | 0.461 | 0.475 |
| AC-SINS (self-association) | 0.420 | 0.475 |
| Tm2 (thermostability) | 0.442 | 0.387 |
revision="v0.9" if you need exactly these weights.1pip install huggingface_hub
2python scripts/download_models.py --revision v0.9 # final.ckpt only (add --folds for CV)
3python src/predict.py --input inputs/my_seqs.csv --model models/HIC_3595cc57 --output preds.csvfinal.ckpt (+ small metadata) is downloaded; the 5 CV fold
checkpoints are fetched only when you ask for them (--folds, or predict.py --use-cv/--fold).predict.py fetch on demand:python src/predict.py --input inputs/my_seqs.csv --model HIC_3595cc57 --from-hf --output preds.csv