(identifier)
| 5 | |
| 6 | |
| 7 | def get(identifier): |
| 8 | if hasattr(identifier, '__call__'): |
| 9 | return identifier |
| 10 | else: |
| 11 | return get_from_module(identifier, globals(), 'regularizer') |
| 12 | |
| 13 | |
| 14 | def L2(tensor, wd=0.001): |
nothing calls this directly
no test coverage detected