Instructions to use yarongef/DistilProtBert with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use yarongef/DistilProtBert with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="yarongef/DistilProtBert")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("yarongef/DistilProtBert") model = AutoModelForMaskedLM.from_pretrained("yarongef/DistilProtBert") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -26,7 +26,7 @@ The model could be used for protein feature extraction or to be fine-tuned on do
|
|
| 26 |
|
| 27 |
### How to use
|
| 28 |
|
| 29 |
-
The model can be used the same as ProtBert.
|
| 30 |
|
| 31 |
## Training data
|
| 32 |
|
|
|
|
| 26 |
|
| 27 |
### How to use
|
| 28 |
|
| 29 |
+
The model can be used the same as ProtBert and with ProtBert's tokenizer.
|
| 30 |
|
| 31 |
## Training data
|
| 32 |
|