-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmakefile
More file actions
15 lines (12 loc) · 689 Bytes
/
makefile
File metadata and controls
15 lines (12 loc) · 689 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.PHONY:
server:
uvicorn tflite_server:app --host 0.0.0.0 --port 8080
.PHONY:
workers:
sh build_web_workers.sh http://localhost:8080
.PHONY:
models:
curl https://storage.googleapis.com/download.tensorflow.org/models/tflite/task_library/style_transfer/android/magenta_arbitrary-image-stylization-v1-256_int8_prediction_1.tflite \
-o assets/models/magenta_arbitrary-image-stylization-v1-256_int8_prediction_1.tflite
curl https://storage.googleapis.com/download.tensorflow.org/models/tflite/task_library/style_transfer/android/magenta_arbitrary-image-stylization-v1-256_int8_transfer_1.tflite \
-o assets/models/magenta_arbitrary-image-stylization-v1-256_int8_transfer_1.tflite