Instructions to use bluolightning/bert-tiny-japanese-char with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use bluolightning/bert-tiny-japanese-char with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="bluolightning/bert-tiny-japanese-char")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("bluolightning/bert-tiny-japanese-char") model = AutoModelForCausalLM.from_pretrained("bluolightning/bert-tiny-japanese-char", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -9,8 +9,6 @@ datasets:
|
|
| 9 |
- AnimeText
|
| 10 |
language:
|
| 11 |
- ja
|
| 12 |
-
base_model:
|
| 13 |
-
- tohoku-nlp/bert-base-japanese-char-v2
|
| 14 |
pipeline_tag: fill-mask
|
| 15 |
library_name: transformers
|
| 16 |
---
|
|
|
|
| 9 |
- AnimeText
|
| 10 |
language:
|
| 11 |
- ja
|
|
|
|
|
|
|
| 12 |
pipeline_tag: fill-mask
|
| 13 |
library_name: transformers
|
| 14 |
---
|