From ab7e050ce394a71ea4a05510fc88342279731544 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szymon=20Parafi=C5=84ski?= Date: Sun, 3 Apr 2022 22:44:43 +0200 Subject: [PATCH 1/4] Zaktualizuj 'Dockerfile' --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 0487c14..d26c093 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,4 +21,5 @@ WORKDIR /app COPY lab2/download.sh . COPY lab2/main.py . +RUN ls -la RUN ./download.sh \ No newline at end of file From fa84ce5c1845868cc105f853ce27e899c8b4cc8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szymon=20Parafi=C5=84ski?= Date: Sun, 3 Apr 2022 22:48:56 +0200 Subject: [PATCH 2/4] add chmod --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index d26c093..19e2dde 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,5 +21,7 @@ WORKDIR /app COPY lab2/download.sh . COPY lab2/main.py . +RUN ls -la +RUN chmod +x ./download.sh RUN ls -la RUN ./download.sh \ No newline at end of file From 570b96d272806c7a8d9f37b3ef272067e9cf6222 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szymon=20Parafi=C5=84ski?= Date: Sun, 3 Apr 2022 22:50:37 +0200 Subject: [PATCH 3/4] update dataset location --- lab2/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lab2/main.py b/lab2/main.py index 13121b2..f0b7a7b 100644 --- a/lab2/main.py +++ b/lab2/main.py @@ -41,7 +41,7 @@ def create_train_dev_test(): print(data_dev.describe(include="all")) -imbd_data = pd.read_csv('../imdb_top_1000.csv') +imbd_data = pd.read_csv('imdb_top_1000.csv') drop_relevant_columns() From 6cc1c188755e0558833b15421dd0f41215d46e97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szymon=20Parafi=C5=84ski?= Date: Sun, 3 Apr 2022 22:52:59 +0200 Subject: [PATCH 4/4] Zaktualizuj 'lab2/main.py' --- lab2/main.py | 1 - 1 file changed, 1 deletion(-) diff --git a/lab2/main.py b/lab2/main.py index f0b7a7b..bd5ec87 100644 --- a/lab2/main.py +++ b/lab2/main.py @@ -38,7 +38,6 @@ def create_train_dev_test(): print("\nData test description: ") print(data_test.describe(include="all")) print("\nData dev description: ") - print(data_dev.describe(include="all")) imbd_data = pd.read_csv('imdb_top_1000.csv')