Instructions to use distilbert/distilbert-base-uncased-distilled-squad with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use distilbert/distilbert-base-uncased-distilled-squad with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="distilbert/distilbert-base-uncased-distilled-squad")# Load model directly from transformers import AutoTokenizer, AutoModelForQuestionAnswering tokenizer = AutoTokenizer.from_pretrained("distilbert/distilbert-base-uncased-distilled-squad") model = AutoModelForQuestionAnswering.from_pretrained("distilbert/distilbert-base-uncased-distilled-squad") - Inference
- Notebooks
- Google Colab
- Kaggle
Unable to download "distilbert-base-uncased-distilled-squad.tar.gz"
#6
by priyanka98 - opened
Iam unable to download the distilbert-base-uncased-distilled-squad.tar.gz model from the URL =
"https://huggingface.co/distilbert-base-uncased-distilled-squad/resolve/main/distilbert-base-uncased-distilled-squad.tar.gz".
Also I tried downloading it through tensor-flow using saved_model format via URL = "https://huggingface.co/distilbert-base-uncased-distilled-squad/blob/main/saved_model.tar.gz" , This URL seems to be deprecated and ofc dint work.
Looking for any updated URLs or repositories that provide the file am are looking for or any alternative methods to access the file.
can i get any luck on this ?
🤷 not sure
Where did you see links to those files?