Like :meth:`get_variable`, but takes a list and returns a list.
(self, names)
| 448 | return get_op_or_tensor_by_name(name_with_vs) |
| 449 | |
| 450 | def get_variables(self, names): |
| 451 | """ |
| 452 | Like :meth:`get_variable`, but takes a list and returns a list. |
| 453 | """ |
| 454 | return [self.get_variable(name) for name in names] |
| 455 | |
| 456 | def get_collection(self, key=None, name=None): |
| 457 | """ |
nothing calls this directly
no test coverage detected