CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
huggingface

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: huggingface/notebooks
Path: blob/main/course/it/chapter5/section8.ipynb
Views: 2555
Kernel: Unknown Kernel

Quiz di fine capitolo

Install the Transformers, Datasets, and Evaluate libraries to run this notebook.

!pip install datasets evaluate transformers[sentencepiece]
from datasets import load_dataset dataset = load_dataset("glue", "mrpc", split="train")
from datasets import load_dataset dataset = load_dataset("allocine", streaming=True, split="train") dataset[0]