Instructions to use microsoft/deberta-v3-large with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use microsoft/deberta-v3-large with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="microsoft/deberta-v3-large")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("microsoft/deberta-v3-large", dtype="auto") - Inference
- Notebooks
- Google Colab
- Kaggle
Case?
#3
by malikarumi - opened
Does this model recognize and distinguish between Proper Nouns and the all lower case versions of those words? i.e, White House, Whitehouse, and white house?
Ok, forget that. I found it:
do_lower_case (bool, optional, defaults to False) β Whether or not to lowercase the input when tokenizing.
thx