Open the Colab notebook from the project's GitHub repo for one-click
scoring and de-novo design.
Trained on a strict protein-free RNA-LLPS corpus (positives + negatives +
structural hard negatives) plus matched training pairs that teach the model
the free-vs-sequestered G-tract distinction — closing the structure-specificity
blind spot of earlier training recipes.
1from huggingface_hub import hf_hub_download
2
3model_path = hf_hub_download(repo_id="quercuscode/rnaphaseek", filename="final_model.pt")
4norm_path = hf_hub_download(repo_id="quercuscode/rnaphaseek", filename="norm_stats.npz")
5
6# then load with the project code (see the GitHub repo):
7from rnaphaseek import RNAPhaseekScorer, read_fasta
8scorer = RNAPhaseekScorer(model_path=model_path, norm_path=norm_path)
9probs = scorer.score(["GGGAGGGAGGGAGGGUUUUUUUUUUUUUUU"])
10print(probs)
If you use RNAPhaseek, please cite the accompanying manuscript (Cheraghali et al.).
MIT for the code; weights released for academic use under the same license.