목차1. 데이터셋 설치!pip install datasets 2. 데이터셋 살펴보기# 데이터셋 리스트from datasets import list_datasetsall_datasets = list_datasets()print(len(all_datasets)) # 몇 개?print(all_datasets[0]) # 첫 번째 데이터셋# 데이터셋 로드from datasets import load_datasetemotions = load_dataset("emotion")emotions197878amirveyseh/acronym_identificationDatasetDict({ train: Dataset({ features: ['text', 'label'], num_rows: 16..