Initial commit

This commit is contained in:
三洋三洋
2024-02-11 08:06:50 +00:00
commit f057490bdb
56 changed files with 815 additions and 0 deletions

11
src/client_demo.py Normal file
View File

@@ -0,0 +1,11 @@
import requests
url = "http://127.0.0.1:8000/predict"
img_path = "/your/image/path/"
data = {"img_path": img_path}
response = requests.post(url, json=data)
print(response.text)