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
I am trying to create a custom Dockerfile using the tf1:0.12.1 image to run code using tf 1.13.1.
Since this image has tf 1.15.0 installed I have to manually override the install to tf 1.13.1
FROM twosixarmory/tf1:0.12.1
RUN apt-get update
RUN apt-get install ffmpeg libsm6 libxext6 -y
RUN pip install git+https://github.com/qubvel/classification_models.git
RUN pip install keras==2.3.0 tqdm xxhash hickle requests wget googledrivedownloader colorama tabulate imageio opencv-python albumentations tensorflow-gpu==1.13.1 tensorflow-datasets==3.0.0
But I am still unable to run.
I am able to run it using tf 1.13.1 without using armory though.
So, by any chance do you have any image with tf 1.13.1 installed? Or any suggestions to fix it?
I think it's a version difference between tensorflow==1.13.1 and other preinstalled libraries in the armory image.
Thank you in advance.
The text was updated successfully, but these errors were encountered:
I am trying to create a custom Dockerfile using the tf1:0.12.1 image to run code using tf 1.13.1.
Since this image has tf 1.15.0 installed I have to manually override the install to tf 1.13.1
But I am still unable to run.
I am able to run it using tf 1.13.1 without using armory though.
So, by any chance do you have any image with tf 1.13.1 installed? Or any suggestions to fix it?
I think it's a version difference between tensorflow==1.13.1 and other preinstalled libraries in the armory image.
Thank you in advance.
The text was updated successfully, but these errors were encountered: