Token Classification
Transformers
PyTorch
Japanese
deberta-v2
japanese
wikipedia
cc100
oscar
pos
dependency-parsing
Instructions to use KoichiYasuoka/deberta-base-japanese-juman-ud-goeswith with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use KoichiYasuoka/deberta-base-japanese-juman-ud-goeswith with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="KoichiYasuoka/deberta-base-japanese-juman-ud-goeswith")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("KoichiYasuoka/deberta-base-japanese-juman-ud-goeswith") model = AutoModelForTokenClassification.from_pretrained("KoichiYasuoka/deberta-base-japanese-juman-ud-goeswith", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Ctrl+K