Instructions to use multimolecule/deltasplice with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MultiMolecule
How to use multimolecule/deltasplice with MultiMolecule:
pip install multimolecule
from multimolecule import AutoModel, AutoTokenizer tokenizer = AutoTokenizer.from_pretrained("multimolecule/deltasplice") model = AutoModel.from_pretrained("multimolecule/deltasplice") inputs = tokenizer("UAGCUUAUCAGACUGAUGUUGA", return_tensors="pt") outputs = model(**inputs) embeddings = outputs.last_hidden_state - Notebooks
- Google Colab
- Kaggle
Fix README author attribution
Browse files
README.md
CHANGED
|
@@ -159,7 +159,7 @@ Reference-informed prediction of alternative splicing and splicing-altering muta
|
|
| 159 |
|
| 160 |
## Disclaimer
|
| 161 |
|
| 162 |
-
This is an UNOFFICIAL implementation of [Reference-informed prediction of alternative splicing and splicing-altering mutations from sequences](https://doi.org/10.1101/gr.279044.124) by Chencheng Xu, Suying Bao,
|
| 163 |
|
| 164 |
The OFFICIAL repository of DeltaSplice is at [chaolinzhanglab/DeltaSplice](https://github.com/chaolinzhanglab/DeltaSplice).
|
| 165 |
|
|
|
|
| 159 |
|
| 160 |
## Disclaimer
|
| 161 |
|
| 162 |
+
This is an UNOFFICIAL implementation of [Reference-informed prediction of alternative splicing and splicing-altering mutations from sequences](https://doi.org/10.1101/gr.279044.124) by Chencheng Xu, Suying Bao, et al.
|
| 163 |
|
| 164 |
The OFFICIAL repository of DeltaSplice is at [chaolinzhanglab/DeltaSplice](https://github.com/chaolinzhanglab/DeltaSplice).
|
| 165 |
|