Class: Google::Apis::PredictionV1_3::PredictionService

Inherits:
Core::BaseService show all
Defined in:
generated/google/apis/prediction_v1_3/service.rb

Overview

Prediction API

Lets you access a cloud hosted machine learning service that makes it easy to build smart apps

Examples:

require 'google/apis/prediction_v1_3'

Prediction = Google::Apis::PredictionV1_3 # Alias the module
service = Prediction::PredictionService.new

See Also:

Instance Attribute Summary collapse

Attributes inherited from Core::BaseService

#authorization, #base_path, #batch_path, #client, #client_options, #request_options, #root_url, #upload_path

Instance Method Summary collapse

Methods inherited from Core::BaseService

#batch, #batch_upload, #fetch_all, #http

Methods included from Core::Logging

#logger

Constructor Details

#initializePredictionService

Returns a new instance of PredictionService



52
53
54
55
# File 'generated/google/apis/prediction_v1_3/service.rb', line 52

def initialize
  super('https://www.googleapis.com/', 'prediction/v1.3/')
  @batch_path = 'batch/prediction/v1.3'
end

Instance Attribute Details

#keyString

Returns API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.

Returns:

  • (String)

    API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.



39
40
41
# File 'generated/google/apis/prediction_v1_3/service.rb', line 39

def key
  @key
end

#quota_userString

Returns Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

Returns:

  • (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.



45
46
47
# File 'generated/google/apis/prediction_v1_3/service.rb', line 45

def quota_user
  @quota_user
end

#user_ipString

Returns IP address of the site where the request originates. Use this if you want to enforce per-user limits.

Returns:

  • (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.



50
51
52
# File 'generated/google/apis/prediction_v1_3/service.rb', line 50

def user_ip
  @user_ip
end

Instance Method Details

#delete_training(data, fields: nil, quota_user: nil, user_ip: nil, options: nil) {|result, err| ... }

This method returns an undefined value.

Delete a trained model

Parameters:

  • data (String)

    mybucket/mydata resource in Google Storage

  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

  • result (NilClass)

    No result returned for this method

  • err (StandardError)

    error object if request failed

Raises:



119
120
121
122
123
124
125
126
# File 'generated/google/apis/prediction_v1_3/service.rb', line 119

def delete_training(data, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
  command =  make_simple_command(:delete, 'training/{data}', options)
  command.params['data'] = data unless data.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

#get_training(data, fields: nil, quota_user: nil, user_ip: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::PredictionV1_3::Training

Check training status of your model

Parameters:

  • data (String)

    mybucket/mydata resource in Google Storage

  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:



152
153
154
155
156
157
158
159
160
161
# File 'generated/google/apis/prediction_v1_3/service.rb', line 152

def get_training(data, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
  command =  make_simple_command(:get, 'training/{data}', options)
  command.response_representation = Google::Apis::PredictionV1_3::Training::Representation
  command.response_class = Google::Apis::PredictionV1_3::Training
  command.params['data'] = data unless data.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

#insert_training(training_object = nil, fields: nil, quota_user: nil, user_ip: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::PredictionV1_3::Training

Begin training your model

Parameters:

  • training_object (Google::Apis::PredictionV1_3::Training) (defaults to: nil)
  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:



186
187
188
189
190
191
192
193
194
195
196
# File 'generated/google/apis/prediction_v1_3/service.rb', line 186

def insert_training(training_object = nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
  command =  make_simple_command(:post, 'training', options)
  command.request_representation = Google::Apis::PredictionV1_3::Training::Representation
  command.request_object = training_object
  command.response_representation = Google::Apis::PredictionV1_3::Training::Representation
  command.response_class = Google::Apis::PredictionV1_3::Training
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

#predict_hostedmodel(hosted_model_name, input_object = nil, fields: nil, quota_user: nil, user_ip: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::PredictionV1_3::Output

Submit input and request an output against a hosted model

Parameters:

  • hosted_model_name (String)

    The name of a hosted model

  • input_object (Google::Apis::PredictionV1_3::Input) (defaults to: nil)
  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:



82
83
84
85
86
87
88
89
90
91
92
93
# File 'generated/google/apis/prediction_v1_3/service.rb', line 82

def predict_hostedmodel(hosted_model_name, input_object = nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
  command =  make_simple_command(:post, 'hostedmodels/{hostedModelName}/predict', options)
  command.request_representation = Google::Apis::PredictionV1_3::Input::Representation
  command.request_object = input_object
  command.response_representation = Google::Apis::PredictionV1_3::Output::Representation
  command.response_class = Google::Apis::PredictionV1_3::Output
  command.params['hostedModelName'] = hosted_model_name unless hosted_model_name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

#predict_training(data, input_object = nil, fields: nil, quota_user: nil, user_ip: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::PredictionV1_3::Output

Submit data and request a prediction

Parameters:

  • data (String)

    mybucket/mydata resource in Google Storage

  • input_object (Google::Apis::PredictionV1_3::Input) (defaults to: nil)
  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:



223
224
225
226
227
228
229
230
231
232
233
234
# File 'generated/google/apis/prediction_v1_3/service.rb', line 223

def predict_training(data, input_object = nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
  command =  make_simple_command(:post, 'training/{data}/predict', options)
  command.request_representation = Google::Apis::PredictionV1_3::Input::Representation
  command.request_object = input_object
  command.response_representation = Google::Apis::PredictionV1_3::Output::Representation
  command.response_class = Google::Apis::PredictionV1_3::Output
  command.params['data'] = data unless data.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

#update_training(data, update_object = nil, fields: nil, quota_user: nil, user_ip: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::PredictionV1_3::Training

Add new data to a trained model

Parameters:

  • data (String)

    mybucket/mydata resource in Google Storage

  • update_object (Google::Apis::PredictionV1_3::Update) (defaults to: nil)
  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

    Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.

  • user_ip (String)

    IP address of the site where the request originates. Use this if you want to enforce per-user limits.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:



261
262
263
264
265
266
267
268
269
270
271
272
# File 'generated/google/apis/prediction_v1_3/service.rb', line 261

def update_training(data, update_object = nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
  command =  make_simple_command(:put, 'training/{data}', options)
  command.request_representation = Google::Apis::PredictionV1_3::Update::Representation
  command.request_object = update_object
  command.response_representation = Google::Apis::PredictionV1_3::Training::Representation
  command.response_class = Google::Apis::PredictionV1_3::Training
  command.params['data'] = data unless data.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end