This commit is contained in:
Szymon Parafiński 2022-04-03 23:13:49 +02:00
commit b69d7e580e
2 changed files with 4 additions and 2 deletions

View File

@ -21,4 +21,7 @@ WORKDIR /app
COPY lab2/download.sh . COPY lab2/download.sh .
COPY lab2/main.py . COPY lab2/main.py .
RUN ls -la
RUN chmod +x ./download.sh
RUN ls -la
RUN ./download.sh RUN ./download.sh

View File

@ -38,10 +38,9 @@ def create_train_dev_test():
print("\nData test description: ") print("\nData test description: ")
print(data_test.describe(include="all")) print(data_test.describe(include="all"))
print("\nData dev description: ") print("\nData dev description: ")
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() drop_relevant_columns()