numeco17/numeco17-dspt
0
Sentiment Classification API
Flask API for the Data Science Project sentiment classification model.
Local test
python app.pyIn a second PowerShell terminal:
Invoke-RestMethod -Uri "http://localhost:8000/"$body = @{
items = @(
@{
id = "test"
text = "I love my new sentiment classification API!"
}
)
} | ConvertTo-Json -Depth 5
Invoke-RestMethod `
-Uri "http://localhost:8000/" `
-Method POST `
-ContentType "application/json" `
-Body $body