Edit model card
YAML Metadata Warning: empty or missing yaml metadata in repo card (https://huggingface.co/docs/hub/model-cards#model-card-metadata)

from huggingface_hub import snapshot_download

def load_tokenizer_from_hub(repo_name: str = "Kyudan/TeXBLEU-Tokenizer") -> Tokenizer: # Hugging Face Hub์—์„œ ํ† ํฌ๋‚˜์ด์ € ๋‹ค์šด๋กœ๋“œ snapshot_dir = snapshot_download(repo_id=repo_name)

# ๋‹ค์šด๋กœ๋“œํ•œ ํ† ํฌ๋‚˜์ด์ € ๋ถˆ๋Ÿฌ์˜ค๊ธฐ
    tokenizer = Tokenizer.from_file(f"{snapshot_dir}/tokenizer.json")
    return tokenizer
Downloads last month

-

Downloads are not tracked for this model. How to track
Inference API
Unable to determine this model's library. Check the docs .