Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -198,5 +198,4 @@ venv.bak/
.mypy_cache/

grpc/tmp.jpg
Dockerfile
run_prod.sh
8 changes: 6 additions & 2 deletions .idea/bl-detect.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 25 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
FROM bluelens/tensorflow:latest-gpu-py3


RUN mkdir /usr/src/app
WORKDIR /usr/src/app

COPY . /usr/src/app

#RUN curl https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-0.12.1-cp35-cp35m-linux_x86_64.whl -o ./tensorflow_gpu-0.12.1-cp35-cp35m-linux_x86_64.whl
#RUN pip3 install tensorflow_gpu-0.12.1-cp35-cp35m-linux_x86_64.whl
RUN pip install --no-cache-dir -r requirements.txt

ENV PYTHONPATH $PYTHONPATH:/usr/src/app

CMD ["python", "grpc/object_detect_server.py"]
39 changes: 0 additions & 39 deletions grpc/feature_extract.py

This file was deleted.

213 changes: 0 additions & 213 deletions grpc/object_detect_all.py

This file was deleted.

Loading