-
Notifications
You must be signed in to change notification settings - Fork 388
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dockerfile #3
Comments
Perhaps it will be better to use a lower amount of memory and initially set: Also, we can use:
Instead of |
Thanks for your suggestions. Ubuntu or Debian aside, the image I picked includes the right CUDA and CUDNN versions necessary to run this work on a GPU. At the time I wrote and posted this Dockerfile, there were missing dependencies in the Can I ask, did you test your suggestions? |
Thank you for sharing. I didn't notice it at first. I did test my code, but not the whole. When data started to download, in my thoughts, it worked well. But my mistake is that I didn't try to run the model. Maybe the process would show me the incomplete (in your words) requirements. |
Can I add your part with Ubuntu to Dockerfile? |
Please, add away! |
I make DockerHub public repo cybersatori/image-gpt by Dockerfile upper, you can add it by |
I'm having this error: |
Thanks for publishing this work. Here is a Dockerfile that builds a compatible runtime environment for executing this model.
Clone this repo, and drop this Dockerfile in the root of the repo. Build the container:
docker build -t image-gpt .
With the root of repo as your current directory, run the container:
docker run -it -v $(pwd):/app -v $HOME/image-gpt-data:/root image-gpt bash
The text was updated successfully, but these errors were encountered: