From 66cab39e456572fce1d3cbf84e68b1027f81ec50 Mon Sep 17 00:00:00 2001 From: Jean-Marc Billod Date: Fri, 24 Apr 2026 11:43:05 +0200 Subject: [PATCH] remove unused boltz1_conf.ckpt download --- src/simplefold/utils/fasta_utils.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/simplefold/utils/fasta_utils.py b/src/simplefold/utils/fasta_utils.py index a64612a..88df4ac 100644 --- a/src/simplefold/utils/fasta_utils.py +++ b/src/simplefold/utils/fasta_utils.py @@ -18,9 +18,6 @@ CCD_URL = "https://huggingface.co/boltz-community/boltz-1/resolve/main/ccd.pkl" -MODEL_URL = ( - "https://huggingface.co/boltz-community/boltz-1/resolve/main/boltz1_conf.ckpt" -) from collections.abc import Mapping @@ -131,15 +128,6 @@ def download_fasta_utilities(cache: Path) -> None: ) urllib.request.urlretrieve(CCD_URL, str(ccd)) - # Download model - model = cache / "boltz1_conf.ckpt" - if not model.exists(): - click.echo( - f"Downloading the model weights to {model}. You may " - "change the cache directory with the --cache flag." - ) - urllib.request.urlretrieve(MODEL_URL, str(model)) - def process_fastas( data: list[Path],