!pip install pororo
from pororo import Pororo
nli = Pororo(task="nli", lang="ko")
nli("저는, 그냥 알아내려고 거기 있었어요.", "이해하려고 노력하고 있었어요.")
> 'Entailment'
nli("저는, 그냥 알아내려고 거기 있었어요", "나는 처음부터 그것을 잘 이해했다")
> 'Contradiction'
nli('저는, 그냥 알아내려고 거기 있었어요.', '나는 돈이 어디로 갔는지 이해하려고 했어요.')
> 'Neutral'
혹시 몰라서 주말 동안 미리 준비했었는데, 무의미해졌습니다. ㅠㅠ
training_args = TrainingArguments(
save_total_limit=3,
save_steps=500,
num_train_epochs=10,
learning_rate=5e-5,
per_device_train_batch_size=16,
per_device_eval_batch_size=16,
warmup_steps=500,
weight_decay=0.01,
logging_steps=100,
evaluation_strategy='steps',
eval_steps = 500,
)
training_args = TrainingArguments(
save_total_limit=3,
save_steps=100,
num_train_epochs=10,
learning_rate=1e-5,
per_device_train_batch_size=64,
per_device_eval_batch_size=64,
warmup_steps=500,
weight_decay=0.01,
logging_steps=100,
evaluation_strategy='steps',
eval_steps = 100,
)
training_args = TrainingArguments(
save_total_limit=5,
save_steps=1000,
num_train_epochs=10,
learning_rate=1e-5,
per_device_train_batch_size=4,
per_device_eval_batch_size=128,
warmup_steps=500,
weight_decay=0.01,
logging_steps=100,
evaluation_strategy='steps',
eval_steps = 1000,
)
training_args = TrainingArguments(
save_total_limit=5,
save_steps=1000,
num_train_epochs=10,
learning_rate=1e-5,
per_device_train_batch_size=4,
per_device_eval_batch_size=128,
warmup_steps=500,
weight_decay=0.1,
logging_steps=100,
evaluation_strategy='steps',
eval_steps = 1000,
)
오늘보다 더 성장한 내일의 저를 기대하며, 내일 뵙도록 하겠습니다.
읽어주셔서 감사합니다!