Instructions to use fraternalilab/immunomatch with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use fraternalilab/immunomatch with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="fraternalilab/immunomatch")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("fraternalilab/immunomatch") model = AutoModelForSequenceClassification.from_pretrained("fraternalilab/immunomatch") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -10,7 +10,7 @@ library_name: transformers
|
|
| 10 |
---
|
| 11 |
ImmunoMatch is a protein language model finetuned from AntiBERTa2, aiming at investigating the heavy and light chain pairing preferences in antibody. The input sequence to the model should be a pair of sequences of VH and VL domains.
|
| 12 |
|
| 13 |
-
Different variants of ImmunoMatch is
|
| 14 |
|
| 15 |
| Checkpoint name | Trained on |
|
| 16 |
| --------------- | ---------- |
|
|
|
|
| 10 |
---
|
| 11 |
ImmunoMatch is a protein language model finetuned from AntiBERTa2, aiming at investigating the heavy and light chain pairing preferences in antibody. The input sequence to the model should be a pair of sequences of VH and VL domains.
|
| 12 |
|
| 13 |
+
Different variants of ImmunoMatch is available according to the use of interest:
|
| 14 |
|
| 15 |
| Checkpoint name | Trained on |
|
| 16 |
| --------------- | ---------- |
|