Instructions to use GleghornLab/AT_EXP with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use GleghornLab/AT_EXP with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="GleghornLab/AT_EXP")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("GleghornLab/AT_EXP") model = AutoModelForMaskedLM.from_pretrained("GleghornLab/AT_EXP", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1 +1,7 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
library_name: transformers
|
| 3 |
+
license: gpl
|
| 4 |
+
---
|
| 5 |
+
Please see our paper and Github for more details
|
| 6 |
+
https://www.biorxiv.org/content/10.1101/2024.07.30.605924v1
|
| 7 |
+
https://github.com/Gleghorn-Lab/AnnotationVocabulary
|