Instructions to use covalenthq/cryptoNER with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use covalenthq/cryptoNER with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="covalenthq/cryptoNER")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("covalenthq/cryptoNER") model = AutoModelForTokenClassification.from_pretrained("covalenthq/cryptoNER") - Notebooks
- Google Colab
- Kaggle
CK commited on
Commit ·
992e907
1
Parent(s): f673fb5
Update README.md
Browse files
README.md
CHANGED
|
@@ -30,7 +30,7 @@ It achieves the following results on the evaluation set:
|
|
| 30 |
This model is a fine-tuned version of xlm-roberta-base, specializing in Named Entity Recognition (NER) within the cryptocurrency domain. It is optimized to recognize and classify entities such as cryptocurrency ticker symbols, names, and addresses within text.
|
| 31 |
|
| 32 |
## Intended uses
|
| 33 |
-
Designed primarily for NER tasks in the cryptocurrency sector, this model excels in identifying and categorizing
|
| 34 |
|
| 35 |
|
| 36 |
## Limitations
|
|
|
|
| 30 |
This model is a fine-tuned version of xlm-roberta-base, specializing in Named Entity Recognition (NER) within the cryptocurrency domain. It is optimized to recognize and classify entities such as cryptocurrency ticker symbols, names, and addresses within text.
|
| 31 |
|
| 32 |
## Intended uses
|
| 33 |
+
Designed primarily for NER tasks in the cryptocurrency sector, this model excels in identifying and categorizing TICKER_SYMBOL, token NAME, and blockscanner ADDRESS in textual content.
|
| 34 |
|
| 35 |
|
| 36 |
## Limitations
|