Instructions to use edithram23/new-bert-v2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use edithram23/new-bert-v2 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="edithram23/new-bert-v2")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("edithram23/new-bert-v2") model = AutoModelForTokenClassification.from_pretrained("edithram23/new-bert-v2", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Upload config
Browse files- config.json +2 -2
config.json
CHANGED
|
@@ -27,8 +27,8 @@
|
|
| 27 |
"14": "none",
|
| 28 |
"15": "B-LASTNAME",
|
| 29 |
"16": "I-LASTNAME",
|
| 30 |
-
"17": "
|
| 31 |
-
"18": "
|
| 32 |
"19": "none",
|
| 33 |
"20": "none",
|
| 34 |
"21": "B-PHONENUMBER",
|
|
|
|
| 27 |
"14": "none",
|
| 28 |
"15": "B-LASTNAME",
|
| 29 |
"16": "I-LASTNAME",
|
| 30 |
+
"17": "B-ACCOUNTNUMBER",
|
| 31 |
+
"18": "I-ACCOUNTNUMBER",
|
| 32 |
"19": "none",
|
| 33 |
"20": "none",
|
| 34 |
"21": "B-PHONENUMBER",
|