From 710a00c35ef6969be5f4f212f1fa2590388f3c5b Mon Sep 17 00:00:00 2001 From: Andreati <43000216+Andre-Andreati@users.noreply.github.com> Date: Tue, 18 Feb 2025 16:32:41 -0300 Subject: [PATCH] Update dataset_dir path on text_classification.ipynb The path on the 'dataset_dir' initialization was wrong, leading to a "FileNotFoundError" in the next cell. --- site/en/tutorials/keras/text_classification.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/en/tutorials/keras/text_classification.ipynb b/site/en/tutorials/keras/text_classification.ipynb index 02e768d741..a5e2a3c682 100644 --- a/site/en/tutorials/keras/text_classification.ipynb +++ b/site/en/tutorials/keras/text_classification.ipynb @@ -171,7 +171,7 @@ " untar=True, cache_dir='.',\n", " cache_subdir='')\n", "\n", - "dataset_dir = os.path.join(os.path.dirname(dataset), 'aclImdb')" + "dataset_dir = os.path.join(os.path.dirname(dataset), 'aclImdb_v1/aclImdb')" ] }, {