I am attempting to deploy my H2O AutoML model to AWS following the instructions here.
I keep getting the following empty result when I curl
my endpoint:
curl http://<myIP>:8080/model?type=1\&row=value1,value2,value3
{"result":""}
If I don't submit any value for row
, I get results:
curl http://<myIP>:8080/model?type=1\&row=
{"result":"Prediction = 0.723482072353363, 0.17580199241638184, 0.04721980169415474, 0.053496140986680984"}
If I submit a single value for row
, I get the same results:
curl http://<myIP>:8080/model?type=1\&row=value1
{"result":"Prediction = 0.723482072353363, 0.17580199241638184, 0.04721980169415474, 0.053496140986680984"}
I have connected to the instance via SSH and confirmed my model has been downloaded to the correct location on boot.
Can anyone help me figure out how I'm supposed to be submitting row data to my endpoint? Thanks!