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") - Inference
- Notebooks
- Google Colab
- Kaggle
Mask the Amino Acid with [MASK] then predict which AA it should be
#1 opened over 1 year ago
by
Derek520