-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
6주차 과제 #6
Comments
강태욱사용 모델 : t5-base-korean-summarization (링크 : https://huggingface.co/eenzeenee/t5-base-korean-summarization) 해당 모델을 통해 뉴스 기사를 요약해보았습니다. 다음의 코드를 통해 뉴스 기사의 요약을 수행했습니다. |
임세훈사용 모델from transformers import pipeline
QA = pipeline("question-answering", model="deepset/roberta-base-squad2", device=device) Question-Answering task를 수행하는 deepset/roberta-base-squad2 model을 사용하였습니다. 사용 예시codenews_article = '''
(내용 생략)
'''
BAD_EXAMPLE = {
'question': "What is the reason of this record-breaking rainfall?",
'context': news_article
}
print(f"{BAD_EXAMPLE['question']} -> {QA(BAD_EXAMPLE)['answer']}")
GOOD_EXAMPLE = {
'question': "How many people have been left without power?",
'context': news_article
}
print(f"{GOOD_EXAMPLE['question']} -> {QA(GOOD_EXAMPLE)['answer']}") output
좋은 예시와 나쁜 예시를 하나씩 찾았습니다. 전체적으로 문장과 잘 연결되어 있는 Question의 경우 옳은 답변을 내놓았지만 사용한 Colab Notebook 주소는 여기에서 확인할 수 있습니다. |
강민우사용 모델 VisualQuestionAnswering task를 수행하는 dandelin/vilt-b32-finetuned-vqa모델을 사용하였습니다.
두 사진의 사물의 개수에 대해 물어보았는데 첫 번째 사진은 사물도 많고 여러 개의 사물이 붙어 있어서 6이라는 잘못된 답이 나왔고 두 번째 사진에서는 비교적 쉬운 사진이라 3이라는 알맞은 답이 나왔습니다. |
다섯 번째 과제: Pipeline으로 다양한 NLP task 수행하기
회합 자료 링크: #1 (comment)
Colab Python 노트북을 사용한 huggingface pipeline 실습
huggingface_pipelines.ipynb
Step 1. 예시 노트북을 실행해보며 huggingface pipeline 사용법 익히기
Step 2. Huggingface model hub와 dataset hub를 구경하고, 새로운 task 실행해보기
Reference
제출 방식
The text was updated successfully, but these errors were encountered: