source: vendor/google/apiclient-services/src/Aiplatform/GoogleCloudAiplatformV1DatasetStats.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: 4.6 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 GoogleCloudAiplatformV1DatasetStats extends \Google\Collection
21{
22 protected $collection_key = 'userDatasetExamples';
23 /**
24 * @var string
25 */
26 public $totalBillableCharacterCount;
27 /**
28 * @var string
29 */
30 public $totalTuningCharacterCount;
31 /**
32 * @var string
33 */
34 public $tuningDatasetExampleCount;
35 /**
36 * @var string
37 */
38 public $tuningStepCount;
39 protected $userDatasetExamplesType = GoogleCloudAiplatformV1Content::class;
40 protected $userDatasetExamplesDataType = 'array';
41 protected $userInputTokenDistributionType = GoogleCloudAiplatformV1DatasetDistribution::class;
42 protected $userInputTokenDistributionDataType = '';
43 protected $userMessagePerExampleDistributionType = GoogleCloudAiplatformV1DatasetDistribution::class;
44 protected $userMessagePerExampleDistributionDataType = '';
45 protected $userOutputTokenDistributionType = GoogleCloudAiplatformV1DatasetDistribution::class;
46 protected $userOutputTokenDistributionDataType = '';
47
48 /**
49 * @param string
50 */
51 public function setTotalBillableCharacterCount($totalBillableCharacterCount)
52 {
53 $this->totalBillableCharacterCount = $totalBillableCharacterCount;
54 }
55 /**
56 * @return string
57 */
58 public function getTotalBillableCharacterCount()
59 {
60 return $this->totalBillableCharacterCount;
61 }
62 /**
63 * @param string
64 */
65 public function setTotalTuningCharacterCount($totalTuningCharacterCount)
66 {
67 $this->totalTuningCharacterCount = $totalTuningCharacterCount;
68 }
69 /**
70 * @return string
71 */
72 public function getTotalTuningCharacterCount()
73 {
74 return $this->totalTuningCharacterCount;
75 }
76 /**
77 * @param string
78 */
79 public function setTuningDatasetExampleCount($tuningDatasetExampleCount)
80 {
81 $this->tuningDatasetExampleCount = $tuningDatasetExampleCount;
82 }
83 /**
84 * @return string
85 */
86 public function getTuningDatasetExampleCount()
87 {
88 return $this->tuningDatasetExampleCount;
89 }
90 /**
91 * @param string
92 */
93 public function setTuningStepCount($tuningStepCount)
94 {
95 $this->tuningStepCount = $tuningStepCount;
96 }
97 /**
98 * @return string
99 */
100 public function getTuningStepCount()
101 {
102 return $this->tuningStepCount;
103 }
104 /**
105 * @param GoogleCloudAiplatformV1Content[]
106 */
107 public function setUserDatasetExamples($userDatasetExamples)
108 {
109 $this->userDatasetExamples = $userDatasetExamples;
110 }
111 /**
112 * @return GoogleCloudAiplatformV1Content[]
113 */
114 public function getUserDatasetExamples()
115 {
116 return $this->userDatasetExamples;
117 }
118 /**
119 * @param GoogleCloudAiplatformV1DatasetDistribution
120 */
121 public function setUserInputTokenDistribution(GoogleCloudAiplatformV1DatasetDistribution $userInputTokenDistribution)
122 {
123 $this->userInputTokenDistribution = $userInputTokenDistribution;
124 }
125 /**
126 * @return GoogleCloudAiplatformV1DatasetDistribution
127 */
128 public function getUserInputTokenDistribution()
129 {
130 return $this->userInputTokenDistribution;
131 }
132 /**
133 * @param GoogleCloudAiplatformV1DatasetDistribution
134 */
135 public function setUserMessagePerExampleDistribution(GoogleCloudAiplatformV1DatasetDistribution $userMessagePerExampleDistribution)
136 {
137 $this->userMessagePerExampleDistribution = $userMessagePerExampleDistribution;
138 }
139 /**
140 * @return GoogleCloudAiplatformV1DatasetDistribution
141 */
142 public function getUserMessagePerExampleDistribution()
143 {
144 return $this->userMessagePerExampleDistribution;
145 }
146 /**
147 * @param GoogleCloudAiplatformV1DatasetDistribution
148 */
149 public function setUserOutputTokenDistribution(GoogleCloudAiplatformV1DatasetDistribution $userOutputTokenDistribution)
150 {
151 $this->userOutputTokenDistribution = $userOutputTokenDistribution;
152 }
153 /**
154 * @return GoogleCloudAiplatformV1DatasetDistribution
155 */
156 public function getUserOutputTokenDistribution()
157 {
158 return $this->userOutputTokenDistribution;
159 }
160}
161
162// Adding a class alias for backwards compatibility with the previous class name.
163class_alias(GoogleCloudAiplatformV1DatasetStats::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1DatasetStats');
Note: See TracBrowser for help on using the repository browser.