Ravi21 commited on
Commit
3933270
1 Parent(s): 09e6de1

Upload app_test.py

Browse files
Files changed (1) hide show
  1. app_test.py +5 -0
app_test.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ import requests
2
+
3
+ resp = requests.post("https://localhost:5000/predict", files={"file": open('dataset/test_img/input.png','rb')})
4
+
5
+ print(resp)