Get the layers that use this tensor as an input.
(self)
| 550 | return self.network.get_tensor_parent(self) |
| 551 | |
| 552 | def get_users(self): |
| 553 | ''' Get the layers that use this tensor as an input. ''' |
| 554 | return self.network.get_tensor_users(self) |
| 555 | |
| 556 | def replace_all_uses_with(self, new_tensor): |
| 557 | ''' |