You can post your data as a csv file attachment with either url parameters or form fields to the following url:
https://wheatpredictor.azurewebsites.net/api/predict
and it will respond with json data of your results.
make sure you include the ‘model’ parameter for
example in curl:
curl 'https://wheatpredictor.azurewebsites.net/api/predict' \
-F 'model=cnn_single' \
-F 'jumps=1000,1800' \
-F '[email protected]'
This is a list of parameters you can provide the API.