Skip to content

Commit

Permalink
fixing typos (#10016)
Browse files Browse the repository at this point in the history
  • Loading branch information
nnadeau authored and fchollet committed Apr 23, 2018
1 parent 30c34ff commit b09ec1c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/templates/getting-started/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -622,5 +622,5 @@ module via
import h5py
```

If it imports without error it is installed ortherwise you can find detaild
If it imports without error it is installed otherwise you can find detailed
installation instructions here: http://docs.h5py.org/en/latest/build.html
4 changes: 2 additions & 2 deletions keras/engine/topology.py
Original file line number Diff line number Diff line change
Expand Up @@ -1895,7 +1895,7 @@ def updates(self):
"""Retrieves the model's updates.
Will only include updates that are either
inconditional, or conditional on inputs to this model
unconditional, or conditional on inputs to this model
(e.g. will not include updates that depend on tensors
that aren't inputs to this model).
Expand Down Expand Up @@ -1924,7 +1924,7 @@ def losses(self):
"""Retrieves the model's losses.
Will only include losses that are either
inconditional, or conditional on inputs to this model
unconditional, or conditional on inputs to this model
(e.g. will not include losses that depend on tensors
that aren't inputs to this model).
Expand Down
4 changes: 2 additions & 2 deletions tests/test_model_saving.py
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ def test_saving_model_with_long_layer_names():

os.remove(fname)

# The chunking of layer names array should have happend.
# The chunking of layer names array should have happened.
assert n_layer_names_arrays > 0

out2 = model.predict(x)
Expand Down Expand Up @@ -564,7 +564,7 @@ def test_saving_model_with_long_weights_names():

os.remove(fname)

# The chunking of layer names array should have happend.
# The chunking of layer names array should have happened.
assert n_weight_names_arrays > 0

out2 = model.predict(x)
Expand Down

0 comments on commit b09ec1c

Please sign in to comment.