(**kwargs)
| 42 | |
| 43 | |
| 44 | def larger_than(**kwargs) -> Callable: |
| 45 | return lambda run: all(hasattr(run.config, hyperparam) and value > run.config[hyperparam] |
| 46 | for hyperparam, value in kwargs.items()) |
| 47 | |
| 48 | |
| 49 | def lower_than(**kwargs) -> Callable: |
nothing calls this directly
no outgoing calls
no test coverage detected