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
30
votes
4 answers

Getting a PrivateKey object from a .p12 file in Java

As the title suggests, I have .p12 file required for google service account api access. In order to get the credential to connect to the api, there's a field .setServiceAccountPrivateKey(PrivateKey privateKey). So, what's the easiest way in which I…
gratsby
  • 3,107
  • 4
  • 20
  • 20
23
votes
5 answers

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 was considering. However, there is some vendor…
Oddthinking
  • 24,359
  • 19
  • 83
  • 121
23
votes
1 answer

Update has no effect on scores (Prediction API)

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 = @prediction.trainedmodels.update.request_schema.new …
gmv
  • 231
  • 1
  • 4
20
votes
2 answers

Use cases for Google Prediction API

Has anyone here been using the Google Prediction API? For what? Did it "work"?
user94154
  • 16,176
  • 20
  • 77
  • 116
15
votes
2 answers

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 Google Prediction I have followed the install…
Btibert3
  • 38,798
  • 44
  • 129
  • 168
14
votes
1 answer

How does google prediction API work

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 classification etc. Which technique do you think Google is…
Yuval Rimar
  • 1,055
  • 12
  • 22
12
votes
1 answer

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 graph databases that supposedly are optimized for…
ina
  • 19,167
  • 39
  • 122
  • 201
6
votes
1 answer

Google Cloud - oauth2client.client.HttpAccessTokenRefreshError: invalid_grant

I got this error message when trying to execute Google Prediction API. raise HttpAccessTokenRefreshError(error_msg, status=resp.status) oauth2client.client.HttpAccessTokenRefreshError: invalid_grant My credential details { "scopes": [], …
Nurdin
  • 23,382
  • 43
  • 130
  • 308
5
votes
2 answers

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 2,000,000 products in 200 different categories I have…
Samfriend
  • 55
  • 2
  • 8
4
votes
2 answers

How to Remove Powered By Google from Prediction in Flutter

I want to know if is there any way I can remove powered by Google logo from Prediction plugin in Flutter. Thanks
Mohammad Tayyab
  • 696
  • 4
  • 22
4
votes
2 answers

Understanding inputs for google ai platform custom prediction routines

I am following this documentation on custom prediction routines and I am trying to understand how the inputs for custom prediction routine looks like. The code to send the input looks like this: instances = [ [6.7, 3.1, 4.7, 1.5], …
DarioB
  • 1,349
  • 2
  • 21
  • 44
3
votes
4 answers

Return Score from AutoML PredictResponse Object

I'm trying to pull the score values out of my google automl PredictResponse Object. the object returned from the API looks as follows: payload { classification { score: 0.989063024521 } display_name: "No" } payload { classification { …
3
votes
1 answer

What is the simplest way of deploying a Keras/Tensorflow CNN available as .model .json and .h5 on Google ML Engine?

I have trouble executing predictions using a Keras CNN (VGGNet) model. It is a multi-class-classification, taking a 96x96x3 image tensor as input, yielding a probability vector of size 114 (classes). It is accepted by Google ML Engine as a valid…
3
votes
2 answers

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?
iftee
  • 369
  • 1
  • 13
3
votes
5 answers

Python - IndentationError: unexpected indent

I don't know what mistakes I've done. Only tab, no space. I grab this code from this tutorial, http://cloudacademy.com/blog/google-prediction-api/. (I'm using PyCharm for development). Error…
Nurdin
  • 23,382
  • 43
  • 130
  • 308
1
2 3 4 5 6 7 8