Get the inputs of the network. Returns: Iterable[Tensor]
(self)
| 334 | return profiles |
| 335 | |
| 336 | def get_inputs(self): |
| 337 | ''' |
| 338 | Get the inputs of the network. |
| 339 | |
| 340 | Returns: |
| 341 | Iterable[Tensor] |
| 342 | ''' |
| 343 | return self._inputs.values() |
| 344 | |
| 345 | def get_outputs(self): |
| 346 | ''' |