Skip to content

Commit

Permalink
Sync docs with default reality (keras-team#8728)
Browse files Browse the repository at this point in the history
  • Loading branch information
ozabluda authored and fchollet committed Dec 8, 2017
1 parent 18a812e commit 3502dc5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions keras/backend/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# the type of float to use throughout the session.
_FLOATX = 'float32'
_EPSILON = 10e-8
_EPSILON = 1e-7
_IMAGE_DATA_FORMAT = 'channels_last'


Expand All @@ -15,7 +15,7 @@ def epsilon():
# Example
```python
>>> keras.backend.epsilon()
1e-08
1e-07
```
"""
return _EPSILON
Expand All @@ -31,7 +31,7 @@ def set_epsilon(e):
```python
>>> from keras import backend as K
>>> K.epsilon()
1e-08
1e-07
>>> K.set_epsilon(1e-05)
>>> K.epsilon()
1e-05
Expand Down

0 comments on commit 3502dc5

Please sign in to comment.