--- license: mit language: - ko base_model: - Darong/BlueT pipeline_tag: translation --- # Model Card for Model ID 논문 번역에 특화된 영어->한국어 번역 모델입니다. ### Model Description Darong/BlueT 모델을 기반으로 논문에 대해 미세조정한 번역 모델입니다. 영어->한국어 번역을 지원하며, 번역 시 높임말도 설정할 수 있습니다. - **Developed by:** [BlueAI] - **Model type:** [t5.1.1.base] - **Language(s) (NLP):** [Korean] - **License:** [MIT] - **Finetuned from model [optional]:** [Darong/BlueT] ## Uses ## How to Get Started with the Model Use the code below to get started with the model. ```python from transformers import pipeline, T5TokenizerFast tokenizer_name = "paust/pko-t5-base" tokenizer = T5TokenizerFast.from_pretrained(tokenizer_name) model_path = 'Darong/BluePaper' translator = pipeline("translation", model=model_path, tokenizer=tokenizer, max_length=255) # 영어 -> 한국어 prefix = "E2K: " source = "This model is an English-Korean translation model." target = translator(prefix + source) print(target[0]['translation_text']) ```