DeepDreamVideo
DeepDreamVideo copied to clipboard
running DeepDreamVideo in Docker container
I have DeepDream installed in a docker
container of mine, but it was not built form the docker image you referred to at the bottom of your page.
it was this one instead:
https://github.com/VISIONAI/clouddream
if, inside the proper folder in my container I do like so:
mkdir custom
touch Dockerfile
vim Dockerfile
and then, in Dockerfile:
FROM visionai/clouddream
#Download my custom model
RUN /opt/caffe/scripts/download_model_binary.py /opt/caffe/models/bvlc_alexnet
build it:
docker build -t custom/clouddream
and finally clone into your github page
https://github.com/google/deepdream
will It work with your model?