diff --git a/dygraph/cvlibs/manager.py b/dygraph/cvlibs/manager.py index 48a9ec813cf200c305da04976d755ad3169d7887..e268bf2308f7e00795c4ea283226ef2e9717f849 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: ...