clean up to arxvi

This commit is contained in:
bt3gl 2024-11-17 16:14:15 -08:00
parent f4d00ced80
commit 06b02819dd
55 changed files with 4345 additions and 718 deletions

View file

@ -0,0 +1,44 @@
FROM ubuntu:14.04
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
cmake \
git \
wget \
libatlas-base-dev \
libboost-all-dev \
libgflags-dev \
libgoogle-glog-dev \
libhdf5-serial-dev \
libleveldb-dev \
liblmdb-dev \
libopencv-dev \
libprotobuf-dev \
libsnappy-dev \
protobuf-compiler \
python-dev \
python-numpy \
python-pip \
python-scipy && \
rm -rf /var/lib/apt/lists/*
ENV CAFFE_ROOT=/opt/caffe
WORKDIR $CAFFE_ROOT
ENV CLONE_TAG=master
RUN pip install jupyter
RUN git clone -b ${CLONE_TAG} --depth 1 https://github.com/BVLC/caffe.git . && \
for req in $(cat python/requirements.txt) pydot; do pip install $req; done && \
mkdir build && cd build && \
cmake -DCPU_ONLY=1 .. && \
make -j"$(nproc)"
ENV PYCAFFE_ROOT $CAFFE_ROOT/python
ENV PYTHONPATH $PYCAFFE_ROOT:$PYTHONPATH
ENV PATH $CAFFE_ROOT/build/tools:$PYCAFFE_ROOT:$PATH
RUN echo "$CAFFE_ROOT/build/lib" >> /etc/ld.so.conf.d/caffe.conf && ldconfig
WORKDIR /workspace

1
Deep_Art/docker/dream.ipynb Symbolic link
View file

@ -0,0 +1 @@
../dream/dream.ipynb

1
Deep_Art/docker/flowers.jpg Symbolic link
View file

@ -0,0 +1 @@
../dream/flowers.jpg

View file

@ -0,0 +1 @@
../dream/sky1024px.jpg