(self)
| 116 | return self.rng.uniform(low, high, size).astype("float32") |
| 117 | |
| 118 | def __str__(self): |
| 119 | try: |
| 120 | return _default_repr(self) |
| 121 | except AssertionError as e: |
| 122 | log_once(e.args[0], 'warn') |
| 123 | return super(Augmentor, self).__repr__() |
| 124 | |
| 125 | __repr__ = __str__ |
| 126 |
nothing calls this directly
no test coverage detected