diff --git a/examples/pipeline/README.rst b/examples/pipeline/README.rst index acf37e8c89..5da279b548 100644 --- a/examples/pipeline/README.rst +++ b/examples/pipeline/README.rst @@ -38,9 +38,11 @@ Here is a general guide to quick start a FATE job. .. code-block:: bash - # provide ip and port information - # optionally, set logs directory - pipeline init --ip 127.0.0.1 --port 9380 + # configure by conf file + pipeline init -c pipeline/config.yaml + # alternatively, input real ip address and port info to initialize pipeline + # optionally, set log directory for Pipeline + pipeline init --ip 127.0.0.1 --port 9380 --log-directory ./logs 4. upload data with FATE-Pipeline diff --git a/python/fate_client/README.rst b/python/fate_client/README.rst index f6c2c705ce..555c885b76 100644 --- a/python/fate_client/README.rst +++ b/python/fate_client/README.rst @@ -35,8 +35,10 @@ Initial Configuration .. code-block:: bash - # configure values in pipeline/config.yaml - # use real ip address to configure pipeline + # configure by conf file + pipeline init -c pipeline/config.yaml + # alternatively, input real ip address and port info to initialize pipeline + # optionally, set log directory for Pipeline pipeline init --ip 127.0.0.1 --port 9380 --log-directory ./logs @@ -55,6 +57,6 @@ Initial Configuration # configure values in conf/service_conf.yaml flow init -c /data/projects/fate/conf/service_conf.yaml - # use real ip address to initialize cli + # alternatively, input real ip address and port info to initialize cli flow init --ip 127.0.0.1 --port 9380