Skip to content

Commit b6fee53

Browse files
committed
Update ads.jobs.rst, data_science_job.rst, and 2 more files...
1 parent 654542e commit b6fee53

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

docs/source/ads.jobs.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,3 +69,4 @@ Module contents
6969
:members:
7070
:undoc-members:
7171
:show-inheritance:
72+
:inherited-members:

docs/source/user_guide/jobs/data_science_job.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,14 @@ You can also :doc:`run_notebook`, :doc:`run_script` and :doc:`run_git`.
3636
YAML
3737
====
3838

39-
A job can be defined using YAML, as shown in the "YAML" tab.
39+
A job can be defined using YAML, as shown in the "YAML" tab in the example above.
4040
Here are some examples to load/save the YAML job configurations:
4141

4242
.. code-block:: python
4343
4444
# Load a job from a YAML file
4545
job = Job.from_yaml(uri="oci://bucket_name@namespace/path/to/job.yaml")
46+
4647
# Save a job to a YAML file
4748
job.to_yaml(uri="oci://bucket_name@namespace/path/to/job.yaml")
4849
@@ -134,7 +135,7 @@ To get a list of existing jobs in a specific compartment:
134135
135136
from ads.jobs import Job
136137
137-
# Load a job
138+
# Get a list of jobs in a specific compartment.
138139
jobs = Job.datascience_job("<compartment_ocid>")
139140
140141
With a ``Job`` object, you can get a list of job runs:

docs/source/user_guide/jobs/overview.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ Each model can write its results to the Logging service or Object Storage.
2828
Then you can run a final sequential job that uses the best model class, and trains the final model on the entire dataset.
2929

3030
The following sections provides details on running workloads with OCI Data Science Jobs using ADS Jobs APIs.
31-
You can use similar APIs to `Run a OCI DataFlow Application <run_data_flow.html>`_.
31+
You can use similar APIs to :doc:`Run a OCI DataFlow Application <../apachespark/quickstart>`.

docs/source/user_guide/jobs/run_script.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Run a Script
44
This section shows how to create a job to run a script.
55

66
The :py:class:`~ads.jobs.ScriptRuntime` is designed for you to define job artifacts and configurations supported by OCI
7-
Data Science jobs natively. It can be used with any script types that is supported by the OCI Data Science jobs,
7+
Data Science Jobs natively. It can be used with any script types that is supported by the OCI Data Science Jobs,
88
including shell scripts and python scripts.
99

1010
The source code can be a single script, files in a folder or a zip/tar file.

0 commit comments

Comments
 (0)