Model Overview
This model is fine-tuned model of "Helsinki-NLP/opus-mt-ko-en"
The model is trained with 1,198,943 Korean-English sentence pairs which mainly contains science, technology terms.
Load Model
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
tokenizer = AutoTokenizer.from_pretrained("mjk0618/mt-ko-en-scitech")
model = AutoModelForSeq2SeqLM.from_pretrained("mjk0618/mt-ko-en-scitech")
How to use
# After loading model
sentence = "์ธ๊ณต์ง๋ฅ์ ์ธ๊ฐ์ ํ์ต๋ฅ๋ ฅ, ์ถ๋ก ๋ฅ๋ ฅ, ์ง๊ฐ๋ฅ๋ ฅ์ ์ธ๊ณต์ ์ผ๋ก ๊ตฌํํ๋ ค๋ ์ปดํจํฐ ๊ณผํ์ ์ธ๋ถ๋ถ์ผ ์ค ํ๋์ด๋ค"
inputs = tokenizer(sentence, return_tensors="pt").input_ids
outputs = model.generate(inputs)[0]
translated_sentence = tokenizer.decode(outputs, skip_special_tokens=True)
print(translated_sentence)
# Artificial intelligence is one of the details of computer science that artifically implements human learning ability, reasoning ability, and perception ability.
- Downloads last month
- 61
This model does not have enough activity to be deployed to Inference API (serverless) yet. Increase its social
visibility and check back later, or deploy to Inference Endpoints (dedicated)
instead.