get the input name by the index in the network Args: index: the index of the input name Returns: the name of input tesor with given index
(self, index)
| 786 | return tensor |
| 787 | |
| 788 | def get_input_name(self, index): |
| 789 | """ |
| 790 | get the input name by the index in the network |
| 791 | |
| 792 | Args: |
| 793 | index: the index of the input name |
| 794 | |
| 795 | Returns: |
| 796 | the name of input tesor with given index |
| 797 | """ |
| 798 | c_name = c_char_p() |
| 799 | self._api.LITE_get_input_name(self._network, index, byref(c_name)) |
| 800 | return c_name.value.decode("utf-8") |
| 801 | |
| 802 | def get_output_name(self, index): |
| 803 | """ |
no outgoing calls