Returns the value of the fuzz factor used in numeric expressions. Returns: A float. Example: ```python keras.backend.epsilon() >>>1e-07 ```
()
| 31 | |
| 32 | @keras_export('keras.backend.epsilon') |
| 33 | def epsilon(): |
| 34 | """Returns the value of the fuzz factor used in numeric expressions. |
| 35 | |
| 36 | Returns: |
| 37 | A float. |
| 38 | |
| 39 | Example: |
| 40 | ```python |
| 41 | keras.backend.epsilon() >>>1e-07 |
| 42 | ``` |
| 43 | """ |
| 44 | return _EPSILON |
| 45 | |
| 46 | |
| 47 | @keras_export('keras.backend.set_epsilon') |
no outgoing calls