Instructions to use lucafrost/initial-dq-model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use lucafrost/initial-dq-model with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="lucafrost/initial-dq-model")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("lucafrost/initial-dq-model") model = AutoModelForTokenClassification.from_pretrained("lucafrost/initial-dq-model") - Notebooks
- Google Colab
- Kaggle
Librarian Bot: Add base_model information to model
#1
by librarian-bot - opened
README.md
CHANGED
|
@@ -7,6 +7,7 @@ metrics:
|
|
| 7 |
- recall
|
| 8 |
- f1
|
| 9 |
- accuracy
|
|
|
|
| 10 |
model-index:
|
| 11 |
- name: initial-dq-model
|
| 12 |
results: []
|
|
|
|
| 7 |
- recall
|
| 8 |
- f1
|
| 9 |
- accuracy
|
| 10 |
+
base_model: distilbert-base-cased
|
| 11 |
model-index:
|
| 12 |
- name: initial-dq-model
|
| 13 |
results: []
|