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 here: https://developers.google.com/prediction/
0
votes
1answer
38 views
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 ...
0
votes
2answers
33 views
Google app engine and prediction API (error import)
Please help me to solve this error? I'm doing this exercise on app engine (https://developers.google.com/appengine/articles/prediction_service_accounts) , but I'm stuck in step 6.2 because I raise ...
0
votes
1answer
63 views
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,
...
0
votes
0answers
62 views
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... ...
0
votes
0answers
86 views
Error in try prediction api code
I am trying to run the try prediction code in google app engine . I have downloaded the code from here . while trying to run as a web application in local server / when deployed to GAE.Im getting an ...
0
votes
1answer
52 views
Correct format for multi feature csvinstance array in google prediction api
I have correctly and successfully set up training data and can run a prediction with expected outcomes if I use the API explorer interface in a certain way for the Google prediction API.
I can also ...
0
votes
0answers
119 views
I have a bug using google prediction api!!! help me
from apiclient.discovery import build
from oauth2client.appengine import AppAssertionCredentials
from google.appengine.api import memcache
# global values
datafile = "my_datafile"
model_id = ...
1
vote
2answers
677 views
Recommendation engine using google-prediction-api?
In google's prediction api page, it says we can use it for recommendation of webpages / products...
Can someone please show me how, for example:
I have 500,000 members purchased history
I have ...
0
votes
1answer
71 views
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 ...
14
votes
2answers
745 views
Google Prediction using R
Has anyone successfully used the Google Predication API from within R? My goal is to perform the following tasks:
Upload and manage the data in Google Storage
Use this data to train a model from ...
0
votes
1answer
351 views
Using app script to pass input from .csv file in Google Storage to Prediction API
how can I use app script to pass input from .csv file in Google Storage so that I can make bulk predictions (>10,000) with the Prediction API? I have created and trained my prediction model using the ...
0
votes
1answer
73 views
Latest version of Google Prediction API on Google Apps Script please
I have successfully added Google Prediction API on my Google Apps Script. However the version selector shows only 1.2 for the Prediction API. The latest version is 1.5 and it has been released for a ...
2
votes
0answers
140 views
Update has no effect on scores (Prediction API)
Background
I'm experimenting with the language_id.txt dataset from the Google Prediction example. Right now I'm trying to update the model with the following method:
def update(label, data)
input ...
1
vote
1answer
85 views
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/
...
1
vote
2answers
321 views
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 ...
1
vote
1answer
375 views
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 ...
0
votes
1answer
157 views
Google Prediction API: programmatic vs. API Explorer access and “User Rate Limit Exceeded” error.
I'm having a problem using the Google Prediction API. I don't know what information might be relevant so I will provide everything that may be relevant. I apologize if this is too much information. ...
0
votes
1answer
241 views
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 ...
1
vote
3answers
240 views
Update Google Prediction model in PHP
I'm trying to update my model in php. I can train and predict but I can't update. Maybe it's because of the use of PUT but I can't find the problem. Here is the code:
$authCode = $_GET['token'];
$man ...
4
votes
3answers
1k views
How does google prediction API work [closed]
Can someone predict :) or guess how does the Google Prediction API work under the hood?
I know there are some machine learning techniques:
Decision Trees, Neuron networks, naive Bayesian ...
7
votes
0answers
297 views
Google Prediction API vs Graph Databases for Generated Recommendations?
(I admit I am no expert in graph databases or NoSQL, having only used it for a few hobby projects so far.)
I've been using technologies like InfiniteGraph and Stig for recommendations - these are ...
2
votes
1answer
596 views
“Missing Access Token” in google-api gem
I'm trying to use the command like google-api gem with the prediction API. I think I've been doing this exactly as I've been reading, but it keeps giving me the error "Missing Access Token".
First I ...
15
votes
2answers
2k views
Use cases for Google Prediction API
Has anyone here been using the Google Prediction API? For what? Did it "work"?
3
votes
2answers
690 views
Continuous prediction in Google Prediction API?
Is there any announcement about when Google will launch continuous prediction. Currently is there any trick to predict stock prices using Google's prediction API?
8
votes
3answers
2k views
Open Alternatives to Google Prediction API
A recent announcement by Google about the Google Prediction API sounded very interesting. It could be useful for a project that is coming up, and would probably do a better job than some custom code I ...