Instructions to use huggingface-course/bert-finetuned-squad with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use huggingface-course/bert-finetuned-squad with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="huggingface-course/bert-finetuned-squad")# Load model directly from transformers import AutoTokenizer, AutoModelForQuestionAnswering tokenizer = AutoTokenizer.from_pretrained("huggingface-course/bert-finetuned-squad") model = AutoModelForQuestionAnswering.from_pretrained("huggingface-course/bert-finetuned-squad") - Notebooks
- Google Colab
- Kaggle
Help: Not generating enough tokens.
My Question:'my order is not shipped yet and i want to cancel it how do i do it?'
Context:
'
Cancel Items and Orders
You can cancel items or orders by visiting the Your Orders section in Your Account.
To cancel orders that are not shipped yet:
Go to Your Orders
Select the item you want to cancel and click Cancel items
Provide reasons for cancellation (optional) and proceed
To cancel orders that are already shipped:
Go to Your Orders
Select the Request cancellation option and proceed further
The item(s) will be returned to us for a refund (if the payment is already made)
In case you're still contacted for delivery, please refuse to accept it.
'
generated answer: 'Go to Your Orders Select the item you want to cancel and click'
result reproduceable