You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FROM tensorflow/tensorflow:1.11.0-rc2-devel-gpu-py3
RUN apt-get -y update
RUN apt-get -y install git
RUN pip install --upgrade pip
RUN pip install imageio
RUN pip install matplotlib
RUN pip install numpy
RUN pip install ipython
RUN pip install ipykernel
RUN pip install opencv-python
RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
CMD [ "/bin/bash" ]
I could run the cell
'''building U-Net model'''
model = Model.getModel(input_shape=(in_h,in_w,3))
model.summary()
A requirements.txt would help reproducibility. Thanks.
The text was updated successfully, but these errors were encountered: