From cd5e588c6d187040d4aa598a74fcca5382958ad3 Mon Sep 17 00:00:00 2001 From: michaelowenliu Date: Fri, 24 Jul 2020 14:15:46 +0800 Subject: [PATCH] update manager --- dygraph/cvlibs/manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dygraph/cvlibs/manager.py b/dygraph/cvlibs/manager.py index 48a9ec81..e268bf23 100644 --- a/dygraph/cvlibs/manager.py +++ b/dygraph/cvlibs/manager.py @@ -31,7 +31,7 @@ class ComponentManager: >>> print(model_manager.components) output: {'AlexNet': , 'ResNet': } - Or a easier way, using it as a Python decorator, while just add it above the class declaration. + Or an easier way, using it as a Python decorator, while just add it above the class declaration. >>> model_manager = ComponentManager() >>> @model_manager.add_component >>> class AlexNet: ... -- GitLab