# Load model directly
from transformers import AutoTokenizer, AutoModelForMaskedLM
tokenizer = AutoTokenizer.from_pretrained("DeepLearning101/Corrector101zhTW")
model = AutoModelForMaskedLM.from_pretrained("DeepLearning101/Corrector101zhTW")Quick Links
ERNIE for Chinese Spelling Correction 繁體中文
MacBertMaskedLM For Chinese Spelling Correction 繁體中文
wikipedia-zh-20230720-filtered.json 繁體中文
Automatic Corpus Generation-zh 繁體中文
- Downloads last month
- 106
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="DeepLearning101/Corrector101zhTW")