@@ -133,7 +133,7 @@ void regclass_graph_Function(py::module m) {
133
133
}),
134
134
py::arg (" results" ),
135
135
py::arg (" parameters" ),
136
- py::arg (" name" ) = " " ) ,
136
+ py::arg (" name" ) = " " ,
137
137
R"(
138
138
Create user-defined Function which is a representation of a model
139
139
@@ -147,7 +147,7 @@ void regclass_graph_Function(py::module m) {
147
147
148
148
name : str
149
149
String to set as function's friendly name.
150
- )" ;
150
+ )" ) ;
151
151
152
152
function.def (py::init ([](const ov::OutputVector& results,
153
153
const std::vector<std::shared_ptr<ov::Node>>& nodes,
@@ -160,8 +160,8 @@ void regclass_graph_Function(py::module m) {
160
160
py::arg (" results" ),
161
161
py::arg (" sinks" ),
162
162
py::arg (" parameters" ),
163
- py::arg (" name" ) = " " ) ,
164
- R"(
163
+ py::arg (" name" ) = " " ,
164
+ R"(
165
165
Create user-defined Function which is a representation of a model
166
166
167
167
Parameters
@@ -177,7 +177,7 @@ void regclass_graph_Function(py::module m) {
177
177
178
178
name : str
179
179
String to set as function's friendly name.
180
- )" ;
180
+ )" ) ;
181
181
function.def (py::init ([](const ov::ResultVector& results,
182
182
const std::vector<std::shared_ptr<ov::Node>>& nodes,
183
183
const ov::ParameterVector& parameters,
@@ -191,8 +191,8 @@ void regclass_graph_Function(py::module m) {
191
191
py::arg (" sinks" ),
192
192
py::arg (" parameters" ),
193
193
py::arg (" variables" ),
194
- py::arg (" name" ) = " " ) ,
195
- R"(
194
+ py::arg (" name" ) = " " ,
195
+ R"(
196
196
Create user-defined Function which is a representation of a model
197
197
198
198
Parameters
@@ -211,7 +211,7 @@ void regclass_graph_Function(py::module m) {
211
211
212
212
name : str
213
213
String to set as function's friendly name.
214
- )" ;
214
+ )" ) ;
215
215
216
216
function.def (py::init ([](const ov::OutputVector& results,
217
217
const std::vector<std::shared_ptr<ov::Node>>& nodes,
@@ -226,8 +226,8 @@ void regclass_graph_Function(py::module m) {
226
226
py::arg (" sinks" ),
227
227
py::arg (" parameters" ),
228
228
py::arg (" variables" ),
229
- py::arg (" name" ) = " " ) ,
230
- R"(
229
+ py::arg (" name" ) = " " ,
230
+ R"(
231
231
Create user-defined Function which is a representation of a model
232
232
233
233
Parameters
@@ -246,7 +246,7 @@ void regclass_graph_Function(py::module m) {
246
246
247
247
name : str
248
248
String to set as function's friendly name.
249
- )" ;
249
+ )" ) ;
250
250
251
251
function.def (py::init ([](const ov::ResultVector& results,
252
252
const ov::ParameterVector& parameters,
@@ -258,8 +258,8 @@ void regclass_graph_Function(py::module m) {
258
258
py::arg (" results" ),
259
259
py::arg (" parameters" ),
260
260
py::arg (" variables" ),
261
- py::arg (" name" ) = " " ) ,
262
- R"(
261
+ py::arg (" name" ) = " " ,
262
+ R"(
263
263
Create user-defined Function which is a representation of a model
264
264
265
265
Parameters
@@ -275,7 +275,7 @@ void regclass_graph_Function(py::module m) {
275
275
276
276
name : str
277
277
String to set as function's friendly name.
278
- )" ;
278
+ )" ) ;
279
279
280
280
function.def (py::init ([](const ov::OutputVector& results,
281
281
const ov::ParameterVector& parameters,
@@ -287,8 +287,8 @@ void regclass_graph_Function(py::module m) {
287
287
py::arg (" results" ),
288
288
py::arg (" parameters" ),
289
289
py::arg (" variables" ),
290
- py::arg (" name" ) = " " ) ,
291
- R"(
290
+ py::arg (" name" ) = " " ,
291
+ R"(
292
292
Create user-defined Function which is a representation of a model
293
293
294
294
Parameters
@@ -304,7 +304,7 @@ void regclass_graph_Function(py::module m) {
304
304
305
305
name : str
306
306
String to set as function's friendly name.
307
- )" ;
307
+ )" ) ;
308
308
309
309
function.def (" validate_nodes_and_infer_types" , &ov::Function::validate_nodes_and_infer_types);
310
310
0 commit comments