Skip to content

Commit

Permalink
Update mars-user-guide.rst (#208)
Browse files Browse the repository at this point in the history
代码示例中存在确实括号导致的语法错误。
  • Loading branch information
MiuNice committed Jul 19, 2023
1 parent 8f4f04f commit 8d3c37a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/source/mars-user-guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Job 模式

.. code:: python
o.run_mars_job(lr, args=('lr_train', 'lr_predict', 'lr_result')
o.run_mars_job(lr, args=('lr_train', 'lr_predict', 'lr_result'))
这时候通过 PyODPS 查看下写入表的数据。

Expand All @@ -76,7 +76,7 @@ Job 模式

.. code:: python
o.run_mars_job(lr, args=('lr_train', 'lr_predict', 'lr_result', worker_cpu=8, worker_mem=32)
o.run_mars_job(lr, args=('lr_train', 'lr_predict', 'lr_result'), worker_cpu=8, worker_mem=32)
传入以上参数时,服务端会使用8核32G的资源完成计算。

Expand Down

0 comments on commit 8d3c37a

Please sign in to comment.