source: vendor/google/apiclient-services/src/Aiplatform/GoogleCloudAiplatformV1SupervisedTuningDatasetDistribution.php

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

Upload project files

  • Property mode set to 100644
File size: 2.8 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 GoogleCloudAiplatformV1SupervisedTuningDatasetDistribution extends \Google\Collection
21{
22 protected $collection_key = 'buckets';
23 /**
24 * @var string
25 */
26 public $billableSum;
27 protected $bucketsType = GoogleCloudAiplatformV1SupervisedTuningDatasetDistributionDatasetBucket::class;
28 protected $bucketsDataType = 'array';
29 public $max;
30 public $mean;
31 public $median;
32 public $min;
33 public $p5;
34 public $p95;
35 /**
36 * @var string
37 */
38 public $sum;
39
40 /**
41 * @param string
42 */
43 public function setBillableSum($billableSum)
44 {
45 $this->billableSum = $billableSum;
46 }
47 /**
48 * @return string
49 */
50 public function getBillableSum()
51 {
52 return $this->billableSum;
53 }
54 /**
55 * @param GoogleCloudAiplatformV1SupervisedTuningDatasetDistributionDatasetBucket[]
56 */
57 public function setBuckets($buckets)
58 {
59 $this->buckets = $buckets;
60 }
61 /**
62 * @return GoogleCloudAiplatformV1SupervisedTuningDatasetDistributionDatasetBucket[]
63 */
64 public function getBuckets()
65 {
66 return $this->buckets;
67 }
68 public function setMax($max)
69 {
70 $this->max = $max;
71 }
72 public function getMax()
73 {
74 return $this->max;
75 }
76 public function setMean($mean)
77 {
78 $this->mean = $mean;
79 }
80 public function getMean()
81 {
82 return $this->mean;
83 }
84 public function setMedian($median)
85 {
86 $this->median = $median;
87 }
88 public function getMedian()
89 {
90 return $this->median;
91 }
92 public function setMin($min)
93 {
94 $this->min = $min;
95 }
96 public function getMin()
97 {
98 return $this->min;
99 }
100 public function setP5($p5)
101 {
102 $this->p5 = $p5;
103 }
104 public function getP5()
105 {
106 return $this->p5;
107 }
108 public function setP95($p95)
109 {
110 $this->p95 = $p95;
111 }
112 public function getP95()
113 {
114 return $this->p95;
115 }
116 /**
117 * @param string
118 */
119 public function setSum($sum)
120 {
121 $this->sum = $sum;
122 }
123 /**
124 * @return string
125 */
126 public function getSum()
127 {
128 return $this->sum;
129 }
130}
131
132// Adding a class alias for backwards compatibility with the previous class name.
133class_alias(GoogleCloudAiplatformV1SupervisedTuningDatasetDistribution::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1SupervisedTuningDatasetDistribution');
Note: See TracBrowser for help on using the repository browser.