Skip to content

Commit 7977063

Browse files
author
committed
Deployed 65da657 with MkDocs version: 1.6.1
1 parent e171dc1 commit 7977063

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

en/end-user/baize/quick-start.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,7 @@ <h2 id="using-a-notebook-to-debug-your-script">Using a Notebook to Debug Your Sc
630630
<li>
631631
<p>Select and bind the <a href="#tensorflow">environment dependency package</a>.</p>
632632
<p>Wait for the Notebook to be successfully created, then click the access link in the list to enter the Notebook. In the Notebook terminal, run the following command to start the training job:</p>
633-
<p><img alt="Enter Notebook" src="../images/baize-05.png"/></p>
633+
<p><img alt="Enter Notebook" src="images/baize-05.png"/></p>
634634
<div class="admonition note">
635635
<p class="admonition-title">Note</p>
636636
<p>The script uses TensorFlow; if you forget to associate the dependency library, you can temporarily install it using <code>pip install tensorflow</code>.</p>
@@ -667,7 +667,7 @@ <h2 id="creating-a-training-job">Creating a Training Job<a class="headerlink" hr
667667
</li>
668668
<li>
669669
<p>Once the job is successfully created, click on <strong>Job Analysis</strong> in the left navigation bar to check the job status and fine-tune your training.</p>
670-
<p><img alt="View Job" src="../images/baize-07.png"/></p>
670+
<p><img alt="View Job" src="images/baize-07.png"/></p>
671671
</li>
672672
</ol>
673673
<aside class="md-source-file">

end-user/baize/quick-start.html

+9-9
Original file line numberDiff line numberDiff line change
@@ -590,7 +590,7 @@ <h3 id="_3">数据集:训练代码<a class="headerlink" href="#_3" title="Perm
590590
<li>如果是中国境内的用户,可以使用 Gitee 加速:<a href="https://gitee.com/samzong_lu/training-sample-code.git">https://gitee.com/samzong_lu/training-sample-code.git</a></li>
591591
<li>代码路径为 <code>tensorflow/tf-fashion-mnist-sample</code></li>
592592
</ul>
593-
<p><img alt="训练代码的数据集" src="../images/baize-01.png"/></p>
593+
<p><img alt="训练代码的数据集" src="images/baize-01.png"/></p>
594594
<div class="admonition note">
595595
<p class="admonition-title">Note</p>
596596
<p>目前仅支持读写模式为 <code>ReadWriteMany</code><code>StorageClass</code>,请使用 NFS 或者推荐的 <a href="https://juicefs.com/zh-cn/">JuiceFS</a></p>
@@ -599,14 +599,14 @@ <h3 id="_4">数据集:训练数据<a class="headerlink" href="#_4" title="Perm
599599
<p>本次训练使用的数据为 <a href="https://github.com/zalandoresearch/fashion-mnist.git">https://github.com/zalandoresearch/fashion-mnist.git</a>
600600
这是 Fashion-MNIST 数据集。</p>
601601
<p>如果是中国境内的用户,可以使用 Gitee 加速:<a href="https://gitee.com/samzong_lu/fashion-mnist.git">https://gitee.com/samzong_lu/fashion-mnist.git</a></p>
602-
<p><img alt="训练数据的数据集" src="../images/baize-02.png"/></p>
602+
<p><img alt="训练数据的数据集" src="images/baize-02.png"/></p>
603603
<div class="admonition note">
604604
<p class="admonition-title">Note</p>
605605
<p>如果未创建训练数据的数据集,通过训练脚本也会自动下载;提前准备训练数据可以提高训练速度。</p>
606606
</div>
607607
<h3 id="_5">数据集:空数据集<a class="headerlink" href="#_5" title="Permanent link"></a></h3>
608608
<p>AI Lab 支持将 <code>PVC</code> 作为数据集的数据源类型,所以创建一个空 PVC 绑定到数据集后,可将空数据集作为存放后续训练任务的输出数据集,存放模型和日志。</p>
609-
<p><img alt="空数据集" src="../images/baize-03.png"/></p>
609+
<p><img alt="空数据集" src="images/baize-03.png"/></p>
610610
<h2 id="tensorflow">环境依赖: tensorflow<a class="headerlink" href="#tensorflow" title="Permanent link"></a></h2>
611611
<p>脚本在运行时,需要依赖 <code>Tensorflow</code> 的 Python 库,可以使用 AI Lab 的环境依赖管理功能,提前将需要的 Python 库下载和准备完成,无需依赖镜像构建</p>
612612
<blockquote>
@@ -621,7 +621,7 @@ <h2 id="tensorflow">环境依赖: tensorflow<a class="headerlink" href="#tensorf
621621
<a href="#__codelineno-0-7" id="__codelineno-0-7" name="__codelineno-0-7"></a><span class="w"> </span><span class="p p-Indicator">-</span><span class="w"> </span><span class="l l-Scalar l-Scalar-Plain">tensorflow</span>
622622
<a href="#__codelineno-0-8" id="__codelineno-0-8" name="__codelineno-0-8"></a><span class="nt">prefix</span><span class="p">:</span><span class="w"> </span><span class="l l-Scalar l-Scalar-Plain">/opt/conda/envs/tensorflow</span>
623623
</code></pre></div>
624-
<p><img alt="创建环境依赖" src="../images/baize-08.png"/></p>
624+
<p><img alt="创建环境依赖" src="images/baize-08.png"/></p>
625625
<div class="admonition note">
626626
<p class="admonition-title">Note</p>
627627
<p>等待环境预热成功后,只需要将此环境挂载到 Notebook、训练任务中,使用 AI Lab 提供的基础镜像就可以</p>
@@ -631,12 +631,12 @@ <h2 id="notebook">使用 Notebook 调试脚本<a class="headerlink" href="#noteb
631631
<ul>
632632
<li>
633633
<p><a href="#_2">准备好的三个数据集</a>进行关联,挂载路径请参照下图填写,注意将需要使用的空数据集在 输出数据集位置配置</p>
634-
<p><img alt="挂载路径" src="../images/baize-06.png"/></p>
634+
<p><img alt="挂载路径" src="images/baize-06.png"/></p>
635635
</li>
636636
<li>
637637
<p>选择并绑定<a href="#tensorflow">环境依赖包</a></p>
638638
<p>等待 Notebook 创建成功,点击列表中的访问地址,进入 Notebook。并在 Notebook 的终端中执行以下命令进行任务训练。</p>
639-
<p><img alt="进入 notebook" src="../images/baize-05.png"/></p>
639+
<p><img alt="进入 notebook" src="images/baize-05.png"/></p>
640640
<div class="admonition note">
641641
<p class="admonition-title">Note</p>
642642
<p>脚本使用 Tensorflow,如果忘记关联依赖库,也可以临时用 <code>pip install tensorflow</code> 安装。</p>
@@ -667,15 +667,15 @@ <h2 id="_6">创建训练任务<a class="headerlink" href="#_6" title="Permanent
667667
<p class="admonition-title">Note</p>
668668
<p>日志所在位置为输出数据集的 <code>/home/jovyan/model/train/logs/</code></p>
669669
</div>
670-
<p><img alt="高级配置" src="../images/enable-analy.png"/></p>
670+
<p><img alt="高级配置" src="images/enable-analy.png"/></p>
671671
</li>
672672
<li>
673673
<p>返回训练任务列表,等到状态变为 <strong>成功</strong> 。点击列表右侧的 <strong></strong> ,可以查看详情、克隆任务、更新优先级、查看日志和删除等操作。</p>
674-
<p><img alt="提交训练任务" src="../images/othera.png"/></p>
674+
<p><img alt="提交训练任务" src="images/othera.png"/></p>
675675
</li>
676676
<li>
677677
<p>成功创建任务后,在左侧导航栏点击 <strong>任务分析</strong> ,可以查看任务状态并对任务训练进行调优。</p>
678-
<p><img alt="查看任务" src="../images/baize-07.png"/></p>
678+
<p><img alt="查看任务" src="images/baize-07.png"/></p>
679679
</li>
680680
</ol>
681681
<aside class="md-source-file">

0 commit comments

Comments
 (0)