Token Classification
Transformers
Safetensors
esm
text-classification
virulence-prediction
biology
bioinformatics
microbiology
Instructions to use kssrikar4/AVP-ESM2-8m with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use kssrikar4/AVP-ESM2-8m with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="kssrikar4/AVP-ESM2-8m")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("kssrikar4/AVP-ESM2-8m") model = AutoModelForSequenceClassification.from_pretrained("kssrikar4/AVP-ESM2-8m", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -3,13 +3,12 @@ license: lgpl
|
|
| 3 |
base_model:
|
| 4 |
- facebook/esm2_t6_8M_UR50D
|
| 5 |
tags:
|
| 6 |
-
- Transformers
|
| 7 |
-
- TensorFlow
|
| 8 |
-
- PyTorch
|
| 9 |
- virulence-prediction
|
| 10 |
- biology
|
| 11 |
- bioinformatics
|
| 12 |
- microbiology
|
|
|
|
|
|
|
| 13 |
---
|
| 14 |
# Model Card
|
| 15 |
|
|
|
|
| 3 |
base_model:
|
| 4 |
- facebook/esm2_t6_8M_UR50D
|
| 5 |
tags:
|
|
|
|
|
|
|
|
|
|
| 6 |
- virulence-prediction
|
| 7 |
- biology
|
| 8 |
- bioinformatics
|
| 9 |
- microbiology
|
| 10 |
+
pipeline_tag: token-classification
|
| 11 |
+
library_name: transformers
|
| 12 |
---
|
| 13 |
# Model Card
|
| 14 |
|