Instructions to use Exscientia/IgBert with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Exscientia/IgBert with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="Exscientia/IgBert")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("Exscientia/IgBert") model = AutoModelForMaskedLM.from_pretrained("Exscientia/IgBert") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
| 2 |
tags:
|
| 3 |
- antibody language model
|
| 4 |
- antibody
|
|
|
|
| 5 |
base_model: Exscientia/IgBert_unpaired
|
| 6 |
license: mit
|
| 7 |
---
|
|
|
|
| 2 |
tags:
|
| 3 |
- antibody language model
|
| 4 |
- antibody
|
| 5 |
+
- protein language model
|
| 6 |
base_model: Exscientia/IgBert_unpaired
|
| 7 |
license: mit
|
| 8 |
---
|