Commit 2c6d1bb 1 parent fc97aaa commit 2c6d1bb Copy full SHA for 2c6d1bb
File tree 3 files changed +8
-4
lines changed
docs/sphinx_setup/api/nodejs_api
3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -43,10 +43,10 @@ API Development
43
43
44
44
OpenVINO 2024.4 has introduced the following methods:
45
45
46
- - Model.clone()
47
- - Model.getoutputelementtype()
48
- - CompiledModel getProperty()
49
- - CompiledModel.setProperty()
46
+ - :ref: ` Model.clone() < clone >`
47
+ - :ref: ` Model.getOutputElementType() < getOutputElementType >`
48
+ - :ref: ` CompiledModel. getProperty() < getProperty >`
49
+ - :ref: ` CompiledModel.setProperty() < setProperty >`
50
50
51
51
52
52
Additional Resources
Original file line number Diff line number Diff line change @@ -243,6 +243,7 @@ Methods
243
243
244
244
245
245
.. rubric :: setProperty
246
+ :name: setProperty
246
247
247
248
*
248
249
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ Interface Model
4
4
.. code-block :: ts
5
5
6
6
interface Model {
7
+ clone(): Model;
7
8
inputs: Output[];
8
9
outputs: Output[];
9
10
getFriendlyName(): string;
@@ -59,6 +60,7 @@ Methods
59
60
#####################
60
61
61
62
.. rubric :: clone
63
+ :name: clone
62
64
63
65
*
64
66
@@ -143,6 +145,7 @@ Methods
143
145
`addon.ts:198 <https://github.com/openvinotoolkit/openvino/blob/master/src/bindings/js/node/lib/addon.ts#L198 >`__
144
146
145
147
.. rubric :: getOutputElementType
148
+ :name: getOutputElementType
146
149
147
150
*
148
151
You can’t perform that action at this time.
0 commit comments