From 46e04bc2ee745f4432105a2c17c28613c0c72843 Mon Sep 17 00:00:00 2001 From: Marco Carotta <80680213+marcocarotta@users.noreply.github.com> Date: Sun, 5 Jan 2025 19:32:25 +0100 Subject: [PATCH] Update token_classification.ipynb Fixed missing packages installation in token_classification.ipynb --- transformers_doc/en/token_classification.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transformers_doc/en/token_classification.ipynb b/transformers_doc/en/token_classification.ipynb index 4262ab75..4c408e03 100644 --- a/transformers_doc/en/token_classification.ipynb +++ b/transformers_doc/en/token_classification.ipynb @@ -7,7 +7,7 @@ "outputs": [], "source": [ "# Transformers installation\n", - "! pip install transformers datasets\n", + "! pip install transformers datasets evaluate seqeval\n", "# To install from source instead of the last release, comment the command above and uncomment the following one.\n", "# ! pip install git+https://github.com/huggingface/transformers.git" ]