Views
No views yet
biohub/ESMC-300M
to the diversity of plastic-degrading enzymes. It is Stage 1 of the petabite
pipeline: continued masked-language-model pretraining on ~18M catalytic ORF homologs
mined from the Logan planetary-scale SRA assembly, producing a backbone that
"understands" PETase-family sequence space before any activity labels are introduced.petadexbiohub/ESMC-300Mbiohub/ESMC-300M — confirm before redistribution.1from peft import PeftModel
2from transformers import AutoModelForMaskedLM, AutoTokenizer
3
4base = AutoModelForMaskedLM.from_pretrained("biohub/ESMC-300M", trust_remote_code=True)
5model = PeftModel.from_pretrained(base, "petadex/esmc-300m-catalytic-lora").eval()
6tokenizer = AutoTokenizer.from_pretrained("biohub/ESMC-300M")petadex/catalytic-orfs-90pid:
18,172,960 catalytic ORF sequences (90% sequence-identity centroids, already dereplicated),
split 98 / 1 / 1 into train / validation / test. Training uses the Sequence column.mlm_probability = 0.15r = 32, alpha = 16, dropout = 0.01, bias = "none",
applied to attention out_proj (via PEFT) plus the fused QKV / FFN projections
(via a custom injection for ESM-C's fused LayerNorm+Linear modules)1e-4, cosine schedule, warmup ratio 0.05, weight decay 0.01validation split (~182k sequences) of the same dataset, evaluated with the
masked-LM loss / perplexity. Populate this section with the final numbers from the run.