I'm trying to simply call to a REST API endpoint of a model I trained and I'm having issues. I keep called the endpoint and getting a 404.
Does someone know of a basic tutorial on how to just get this endpoint setup? I just want to run it in Postman and test it works so I can keep moving on my project.
Any help would be appreciated! Thanks in advance!
Found my answer, hope this will be useful to someone else:
https://ml.googleapis.com/v1/projects/{projectname}/models/{modelname}/versions/{versionname}:predict
{projectname} - the name of your project, all lowercase
{modelname} - the name of your model, all lowercase
{versionname} - the name of your version, all lowercase