Text Classification
Transformers
Safetensors
English
bert
ignorance-classification
knowledge-gap
epilepsy
biomedical
text-embeddings-inference
Instructions to use hunter-lab/sentence-level-ignorance-classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use hunter-lab/sentence-level-ignorance-classifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="hunter-lab/sentence-level-ignorance-classifier")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("hunter-lab/sentence-level-ignorance-classifier") model = AutoModelForSequenceClassification.from_pretrained("hunter-lab/sentence-level-ignorance-classifier", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -8,4 +8,11 @@ metrics:
|
|
| 8 |
base_model:
|
| 9 |
- microsoft/BiomedNLP-BiomedBERT-base-uncased-abstract
|
| 10 |
pipeline_tag: text-classification
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
---
|
|
|
|
| 8 |
base_model:
|
| 9 |
- microsoft/BiomedNLP-BiomedBERT-base-uncased-abstract
|
| 10 |
pipeline_tag: text-classification
|
| 11 |
+
license: mit
|
| 12 |
+
library_name: transformers
|
| 13 |
+
tags:
|
| 14 |
+
- ignorance-classification
|
| 15 |
+
- knowledge-gap
|
| 16 |
+
- epilepsy
|
| 17 |
+
- biomedical
|
| 18 |
---
|