forward the network with filled input data and fill the output data to the output tensor
(self)
| 626 | self._api.LITE_load_model_from_mem(self._network, cdata, length) |
| 627 | |
| 628 | def forward(self): |
| 629 | """ |
| 630 | forward the network with filled input data and fill the output data |
| 631 | to the output tensor |
| 632 | """ |
| 633 | self._api.LITE_forward(self._network) |
| 634 | |
| 635 | def wait(self): |
| 636 | """ |
no outgoing calls