torch library
Some checks failed
s444354-training/pipeline/head There was a failure building this commit

This commit is contained in:
Adrian Charkiewicz 2022-05-07 03:02:48 +02:00
parent aa34f59acb
commit 157dfb0bfb

View File

@ -2,10 +2,16 @@ FROM ubuntu:latest
FROM tensorflow/tensorflow:latest FROM tensorflow/tensorflow:latest
RUN apt update && apt install -y RUN apt update && apt install -y
RUN apt-get install -y python3 RUN apt-get install -y python3
RUN apt-get install -y unzip RUN apt install python3-pip -y
RUN apt install unzip -y
RUN pip3 install --upgrade pip
RUN apt-get install -y python3-pip RUN apt-get install -y python3-pip
RUN apt-get install unzip RUN apt-get install unzip
RUN apt-get install wget RUN apt-get install wget
RUN pip3 install jovian
RUN pip3 install torch
RUN pip3 install seaborn
RUN pip3 install torchvision
# RUN python3 -m pip install kaggle # RUN python3 -m pip install kaggle
RUN python3 -m pip install pandas RUN python3 -m pip install pandas
RUN pip3 install matplotlib RUN pip3 install matplotlib