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
1
vote
1 answer

Error while importing Training class in Google Prediction API

I'm trying to run PredictionSample in google-api-java-client-samples. But I get import error. Project can't find Training.java file in google client library. I have imported all the required libraries and included in class path. Here I get…
Isuru
  • 3,818
  • 13
  • 49
  • 64
1
vote
1 answer

Clock Trigger Builder Not calling function when scheduled - Google sheets app Script

I am using the app script provided by Google to access their prediction API through sheets. I am trying to predict thousands of rows at once, however, after 6 minutes the maximum execution time is reached at the code stops. I implemented a solution…
1
vote
1 answer

google Prediction api few Instance Error

I am new in Google prediction api. I created the bucket and uploaded the file to bucket. I have the following the error in prediction.trainedmodels.get method. But I tried training language_id.txt that file working fine. what is the issue in my …
user3046205
  • 131
  • 1
  • 2
  • 13
1
vote
0 answers

Enabling Prediction API in Google API Console

I am trying enable prediction API for one of my project where i have enabled billing. But whenever i try to enable that service from old console it gives this error "An error has occurred. Please retry later." When i am trying from new console it…
Deepesh Shetty
  • 1,116
  • 3
  • 18
  • 43
1
vote
1 answer

Get only the top 10 results of Google Prediction instead of all results

I have implemented a model that maps the incoming data into one of 1000 categories (label) available. For each entry, the Google Prediction returns all categories in 1000. Is there any way to make the Google Prediction return, for example, only the…
1
vote
2 answers

Google Prediction max CSV size?

I uploading a 1.8Gb CSV file on Google Cloud Storage. When I start the training from the Google API Explorer I get an error: { "error": { "errors": [ { "domain": "global", "reason": "invalid", "message": "Data size limit…
Martin Magakian
  • 3,746
  • 5
  • 37
  • 53
1
vote
1 answer

Module object has no attribute 'argpaser' ---- Python

I'm having an error on a python file. What it does is to get acces to an specific google API. OAuth2.0. But that's not the wrong part. The wrong part takes part of argparse (Retriving arguments from console by adding --something=""). Here's my…
Marc Ortiz
  • 2,242
  • 5
  • 27
  • 46
1
vote
1 answer

Learning Google Prediction API with JSON data

I've found some samples of using Google Prediction API, but there are only CSV data used in sample. I want to feed Prediction API with data organized like this: [{ number: 1, type: 0, channels: [ [1, 5, 3, ...], [7, 1,…
skayred
  • 10,603
  • 10
  • 52
  • 94
1
vote
0 answers

Issue accessing Prediction Trained Model from Google App Engine

I'm having a problem accessing a trained model I've created in Google prediction via Google App Engine. I've implemented all the steps in the article here... https://developers.google.com/appengine/articles/prediction_service_accounts When I deploy…
1
vote
1 answer

How to automatic classification of app user reviews?

I have received tens of thousands of user reviews on the app. I know the meaning of many of the comments are the same. I can not read all these comments. Therefore, I would like to use a python program to analyze all comments, Identify the most…
Sky
  • 71
  • 1
  • 2
  • 10
1
vote
1 answer

Google API Auth from the commandline (for Google Predict)

I'm trying to follow this guide to play around with Google Predict from the commandline: http://thoughts.inphina.com/2010/10/17/getting-started-with-google-prediction-api-machine-learning-on-cloud/ Unfortunately I'm not able to get past the…
pagid
  • 13,559
  • 11
  • 78
  • 104
1
vote
2 answers

Connecting to Prediction API from Google API Consol using service account

I am trying to use the Google Prediction API for the first time. I am just following the steps given in the article https://developers.google.com/appengine/articles/prediction_service_accounts. I am getting a strange problem while executing step 2.4…
1
vote
1 answer

Google Prediction API Service Authentication in .NET

I'm trying to build a .NET service application that would access Google's Prediction API. This application is a service (no user interaction) so I'd like to know how it would be possible to authenticate to Google API automatically (without having it…
Cristian Lupascu
  • 39,078
  • 16
  • 100
  • 137
0
votes
1 answer

Error in training data in Google Prediction API using PHP

I am using the Google Prediction API in PHP. The authorization is done successfully using OAuth 2.0. I have my data in csv files on the cloud. I gave its location using setDataLocation method in Training class. But I got the following error while…
0
votes
1 answer

Google Cloud Platform AutoML prediction interval showing 0 as min and max

I train a regression model using GCP AutoML tables and I can make batch predictions as well as online ones. But I need the prediction interval that is always showing me 0 as min and max value. I retrained the model again but it's still not showing…