(identifier)
| 11 | |
| 12 | |
| 13 | def get(identifier): |
| 14 | if hasattr(identifier, '__call__'): |
| 15 | return identifier |
| 16 | else: |
| 17 | return get_from_module(identifier, globals(), 'normalization') |
| 18 | |
| 19 | |
| 20 | def batch_normalization(incoming, beta=0.0, gamma=1.0, epsilon=1e-5, |
nothing calls this directly
no test coverage detected