| 1234567891011121314151617181920212223242526272829303132333435 |
- root@63e90a371fc6:/facenet# python src/app.py
- 2023-03-28 13:47:19.177041: I tensorflow/core/platform/cpu_feature_guard.cc:140] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA
- Model directory: /facenet/data/premodel/20180408-102900
- Metagraph file: model-20180408-102900.meta
- Checkpoint file: model-20180408-102900.ckpt-90
- load time: 21.270993947982788s
- * Serving Flask app "app" (lazy loading)
- * Environment: production
- WARNING: This is a development server. Do not use it in a production deployment.
- Use a production WSGI server instead.
- * Debug mode: off
- * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
- Creating networks and loading parameters
- mtcnn time: 1.17329740524292s
- run time: 0.43819141387939453s
- Images:
- 0: /facenet/img1.jpg
- 1: /facenet/img2.jpg
- Distance matrix
- 0 1
- 0 0.0000 0.8516
- 1 0.8516 0.0000
- 127.0.0.1 - - [28/Mar/2023 13:47:57] "POST / HTTP/1.1" 200 -
- Creating networks and loading parameters
- mtcnn time: 0.884418249130249s
- run time: 0.09454512596130371s
- Images:
- 0: /facenet/img1.jpg
- 1: /facenet/img2.jpg
- Distance matrix
- 0 1
- 0 0.0000 0.8516
- 1 0.8516 0.0000
|