Instructions to use PrimeQA/tydiqa-boolean-question-classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use PrimeQA/tydiqa-boolean-question-classifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="PrimeQA/tydiqa-boolean-question-classifier")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("PrimeQA/tydiqa-boolean-question-classifier") model = AutoModelForSequenceClassification.from_pretrained("PrimeQA/tydiqa-boolean-question-classifier") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -16,7 +16,7 @@ You can use the raw model for question classification. Biases associated with th
|
|
| 16 |
|
| 17 |
## Usage
|
| 18 |
|
| 19 |
-
You can use this model directly in the the [PrimeQA](https://github.com/primeqa/primeqa) framework for supporting boolean question in reading comprehension
|
| 20 |
|
| 21 |
### BibTeX entry and citation info
|
| 22 |
|
|
|
|
| 16 |
|
| 17 |
## Usage
|
| 18 |
|
| 19 |
+
You can use this model directly in the the [PrimeQA](https://github.com/primeqa/primeqa) framework for supporting boolean question in reading comprehension as in this [example](https://github.com/primeqa/primeqa/tree/main/examples/boolqa).
|
| 20 |
|
| 21 |
### BibTeX entry and citation info
|
| 22 |
|