GPT1 [GPT] Hugging Face 기초 1. PIPELINE transformers는 GPT와 BERT의 핵심 모듈이다 preprocess -> 모델 -> post process task마다 default model이 정해져 있다. from transformers import pipeline # 긍정 부정 감정 분석 classifier = pipeline('sentiment-analysis') # 이 모델은 레이블이 없는 상태 classifier = pipeline('zero-shot-classification') # 생성모델 , bert 기반(꽤 무겁다) generator = pipeline('text-generation') # num_return_sequences = 문장의 갯수 / max_length = 단어 갯수 generator("i.. 2023. 2. 28. 이전 1 다음