File size: 320 Bytes
8c8de64
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import requests
import json

input_text = "Free prize entry now!"
data = {"data": [input_text]}

res = requests.post("http://127.0.0.1:1234/invocations",
                    headers={"Content-Type": "application/json"},
                    data=json.dumps(data))

print(" Kết quả dự đoán:", res.json())