From b09ec1c9bf827622a5eebb94ba0af5bf202ca359 Mon Sep 17 00:00:00 2001 From: "Nicholas Nadeau, P.Eng., AVS" Date: Mon, 23 Apr 2018 15:43:48 -0400 Subject: [PATCH] fixing typos (#10016) --- docs/templates/getting-started/faq.md | 2 +- keras/engine/topology.py | 4 ++-- tests/test_model_saving.py | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/templates/getting-started/faq.md b/docs/templates/getting-started/faq.md index 1cceb8f68..ad8c4cff4 100644 --- a/docs/templates/getting-started/faq.md +++ b/docs/templates/getting-started/faq.md @@ -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 \ No newline at end of file diff --git a/keras/engine/topology.py b/keras/engine/topology.py index 34e372112..71da48712 100644 --- a/keras/engine/topology.py +++ b/keras/engine/topology.py @@ -1895,7 +1895,7 @@ class Container(Layer): """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). @@ -1924,7 +1924,7 @@ class Container(Layer): """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). diff --git a/tests/test_model_saving.py b/tests/test_model_saving.py index 661461eb9..69761e436 100644 --- a/tests/test_model_saving.py +++ b/tests/test_model_saving.py @@ -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) @@ -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) -- GitLab