When creating a post, please add:
- Week #2
- Link to the classroom item you are referring to: coursera generative-ai-with-llms gradedLti x0gc1 lab-2-fine-tune-a-generative-ai-model-for-dialogue-summarization
- Description (include relevant info but please do not post solution code or your entire notebook): When loading the data set in the lab ### 1.2 - Load Dataset and LLM
- huggingface_dataset_name = “knkarthick/dialogsum”
dataset = load_dataset(huggingface_dataset_name)
dataset
::::::::::::::::::::::::I see this error when loading the lab data set, please help to resolve as I ran the lab twice and still seeing the same error::::::
NameError Traceback (most recent call last)
Cell In[7], line 3
1 huggingface_dataset_name = “knkarthick/dialogsum”
----> 3 dataset = load_dataset(huggingface_dataset_name)
5 dataset
NameError: name ‘load_dataset’ is not defined