From 06fdeae0798182c98b970984cdfa389c64edeaa9 Mon Sep 17 00:00:00 2001 From: pancodaffee Date: Mon, 11 Dec 2023 21:03:16 -0800 Subject: [PATCH] fix data csv file path issue --- 6-NLP/4-Hotel-Reviews-1/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/6-NLP/4-Hotel-Reviews-1/README.md b/6-NLP/4-Hotel-Reviews-1/README.md index fd2ba705..2a778ce4 100644 --- a/6-NLP/4-Hotel-Reviews-1/README.md +++ b/6-NLP/4-Hotel-Reviews-1/README.md @@ -149,7 +149,7 @@ import time print("Loading data file now, this could take a while depending on file size") start = time.time() # df is 'DataFrame' - make sure you downloaded the file to the data folder -df = pd.read_csv('../../data/Hotel_Reviews.csv') +df = pd.read_csv('../data/Hotel_Reviews.csv') end = time.time() print("Loading took " + str(round(end - start, 2)) + " seconds") ```