Skip to content

Commit 00ca552

Browse files
committed
Updated conda pack references
1 parent 2ab4888 commit 00ca552

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docs/source/user_guide/jobs/data_science_job.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ All of these runtime options allow you to configure a `Data Science Conda Enviro
9696
runtime = (
9797
ScriptRuntime()
9898
.with_source("oci://bucket_name@namespace/path/to/script.py")
99-
.with_service_conda("tensorflow26_p37_cpu_v2")
99+
.with_service_conda("tensorflow28_p38_cpu_v1")
100100
)
101101
102102
You can store your source code in a local file path or location supported by `fsspec <https://filesystem-spec.readthedocs.io/en/latest/>`__, including OCI Object Storage.
@@ -120,7 +120,7 @@ You can also configure the environment variables, command line arguments, and fr
120120
runtime = (
121121
ScriptRuntime()
122122
.with_source("oci://bucket_name@namespace/path/to/script.py")
123-
.with_service_conda("tensorflow26_p37_cpu_v2")
123+
.with_service_conda("tensorflow28_p38_cpu_v1")
124124
.with_environment_variable(ENV="value")
125125
.with_argument("argument", key="value")
126126
.with_freeform_tag(tag_name="tag_value")
@@ -246,7 +246,7 @@ Here is an example of a YAML file representing the job defined in the preceding
246246
type: script
247247
spec:
248248
conda:
249-
slug: tensorflow26_p37_cpu_v2
249+
slug: tensorflow28_p38_cpu_v1
250250
type: service
251251
scriptPathURI: oci://bucket_name@namespace/path/to/script.py
252252

docs/source/user_guide/jobs/run_notebook.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Python
3636
path="https://raw.githubusercontent.com/tensorflow/docs/master/site/en/tutorials/customization/basics.ipynb",
3737
encoding='utf-8'
3838
)
39-
.with_service_conda(tensorflow26_p37_cpu_v2")
39+
.with_service_conda("tensorflow28_p38_cpu_v1")
4040
.with_environment_variable(GREETINGS="Welcome to OCI Data Science")
4141
.with_output("oci://bucket_name@namespace/path/to/dir")
4242
)
@@ -86,7 +86,7 @@ You could use the following YAML to create the job:
8686
spec:
8787
notebookPathURI: /path/to/notebook
8888
conda:
89-
slug: tensorflow26_p37_cpu_v1
89+
slug: tensorflow28_p38_cpu_v1
9090
type: service
9191
9292
**NotebookRuntime Schema**

0 commit comments

Comments
 (0)