Instructions to use KoichiYasuoka/deberta-small-japanese-upos with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use KoichiYasuoka/deberta-small-japanese-upos with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="KoichiYasuoka/deberta-small-japanese-upos")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("KoichiYasuoka/deberta-small-japanese-upos") model = AutoModelForTokenClassification.from_pretrained("KoichiYasuoka/deberta-small-japanese-upos", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Commit ·
833af83
1
Parent(s): 421c38b
base_model
Browse files
README.md
CHANGED
|
@@ -6,6 +6,7 @@ tags:
|
|
| 6 |
- "token-classification"
|
| 7 |
- "pos"
|
| 8 |
- "dependency-parsing"
|
|
|
|
| 9 |
datasets:
|
| 10 |
- "universal_dependencies"
|
| 11 |
license: "cc-by-sa-4.0"
|
|
|
|
| 6 |
- "token-classification"
|
| 7 |
- "pos"
|
| 8 |
- "dependency-parsing"
|
| 9 |
+
base_model: KoichiYasuoka/deberta-small-japanese-aozora
|
| 10 |
datasets:
|
| 11 |
- "universal_dependencies"
|
| 12 |
license: "cc-by-sa-4.0"
|