Questions tagged [google-prediction]

Google's cloud-based machine learning tools can help analyze your data to add machine learning features to your applications.

Google's cloud-based machine learning tools can help analyze your data to add machine learning features to your applications.

Learn more about the Google Prediction API: https://developers.google.com/prediction/

111 questions
0
votes
0 answers

google prediction api insert versus update

When using the Google Prediction API (v1.6) for classification, I get different behavior when using "insert" to train the model versus "update". If I upload a csv file to storage and train (insert) using it or use the insert method and include…
DigitalEd
  • 260
  • 1
  • 3
  • 10
0
votes
1 answer

What is the normal flow for oAuth2 Google API for Server Applications

I am writing a simple Google API application that will help the user with some tasks using the Google Prediction API. I am intending to use the API from a Server-Server perspective, so I am really not requesting data from the end-user. Everywhere I…
smorhaim
  • 778
  • 1
  • 9
  • 24
0
votes
1 answer

Google Prediction API : Error 500 Internal Server Error

I'm trying to run the Prediction API example. Everything is configured by following these instructions, but the only message I received is: 500 Internal Server Error { "code" : 500, "message" : null } Process finished with exit code 1 Could…
0
votes
1 answer

Google Prediction Training Error Message

I'm trying to train a model to use in the Google Prediction API. I uploaded a csv with ~1 million rows and ~10 columns ~12 hours ago. The trainingStatus has been "RUNNING" every time I've checked it over the past few hours but when I make a…
Greg
  • 8,574
  • 21
  • 67
  • 109
0
votes
1 answer

Google prediction api javascript "message": "Login Required"

I was trying to implement a simple JavaScript client that will allow me to exploit the google prediction; I tried to mimic the authentication (Oauth 2.0) in this tutorial with google prediction. This my code: …
0
votes
1 answer

Google prediction api, Having the output as a list that have a variable size

I want to train a model that will allow me to generat a LIST of tag related to certain text, my output list will have variable size depending in the context. In the examples that i found, the model return always one output. I am wondering if the…
0
votes
1 answer

Error 500 when using Google_PredictionService Google API sample

Updated: My project is to be able to provide a web based application which allows the visitor to upload/download/delete files using GoogleDrive. The project requires it to be server based, which does not require credentials from the user to be able…
Scott Fleming
  • 452
  • 6
  • 14
0
votes
2 answers

Sentiment analysis Google Prediction API

I am reading about the Google Prediction API and can't figure out a part of the docs. From the use cases I am stuck a bit on this part: Each line can only have one label assigned, but you can apply multiple labels to one example by repeating an…
Jimmy Kane
  • 16,223
  • 11
  • 86
  • 117
0
votes
2 answers

Training Model for Sentiment Analysis with Google Prdection API

I am planning to use Google Prediction API for Sentiment Analysis. How can I generate the Traning model for this? Or where can I have any standard training model available for commercial use? I have already tried with the Sentiment Predictor…
0
votes
2 answers

Google Prediction API error "The project entered is invalid - it should be the numeric Project Number from Google APIs Console"

My script have been working on triggers for many months. But last days error reports containing this error are sent to me. Script was not changed for sure, but project is shared between team members. Project ID used in script is valid for sure,…
psu
  • 111
  • 1
  • 10
0
votes
1 answer

java.security.AccessControlException: access denied

I have create Google app engine project which using Prediction Api 1.5v.It work fine for me when i run it on local mean localhost:8888 using Google o2Auth Authentication with client id and client secret.but when i have run it live the it will given…
Charnjeet Singh
  • 3,056
  • 6
  • 35
  • 65
0
votes
1 answer

Predicton API + GAE: Invalid Credentials

I'm trying to make my GAE (python) Application talk to the Prediction API, but I keep getting HttpError: The GAE code I have is: from handler_request import Request_Handler # My…
Michael Gradek
  • 2,628
  • 3
  • 29
  • 35
0
votes
1 answer

Is there any Java client example for the Update of a Google Prediction TrainedModel?

I am using the Google Prediction v1.5 Java Client with the "PredictionSample.java" sample program. I want to know that is there any jave example for creating the "com.google.api.services.prediction.model.Update" object. I have trained a model with…
user1129812
  • 2,859
  • 8
  • 32
  • 45
0
votes
2 answers

Could a TrainedModel be re-used in Google Prediction?

I am using Google Prediction v1.5 (Java client) with the "PredictionSample.java" sample program. In "PredictionSample.java", I specify "MODEL_ID" as "mymodel", "APPLICATION_NAME" as "MyApplication" and train the model using "language_id.txt" stored…
user1129812
  • 2,859
  • 8
  • 32
  • 45
0
votes
1 answer

Using Google Prediction API outside Google App Engine?

I tried to search for algorithms about predicting future trends and I found Google Prediction API a good fit for me. I wanted to use it in my project but I can't find any useful information about their RESTful API and their examples are for Google…
Licson
  • 2,231
  • 18
  • 26