diff --git a/python/paddle/distributed/auto_parallel/static/engine.py b/python/paddle/distributed/auto_parallel/static/engine.py index 2b66ac4e16a22d663716574466253d5553ee953d..07bebf3d0c5ae68db9c8e61cd6a66d63622f007e 100644 --- a/python/paddle/distributed/auto_parallel/static/engine.py +++ b/python/paddle/distributed/auto_parallel/static/engine.py @@ -54,10 +54,8 @@ from .process_group import get_all_process_groups, new_process_group class Engine: """ - An Engine object can provide the full power of auto parallel to users. - With the help of it, users can easily obtain the abilities of the - distributed training and inference. It also support the dynamic graph and - static graph at the same time. + An High-Level API for auto parallel, which could be used for distributed Training (engine.fit) and Inferenced (engine.predict). + Static graph mode is supported natively, Dynamic graph mode is also supported under `@to_static `_ . Args: model (paddle.nn.Layer, optional): The model is an instance of