source: vendor/google/apiclient-services/src/Aiplatform/GoogleCloudAiplatformV1SchemaTrainingjobDefinitionAutoMlTablesInputs.php@ e3d4e0a

Last change on this file since e3d4e0a was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 7 days ago

Upload project files

  • Property mode set to 100644
File size: 5.5 KB
Line 
1<?php
2/*
3 * Copyright 2014 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18namespace Google\Service\Aiplatform;
19
20class GoogleCloudAiplatformV1SchemaTrainingjobDefinitionAutoMlTablesInputs extends \Google\Collection
21{
22 protected $collection_key = 'transformations';
23 /**
24 * @var string[]
25 */
26 public $additionalExperiments;
27 /**
28 * @var bool
29 */
30 public $disableEarlyStopping;
31 protected $exportEvaluatedDataItemsConfigType = GoogleCloudAiplatformV1SchemaTrainingjobDefinitionExportEvaluatedDataItemsConfig::class;
32 protected $exportEvaluatedDataItemsConfigDataType = '';
33 /**
34 * @var string
35 */
36 public $optimizationObjective;
37 /**
38 * @var float
39 */
40 public $optimizationObjectivePrecisionValue;
41 /**
42 * @var float
43 */
44 public $optimizationObjectiveRecallValue;
45 /**
46 * @var string
47 */
48 public $predictionType;
49 /**
50 * @var string
51 */
52 public $targetColumn;
53 /**
54 * @var string
55 */
56 public $trainBudgetMilliNodeHours;
57 protected $transformationsType = GoogleCloudAiplatformV1SchemaTrainingjobDefinitionAutoMlTablesInputsTransformation::class;
58 protected $transformationsDataType = 'array';
59 /**
60 * @var string
61 */
62 public $weightColumnName;
63
64 /**
65 * @param string[]
66 */
67 public function setAdditionalExperiments($additionalExperiments)
68 {
69 $this->additionalExperiments = $additionalExperiments;
70 }
71 /**
72 * @return string[]
73 */
74 public function getAdditionalExperiments()
75 {
76 return $this->additionalExperiments;
77 }
78 /**
79 * @param bool
80 */
81 public function setDisableEarlyStopping($disableEarlyStopping)
82 {
83 $this->disableEarlyStopping = $disableEarlyStopping;
84 }
85 /**
86 * @return bool
87 */
88 public function getDisableEarlyStopping()
89 {
90 return $this->disableEarlyStopping;
91 }
92 /**
93 * @param GoogleCloudAiplatformV1SchemaTrainingjobDefinitionExportEvaluatedDataItemsConfig
94 */
95 public function setExportEvaluatedDataItemsConfig(GoogleCloudAiplatformV1SchemaTrainingjobDefinitionExportEvaluatedDataItemsConfig $exportEvaluatedDataItemsConfig)
96 {
97 $this->exportEvaluatedDataItemsConfig = $exportEvaluatedDataItemsConfig;
98 }
99 /**
100 * @return GoogleCloudAiplatformV1SchemaTrainingjobDefinitionExportEvaluatedDataItemsConfig
101 */
102 public function getExportEvaluatedDataItemsConfig()
103 {
104 return $this->exportEvaluatedDataItemsConfig;
105 }
106 /**
107 * @param string
108 */
109 public function setOptimizationObjective($optimizationObjective)
110 {
111 $this->optimizationObjective = $optimizationObjective;
112 }
113 /**
114 * @return string
115 */
116 public function getOptimizationObjective()
117 {
118 return $this->optimizationObjective;
119 }
120 /**
121 * @param float
122 */
123 public function setOptimizationObjectivePrecisionValue($optimizationObjectivePrecisionValue)
124 {
125 $this->optimizationObjectivePrecisionValue = $optimizationObjectivePrecisionValue;
126 }
127 /**
128 * @return float
129 */
130 public function getOptimizationObjectivePrecisionValue()
131 {
132 return $this->optimizationObjectivePrecisionValue;
133 }
134 /**
135 * @param float
136 */
137 public function setOptimizationObjectiveRecallValue($optimizationObjectiveRecallValue)
138 {
139 $this->optimizationObjectiveRecallValue = $optimizationObjectiveRecallValue;
140 }
141 /**
142 * @return float
143 */
144 public function getOptimizationObjectiveRecallValue()
145 {
146 return $this->optimizationObjectiveRecallValue;
147 }
148 /**
149 * @param string
150 */
151 public function setPredictionType($predictionType)
152 {
153 $this->predictionType = $predictionType;
154 }
155 /**
156 * @return string
157 */
158 public function getPredictionType()
159 {
160 return $this->predictionType;
161 }
162 /**
163 * @param string
164 */
165 public function setTargetColumn($targetColumn)
166 {
167 $this->targetColumn = $targetColumn;
168 }
169 /**
170 * @return string
171 */
172 public function getTargetColumn()
173 {
174 return $this->targetColumn;
175 }
176 /**
177 * @param string
178 */
179 public function setTrainBudgetMilliNodeHours($trainBudgetMilliNodeHours)
180 {
181 $this->trainBudgetMilliNodeHours = $trainBudgetMilliNodeHours;
182 }
183 /**
184 * @return string
185 */
186 public function getTrainBudgetMilliNodeHours()
187 {
188 return $this->trainBudgetMilliNodeHours;
189 }
190 /**
191 * @param GoogleCloudAiplatformV1SchemaTrainingjobDefinitionAutoMlTablesInputsTransformation[]
192 */
193 public function setTransformations($transformations)
194 {
195 $this->transformations = $transformations;
196 }
197 /**
198 * @return GoogleCloudAiplatformV1SchemaTrainingjobDefinitionAutoMlTablesInputsTransformation[]
199 */
200 public function getTransformations()
201 {
202 return $this->transformations;
203 }
204 /**
205 * @param string
206 */
207 public function setWeightColumnName($weightColumnName)
208 {
209 $this->weightColumnName = $weightColumnName;
210 }
211 /**
212 * @return string
213 */
214 public function getWeightColumnName()
215 {
216 return $this->weightColumnName;
217 }
218}
219
220// Adding a class alias for backwards compatibility with the previous class name.
221class_alias(GoogleCloudAiplatformV1SchemaTrainingjobDefinitionAutoMlTablesInputs::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1SchemaTrainingjobDefinitionAutoMlTablesInputs');
Note: See TracBrowser for help on using the repository browser.