Spaces:
Runtime error
Runtime error
File size: 452 Bytes
f161731 daf7bc7 f161731 daf7bc7 8f6a226 f161731 8f6a226 daf7bc7 f161731 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
CURRENT_DIR = $(shell pwd)
model-server: style
docker run --gpus all -p 8500:8500 --mount type=bind,source=${CURRENT_DIR}/style,target=/models/style -e MODEL_NAME=style -t tensorflow/serving:latest-gpu
model-server-cpu: style
docker run -p 8500:8500 --mount type=bind,source=${CURRENT_DIR}/style,target=/models/style -e MODEL_NAME=style -t tensorflow/serving
app:
exec streamlit run streamlit_app.py
webcam:
exec streamlit run webcam_stream.py
|