source: vendor/google/apiclient-services/src/CloudNaturalLanguage/XPSSpeechPreprocessStats.php@ f9c482b

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

Upload new project files

  • Property mode set to 100644
File size: 4.1 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\CloudNaturalLanguage;
19
20class XPSSpeechPreprocessStats extends \Google\Collection
21{
22 protected $collection_key = 'dataErrors';
23 protected $dataErrorsType = XPSDataErrors::class;
24 protected $dataErrorsDataType = 'array';
25 /**
26 * @var int
27 */
28 public $numHumanLabeledExamples;
29 /**
30 * @var int
31 */
32 public $numLogsExamples;
33 /**
34 * @var int
35 */
36 public $numMachineTranscribedExamples;
37 /**
38 * @var int
39 */
40 public $testExamplesCount;
41 /**
42 * @var int
43 */
44 public $testSentencesCount;
45 /**
46 * @var int
47 */
48 public $testWordsCount;
49 /**
50 * @var int
51 */
52 public $trainExamplesCount;
53 /**
54 * @var int
55 */
56 public $trainSentencesCount;
57 /**
58 * @var int
59 */
60 public $trainWordsCount;
61
62 /**
63 * @param XPSDataErrors[]
64 */
65 public function setDataErrors($dataErrors)
66 {
67 $this->dataErrors = $dataErrors;
68 }
69 /**
70 * @return XPSDataErrors[]
71 */
72 public function getDataErrors()
73 {
74 return $this->dataErrors;
75 }
76 /**
77 * @param int
78 */
79 public function setNumHumanLabeledExamples($numHumanLabeledExamples)
80 {
81 $this->numHumanLabeledExamples = $numHumanLabeledExamples;
82 }
83 /**
84 * @return int
85 */
86 public function getNumHumanLabeledExamples()
87 {
88 return $this->numHumanLabeledExamples;
89 }
90 /**
91 * @param int
92 */
93 public function setNumLogsExamples($numLogsExamples)
94 {
95 $this->numLogsExamples = $numLogsExamples;
96 }
97 /**
98 * @return int
99 */
100 public function getNumLogsExamples()
101 {
102 return $this->numLogsExamples;
103 }
104 /**
105 * @param int
106 */
107 public function setNumMachineTranscribedExamples($numMachineTranscribedExamples)
108 {
109 $this->numMachineTranscribedExamples = $numMachineTranscribedExamples;
110 }
111 /**
112 * @return int
113 */
114 public function getNumMachineTranscribedExamples()
115 {
116 return $this->numMachineTranscribedExamples;
117 }
118 /**
119 * @param int
120 */
121 public function setTestExamplesCount($testExamplesCount)
122 {
123 $this->testExamplesCount = $testExamplesCount;
124 }
125 /**
126 * @return int
127 */
128 public function getTestExamplesCount()
129 {
130 return $this->testExamplesCount;
131 }
132 /**
133 * @param int
134 */
135 public function setTestSentencesCount($testSentencesCount)
136 {
137 $this->testSentencesCount = $testSentencesCount;
138 }
139 /**
140 * @return int
141 */
142 public function getTestSentencesCount()
143 {
144 return $this->testSentencesCount;
145 }
146 /**
147 * @param int
148 */
149 public function setTestWordsCount($testWordsCount)
150 {
151 $this->testWordsCount = $testWordsCount;
152 }
153 /**
154 * @return int
155 */
156 public function getTestWordsCount()
157 {
158 return $this->testWordsCount;
159 }
160 /**
161 * @param int
162 */
163 public function setTrainExamplesCount($trainExamplesCount)
164 {
165 $this->trainExamplesCount = $trainExamplesCount;
166 }
167 /**
168 * @return int
169 */
170 public function getTrainExamplesCount()
171 {
172 return $this->trainExamplesCount;
173 }
174 /**
175 * @param int
176 */
177 public function setTrainSentencesCount($trainSentencesCount)
178 {
179 $this->trainSentencesCount = $trainSentencesCount;
180 }
181 /**
182 * @return int
183 */
184 public function getTrainSentencesCount()
185 {
186 return $this->trainSentencesCount;
187 }
188 /**
189 * @param int
190 */
191 public function setTrainWordsCount($trainWordsCount)
192 {
193 $this->trainWordsCount = $trainWordsCount;
194 }
195 /**
196 * @return int
197 */
198 public function getTrainWordsCount()
199 {
200 return $this->trainWordsCount;
201 }
202}
203
204// Adding a class alias for backwards compatibility with the previous class name.
205class_alias(XPSSpeechPreprocessStats::class, 'Google_Service_CloudNaturalLanguage_XPSSpeechPreprocessStats');
Note: See TracBrowser for help on using the repository browser.