Token Classification
Transformers
langident
language-identification
multilingual
historical
impresso
custom_code
Instructions to use impresso-project/language-identifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use impresso-project/language-identifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="impresso-project/language-identifier", trust_remote_code=True)# Load model directly from transformers import AutoModelForTokenClassification model = AutoModelForTokenClassification.from_pretrained("impresso-project/language-identifier", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
Gleb Vinarskis commited on
Commit ·
83e5f13
1
Parent(s): 6d6d853
changed name back to new one
Browse files- config.json +1 -1
config.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
"architectures": [
|
| 4 |
"LangDetectorModel"
|
| 5 |
],
|
| 6 |
-
"filename": "
|
| 7 |
"attention_probs_dropout_prob": 0.1,
|
| 8 |
"auto_map": {
|
| 9 |
"AutoConfig": "configuration_lang.ImpressoConfig",
|
|
|
|
| 3 |
"architectures": [
|
| 4 |
"LangDetectorModel"
|
| 5 |
],
|
| 6 |
+
"filename": "langident-v1.0.0.bin",
|
| 7 |
"attention_probs_dropout_prob": 0.1,
|
| 8 |
"auto_map": {
|
| 9 |
"AutoConfig": "configuration_lang.ImpressoConfig",
|