@@ -26,10 +26,10 @@ class HorovodRunner(object):
2626 """
2727 HorovodRunner runs distributed deep learning training jobs using Horovod.
2828
29- On Databricks Runtime for Machine Learning 5.0+ , it launches the Horovod job as a distributed
30- Spark job. It makes running Horovod easy on Databricks by managing the cluster setup and
31- integrating with Spark. Check out Databricks documentation to view end-to-end examples and
32- performance tuning tips.
29+ On Databricks Runtime 5.0 ML and above , it launches the Horovod job as a distributed Spark job.
30+ It makes running Horovod easy on Databricks by managing the cluster setup and integrating with
31+ Spark.
32+ Check out Databricks documentation to view end-to-end examples and performance tuning tips.
3333
3434 The open-source version only runs the job locally inside the same Python process,
3535 which is for local development only.
@@ -41,7 +41,7 @@ class HorovodRunner(object):
4141 def __init__ (self , np ):
4242 """
4343 :param np: number of parallel processes to use for the Horovod job.
44- This argument only takes effect on Databricks Runtime for Machine Learning 5.0+ .
44+ This argument only takes effect on Databricks Runtime 5.0 ML and above .
4545 It is ignored in the open-source version.
4646 Accepted values are:
4747
@@ -67,7 +67,7 @@ def run(self, main, **kwargs):
6767 Runs a Horovod training job invoking main(**kwargs).
6868
6969 The open-source version only invokes main(**kwargs) inside the same Python process.
70- On Databricks Runtime for Machine Learning 5.0+ , it will launch the Horovod job based on the
70+ On Databricks Runtime 5.0 ML and above , it will launch the Horovod job based on the
7171 documented behavior of `np`. Both the main function and the keyword arguments are
7272 serialized using cloudpickle and distributed to cluster workers.
7373
0 commit comments