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 ·
046825e
1
Parent(s): 6f0e666
Update README.md
Browse files
README.md
CHANGED
|
@@ -35,7 +35,7 @@ The model might not perform well in identifying and classifying entities that we
|
|
| 35 |
|
| 36 |
## Training and evaluation data
|
| 37 |
|
| 38 |
-
The model was trained using a diverse dataset, including artificially generated tweets and ERC20 token metadata fetched through the [Covalent API](https://www.covalenthq.com/docs/unified-api/). GPT was employed to generate 500 synthetic tweets tailored for the cryptocurrency domain. The Covalent API was instrumental in obtaining a rich set of
|
| 39 |
|
| 40 |
## Training procedure
|
| 41 |
|
|
|
|
| 35 |
|
| 36 |
## Training and evaluation data
|
| 37 |
|
| 38 |
+
The model was trained using a diverse dataset, including artificially generated tweets and ERC20 token metadata fetched through the [Covalent API](https://www.covalenthq.com/docs/unified-api/). GPT was employed to generate 500 synthetic tweets tailored for the cryptocurrency domain. The Covalent API was instrumental in obtaining a rich set of unique ERC20 token metadata entries, enhancing the model's understanding and recognition of cryptocurrency entities.
|
| 39 |
|
| 40 |
## Training procedure
|
| 41 |
|