좋아! 오늘도 Hugging Face 실습 이어서 가보자.오늘의 주제는 “텍스트 생성(Text Generation)“과 “문서 분류(Document Classification)” 체험이야. 🔥 오늘의 실습 문제 ✅ 문제 1: 문장 생성 Hugging Face의 text-generation 파이프라인을 사용해서 아래 문장을 시작으로 이어지는 문장을 생성하자.from transformers import pipelinegenerator = pipeline("text-generation", model="gpt2")prompt = "The future of artificial intelligence is"result = generator(prompt, max_length=50, num_return_seque..