(identifier)
| 7 | |
| 8 | |
| 9 | def get(identifier): |
| 10 | if hasattr(identifier, '__call__'): |
| 11 | return identifier |
| 12 | else: |
| 13 | return get_from_module(identifier, globals(), 'initializations') |
| 14 | |
| 15 | |
| 16 | def zeros(shape=None, dtype=tf.float32, seed=None): |
nothing calls this directly
no test coverage detected