diff --git a/CHANGELOG.md b/CHANGELOG.md index a71c9688290e..923ecb78cdd8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -88,6 +88,11 @@ To release a new version, please update the changelog as followed: ### Contributors +## [0.10.2] - 2020-05-05 + +### Added +- The Neural Graph is a high-level abstract concept empowering the users to build graphs consisting of many, interconnected Neural Modules. A user in his/her application can build any number of graphs, potentially spanning over the same modules. The import/export options combined with the lightweight API make Neural Graphs a perfect tool for rapid prototyping and experimentation. ([PR #413](https://github.com/NVIDIA/NeMo/pull/413)) - @tkornuta + ## [0.10.0] - 2020-04-03 ### Added diff --git a/nemo/utils/neural_graph/graph_outputs.py b/nemo/utils/neural_graph/graph_outputs.py index 877e5983e96d..2210ff316215 100644 --- a/nemo/utils/neural_graph/graph_outputs.py +++ b/nemo/utils/neural_graph/graph_outputs.py @@ -60,7 +60,7 @@ class GraphOutputs(MutableMapping): - "default" outputs with default keys taken from outputs of modules, and - "manual" used for specifying the subset of outputs. When accessing the outputs, it returns the one of those two lists following the rule: - return "manual" outputs if they were definde (at least one manual output defined by the user), + return "manual" outputs if they were define (at least one manual output defined by the user), otherwise return the "default" outputs. '''