From 04c560225b5f64bc11a2809abb10a11f009c811f Mon Sep 17 00:00:00 2001 From: Maria Khalusova Date: Wed, 21 Dec 2022 08:04:08 -0500 Subject: [PATCH] Adding `evaluate` to the list of libraries required in generated notebooks (#20850) Adding `evaluate` to the list of libraries to be installed for every generated notebook in transformers --- docs/source/_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/_config.py b/docs/source/_config.py index cd76263e9a..4a7a86cc23 100644 --- a/docs/source/_config.py +++ b/docs/source/_config.py @@ -1,7 +1,7 @@ # docstyle-ignore INSTALL_CONTENT = """ # Transformers installation -! pip install transformers datasets +! pip install transformers datasets evaluate # To install from source instead of the last release, comment the command above and uncomment the following one. # ! pip install git+https://github.com/huggingface/transformers.git """