doc-exports/docs/modelarts/sdk-ref/modelarts_04_0161.html
Lai, Weijian eda19245f1 modelarts sdk-ref version 21.430 update
Reviewed-by: Jiang, Beibei <beibei.jiang@t-systems.com>
Reviewed-by: Rechenburg, Matthias <matthias.rechenburg@t-systems.com>
Co-authored-by: Lai, Weijian <laiweijian4@huawei.com>
Co-committed-by: Lai, Weijian <laiweijian4@huawei.com>
2023-03-20 09:32:27 +00:00

579 lines
65 KiB
HTML

<a name="modelarts_04_0161"></a><a name="modelarts_04_0161"></a>
<h1 class="topictitle1">Obtaining Details About a Training Job</h1>
<div id="body8662426"><div class="section" id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_section35881040102516"><h4 class="sectiontitle">Sample Code</h4><p id="modelarts_04_0161__en-us_topic_0180094054_p3388112204217">In ModelArts notebook, you do not need to enter authentication parameters for session authentication. For details about session authentication of other development environments, see <a href="modelarts_04_0123.html">Session Authentication</a>.</p>
<ul id="modelarts_04_0161__en-us_topic_0180094054_ul11570161841518"><li id="modelarts_04_0161__en-us_topic_0180094054_li13570111811512">Method 1: Use the specified <strong id="modelarts_04_0161__en-us_topic_0180094054_b1746362414228">job_id</strong> and <strong id="modelarts_04_0161__en-us_topic_0180094054_b1511062772218">version_id</strong>.<div class="codecoloring" codetype="Python" id="modelarts_04_0161__en-us_topic_0180094054_screen13164182281516"><div class="highlight"><table class="highlighttable"><tr><td class="linenos"><div class="linenodiv"><pre><span class="normal">1</span>
<span class="normal">2</span>
<span class="normal">3</span>
<span class="normal">4</span>
<span class="normal">5</span></pre></div></td><td class="code"><div><pre><span></span><span class="kn">from</span> <span class="nn">modelarts.session</span> <span class="kn">import</span> <span class="n">Session</span>
<span class="kn">from</span> <span class="nn">modelarts.estimator</span> <span class="kn">import</span> <span class="n">Estimator</span>
<span class="n">session</span> <span class="o">=</span> <span class="n">Session</span><span class="p">()</span>
<span class="n">estimator</span> <span class="o">=</span> <span class="n">Estimator</span><span class="p">(</span><span class="n">modelarts_session</span><span class="o">=</span><span class="n">session</span><span class="p">,</span> <span class="n">job_id</span><span class="o">=</span><span class="s2">&quot;182626&quot;</span><span class="p">,</span> <span class="n">version_id</span><span class="o">=</span><span class="s2">&quot;278813&quot;</span><span class="p">)</span>
<span class="n">job_info</span> <span class="o">=</span> <span class="n">estimator</span><span class="o">.</span><span class="n">get_job_info</span><span class="p">()</span>
</pre></div></td></tr></table></div>
</div>
</li></ul>
</div>
<ul id="modelarts_04_0161__en-us_topic_0180094054_ul15161153561513"><li id="modelarts_04_0161__en-us_topic_0180094054_li1616133531514">Method 2: Use the training job created in <a href="modelarts_04_0131.html">Creating a Training Job</a>.<div class="codecoloring" codetype="Python" id="modelarts_04_0161__en-us_topic_0180094054_screen2290540111514"><div class="highlight"><table class="highlighttable"><tr><td class="linenos"><div class="linenodiv"><pre><span class="normal">1</span></pre></div></td><td class="code"><div><pre><span></span><span class="n">job_info</span> <span class="o">=</span> <span class="n">job_instance</span><span class="o">.</span><span class="n">get_job_info</span><span class="p">()</span>
</pre></div></td></tr></table></div>
</div>
</li></ul>
<ul id="modelarts_04_0161__en-us_topic_0180094054_ul1825593741518"><li id="modelarts_04_0161__en-us_topic_0180094054_li162551837111517">Method 3: Use the training job version object returned in <a href="modelarts_04_0169.html">Querying the List of Training Job Versions</a>.<div class="codecoloring" codetype="Python" id="modelarts_04_0161__en-us_topic_0180094054_screen127981942131518"><div class="highlight"><table class="highlighttable"><tr><td class="linenos"><div class="linenodiv"><pre><span class="normal">1</span></pre></div></td><td class="code"><div><pre><span></span><span class="n">job_info</span> <span class="o">=</span> <span class="n">job_version_instance_list</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span><span class="o">.</span><span class="n">get_job_info</span><span class="p">()</span>
</pre></div></td></tr></table></div>
</div>
</li></ul>
<div class="section" id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_section85751315416"><h4 class="sectiontitle">Parameter Description</h4>
<div class="tablenoborder"><table cellpadding="4" cellspacing="0" summary="" id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_table155461191218" frame="border" border="1" rules="all"><caption><b>Table 1 </b>Estimator request parameters</caption><thead align="left"><tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row254817912212"><th align="left" class="cellrowborder" valign="top" width="19.191919191919194%" id="mcps1.3.4.2.2.5.1.1"><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p12549899214">Parameter</p>
</th>
<th align="left" class="cellrowborder" valign="top" width="13.131313131313133%" id="mcps1.3.4.2.2.5.1.2"><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p3552101193813">Mandatory</p>
</th>
<th align="left" class="cellrowborder" valign="top" width="13.131313131313133%" id="mcps1.3.4.2.2.5.1.3"><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1755169172118">Type</p>
</th>
<th align="left" class="cellrowborder" valign="top" width="54.545454545454554%" id="mcps1.3.4.2.2.5.1.4"><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p55521998211">Description</p>
</th>
</tr>
</thead>
<tbody><tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row8893215413"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.2.2.5.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p6891421842">modelarts_session</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.2.2.5.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p68972047">Yes</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.2.2.5.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p158912219419">Object</p>
</td>
<td class="cellrowborder" valign="top" width="54.545454545454554%" headers="mcps1.3.4.2.2.5.1.4 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1689152543">Session object. For details about the initialization method, see <a href="modelarts_04_0123.html">Session Authentication</a>.</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row197933582219"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.2.2.5.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p10361105925611">job_id</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.2.2.5.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p196751771039">Yes</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.2.2.5.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p8675972311">String</p>
</td>
<td class="cellrowborder" valign="top" width="54.545454545454554%" headers="mcps1.3.4.2.2.5.1.4 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p212635661310">ID of a training job. Obtain <strong id="modelarts_04_0161__b171774503372">job_id</strong> using the training job object generated in <a href="modelarts_04_0131.html">Creating a Training Job</a>, for example, <span class="filepath" id="modelarts_04_0161__en-us_topic_0180094054_filepath128305301149"><b>job_instance.job_id</b></span>, or from the response in <a href="modelarts_04_0160.html">Obtaining Training Jobs</a>.</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row105532902114"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.2.2.5.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p212669145714">version_id</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.2.2.5.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p955361173817">Yes</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.2.2.5.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p327982618582">String</p>
</td>
<td class="cellrowborder" valign="top" width="54.545454545454554%" headers="mcps1.3.4.2.2.5.1.4 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p388712374570">Version ID of a training job. Obtain <strong id="modelarts_04_0161__b119861339113817">version_id</strong> using the training job object generated in <a href="modelarts_04_0131.html">Creating a Training Job</a>, for example, <span class="filepath" id="modelarts_04_0161__en-us_topic_0180094054_filepath1252013651416"><b>job_instance.version_id</b></span>, or from the response in <a href="modelarts_04_0160.html">Obtaining Training Jobs</a>.</p>
</td>
</tr>
</tbody>
</table>
</div>
<div class="tablenoborder"><table cellpadding="4" cellspacing="0" summary="" id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_table970151471612" frame="border" border="1" rules="all"><caption><b>Table 2 </b><strong id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_b822164095017">get_job_info</strong> response parameters</caption><thead align="left"><tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row12541201471612"><th align="left" class="cellrowborder" valign="top" width="19.191919191919194%" id="mcps1.3.4.3.2.4.1.1"><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1454151431611">Parameter</p>
</th>
<th align="left" class="cellrowborder" valign="top" width="13.131313131313133%" id="mcps1.3.4.3.2.4.1.2"><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p954171417160">Type</p>
</th>
<th align="left" class="cellrowborder" valign="top" width="67.67676767676768%" id="mcps1.3.4.3.2.4.1.3"><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p16541131451612">Description</p>
</th>
</tr>
</thead>
<tbody><tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row14541141411610"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.3.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p3541514151613">error_msg</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.3.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p654181491617">String</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.3.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1954151418169">Error message when the API call fails.</p>
<p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p15541201471619">This parameter is not included when the API call succeeds.</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row4541181420167"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.3.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p175413145166">error_code</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.3.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p4541161414167">String</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.3.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p181421215167">Error code when the API fails to be called. For details, see <a href="https://docs.otc.t-systems.com/modelarts/api-ref/common_parameters/error_codes.html" target="_blank" rel="noopener noreferrer">Error Codes</a> in <em id="modelarts_04_0161__i436708133916">ModelArts API Reference</em>.</p>
<p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p454161418168">This parameter is not included when the API call succeeds.</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_row10530163314145"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.3.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904390_p154330592251">is_success</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.3.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904390_p0433115932512">Boolean</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.3.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904390_p14433359122514">Whether the API call succeeds</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row1854111418163"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.3.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p155414146165">job_id</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.3.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1454151471611">Long</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.3.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p354118145165">Training job ID</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row175413149167"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.3.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p14541161491619">job_name</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.3.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1554171411614">String</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.3.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p16541191420169">Training job name</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row185411614101615"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.3.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p13541141471618">job_desc</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.3.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p354121414161">String</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.3.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p16541131461611">Description of a training job</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row10541714181614"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.3.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p65415141169">version_id</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.3.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p11541181413169">Long</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.3.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p4541191491615">Version ID of a training job</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row16541914121619"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.3.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p6541111431617">version_name</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.3.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1354117149169">String</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.3.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p0541191471612">Version name of a training job</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row15541121451617"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.3.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1954141413168">pre_version_id</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.3.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p185411914101618">Long</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.3.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p3541214111619">Name of the previous version of a training job</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row5541101416167"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.3.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p0541131410168">engine_type</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.3.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p10543181415164">Short</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.3.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p154301418169">Engine type of a training job. The mapping between <span class="parmvalue" id="modelarts_04_0161__en-us_topic_0180094054_parmvalue162981292514"><b>engine_type</b></span> and <span class="parmvalue" id="modelarts_04_0161__en-us_topic_0180094054_parmvalue8393624172510"><b>engine_name</b></span> is as follows:</p>
<ul id="modelarts_04_0161__en-us_topic_0180094054_ul158251407252"><li id="modelarts_04_0161__en-us_topic_0180094054_li42840234269"><strong id="modelarts_04_0161__en-us_topic_0180094054_b878781112817">engine_type</strong>: <strong id="modelarts_04_0161__en-us_topic_0180094054_b18167201315287">1</strong>, <strong id="modelarts_04_0161__en-us_topic_0180094054_b754161602818">engine_name</strong>: <strong id="modelarts_04_0161__en-us_topic_0180094054_b16734518162813">TensorFlow</strong></li><li id="modelarts_04_0161__en-us_topic_0180094054_li338694562615"><strong id="modelarts_04_0161__en-us_topic_0180094054_b114141325172819">engine_type</strong>: <strong id="modelarts_04_0161__en-us_topic_0180094054_b92879288289">2</strong>, <strong id="modelarts_04_0161__en-us_topic_0180094054_b163817305280">engine_name</strong>: <strong id="modelarts_04_0161__en-us_topic_0180094054_b18559173216289">MXNet</strong></li><li id="modelarts_04_0161__en-us_topic_0180094054_li15110544266"><strong id="modelarts_04_0161__en-us_topic_0180094054_b91261840182815">engine_type</strong>: <strong id="modelarts_04_0161__en-us_topic_0180094054_b12589194132813">3</strong>, <strong id="modelarts_04_0161__en-us_topic_0180094054_b173913431288">engine_name</strong>: <strong id="modelarts_04_0161__en-us_topic_0180094054_b15664517288">Ray</strong></li><li id="modelarts_04_0161__en-us_topic_0180094054_li2896109279"><strong id="modelarts_04_0161__en-us_topic_0180094054_b135971451152818">engine_type</strong>: <strong id="modelarts_04_0161__en-us_topic_0180094054_b85185312820">4</strong>, <strong id="modelarts_04_0161__en-us_topic_0180094054_b8334145502818">engine_name</strong>: <strong id="modelarts_04_0161__en-us_topic_0180094054_b1119175732817">Caffe</strong></li><li id="modelarts_04_0161__en-us_topic_0180094054_li992614720276"><strong id="modelarts_04_0161__en-us_topic_0180094054_b163385294294">engine_type</strong>: <strong id="modelarts_04_0161__en-us_topic_0180094054_b1474213305295">5</strong>, <strong id="modelarts_04_0161__en-us_topic_0180094054_b132941132132914">engine_name</strong>: <strong id="modelarts_04_0161__en-us_topic_0180094054_b7143340299">Spark_MLlib</strong></li><li id="modelarts_04_0161__en-us_topic_0180094054_li8825540172516"><strong id="modelarts_04_0161__en-us_topic_0180094054_b10641113912295">engine_type</strong>: <strong id="modelarts_04_0161__en-us_topic_0180094054_b55269416298">9</strong>, <strong id="modelarts_04_0161__en-us_topic_0180094054_b163181543132920">engine_name</strong>: <strong id="modelarts_04_0161__en-us_topic_0180094054_b732719459299">XGBoost-Sklearn</strong></li><li id="modelarts_04_0161__en-us_topic_0180094054_li3760111518273"><strong id="modelarts_04_0161__en-us_topic_0180094054_b5774125019292">engine_type</strong>: <strong id="modelarts_04_0161__en-us_topic_0180094054_b95261453172917">10</strong>, <strong id="modelarts_04_0161__en-us_topic_0180094054_b75914556298">engine_name</strong>: <strong id="modelarts_04_0161__en-us_topic_0180094054_b16615125714293">PyTorch</strong></li><li id="modelarts_04_0161__en-us_topic_0180094054_li1971511711270"><strong id="modelarts_04_0161__en-us_topic_0180094054_b44471640308">engine_type</strong>: <strong id="modelarts_04_0161__en-us_topic_0180094054_b148381356303">12</strong>, <strong id="modelarts_04_0161__en-us_topic_0180094054_b21515813307">engine_name</strong>: <strong id="modelarts_04_0161__en-us_topic_0180094054_b7960693308">Horovod</strong></li></ul>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row125433142164"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.3.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p155434149167">engine_name</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.3.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p19543151451616">String</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.3.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p19543014141617">Name of the engine selected for a training job. Currently, the following engines are supported:</p>
<ul id="modelarts_04_0161__en-us_topic_0180094054_ul14918918243"><li id="modelarts_04_0161__en-us_topic_0180094054_li42505207245">Caffe</li><li id="modelarts_04_0161__en-us_topic_0180094054_li1449520260246">Horovod</li><li id="modelarts_04_0161__en-us_topic_0180094054_li06391431122418">MXNet</li><li id="modelarts_04_0161__en-us_topic_0180094054_li942510362241">PyTorch</li><li id="modelarts_04_0161__en-us_topic_0180094054_li194351341132410">Ray</li><li id="modelarts_04_0161__en-us_topic_0180094054_li1847094632417">Spark_MLlib</li><li id="modelarts_04_0161__en-us_topic_0180094054_li15677165042410">TensorFlow</li><li id="modelarts_04_0161__en-us_topic_0180094054_li59187113246">XGBoost-Sklearn</li></ul>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row15543131481614"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.3.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p15436143166">engine_id</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.3.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p3543414171610">Long</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.3.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p0543614181613">ID of the engine selected for a training job</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row1654331441614"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.3.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p3543314181615">engine_version</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.3.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p15441914171614">String</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.3.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p14544161411162">Version of the engine selected for a training job</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row754421421611"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.3.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1554461412165">status</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.3.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p754401401619">Integer</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.3.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1654419140165">Status of a training job. For details about job statuses, see <a href="modelarts_04_0077.html">Job Statuses</a>.</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row1854481411160"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.3.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p11544171410164">app_url</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.3.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p454420143164">String</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.3.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p5545114181619">Code directory of a training job</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row1854591481614"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.3.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p15545111413163">boot_file_url</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.3.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p12545181481620">String</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.3.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p125452149163">Boot file of a training job</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row1754581414164"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.3.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p115451514191614">create_time</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.3.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p175457141167">Long</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.3.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1454591431610">Time when a training job is created</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row75451114111613"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.3.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p11545161481611">parameter</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.3.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p55461314161612">JSON Array</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.3.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p18546121471619">Running parameters of a training job. It is a collection of label-value pairs. This parameter is a container environment variable when a job uses a custom image.</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row75461814131618"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.3.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1054671421615">duration</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.3.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p4546171451610">Long</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.3.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p195463146167">Training job running duration, in milliseconds</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row154611412162"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.3.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p854619147169">spec_id</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.3.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1454601441613">Long</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.3.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p954741411618">ID of the resource specifications selected for a training job</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row554741420161"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.3.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p155478149167">core</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.3.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p8547191421610">String</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.3.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1254771421617">Number of cores of the resource specifications</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row854718140165"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.3.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p85479144164">cpu</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.3.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p6547171441617">String</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.3.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p35471414121613">CPU memory of the resource specifications</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row10547114171613"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.3.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p754761419166">gpu_num</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.3.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p9547121412165">Integer</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.3.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1954741418164">Number of GPUs of the resource specifications</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row165479146161"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.3.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p95473148166">gpu_type</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.3.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p3547514181618">String</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.3.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p5547714201617">GPU type of the resource specifications</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row35474144163"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.3.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1254711142164">worker_server_num</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.3.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p65481314181614">Integer</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.3.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p354815141162">Number of workers in a training job</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row10548151414160"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.3.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p6548414151613">data_url</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.3.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p105481114111616">String</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.3.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p175489147166">Dataset of a training job</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row105481714181616"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.3.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1854817148163">train_url</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.3.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p154891413161">String</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.3.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p6548101471610">OBS path to the training job output file</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row19548214131617"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.3.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p155484148163">dataset_version_id</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.3.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1254891419167">String</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.3.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p11550414161618">Dataset version ID of a training job</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row355081431619"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.3.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p45506142166">dataset_id</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.3.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p13550814201614">String</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.3.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p9550141412164">Dataset ID of a training job</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row1818442163616"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.3.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1084415185810">data_source</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.3.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p9844121105816">JSON Array</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.3.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p884414112581">Datasets of a training job</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row1955020144163"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.3.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1555113149163">model_id</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.3.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1555113141166">Long</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.3.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p25511514181613">Model ID of a training job</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row1955161416169"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.3.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p2055117147166">model_metric_list</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.3.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p955101415167">JSON Array</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.3.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1255113149165">Model metrics of a training job</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row1455171416166"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.3.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p20551171471619">system_metric_list</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.3.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p95521214191620">JSON Array</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.3.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p125521814191618">System monitoring metrics of a training job</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row1823475561412"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.3.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1824635984">user_image_url</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.3.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p127561858088">String</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.3.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p08249351888">SWR URL of the custom image used by a training job</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row182221458131414"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.3.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1756711381887">user_command</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.3.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p24119591820">String</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.3.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1256715381188">Boot command used to start the container of the custom image of a training job</p>
</td>
</tr>
</tbody>
</table>
</div>
<div class="tablenoborder"><table cellpadding="4" cellspacing="0" summary="" id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_table250595919011" frame="border" border="1" rules="all"><caption><b>Table 3 </b><strong id="modelarts_04_0161__en-us_topic_0180094054_b17648111319339">data_source</strong> parameters</caption><thead align="left"><tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row55072591012"><th align="left" class="cellrowborder" valign="top" width="19.191919191919194%" id="mcps1.3.4.4.2.4.1.1"><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1527511378117">Parameter</p>
</th>
<th align="left" class="cellrowborder" valign="top" width="13.131313131313133%" id="mcps1.3.4.4.2.4.1.2"><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p22831437411">Type</p>
</th>
<th align="left" class="cellrowborder" valign="top" width="67.67676767676768%" id="mcps1.3.4.4.2.4.1.3"><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p328510371619">Description</p>
</th>
</tr>
</thead>
<tbody><tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row2507159009"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.4.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1680105517118">dataset_id</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.4.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1180619554119">String</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.4.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p18097554112">Dataset ID of a training job</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row205071598010"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.4.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p118131955110">dataset_version</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.4.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1282320551611">String</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.4.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p0823205511117">Dataset version ID of a training job</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row589115610214"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.4.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p16892761827">type</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.4.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p188923615217">String</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.4.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p161265721118">Dataset type</p>
<p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p3436132615112"><span class="parmname" id="modelarts_04_0161__en-us_topic_0180094054_parmname1010132131719"><b>obs</b></span>: Data from OBS is used.</p>
<p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p88921866216"><span class="parmname" id="modelarts_04_0161__en-us_topic_0180094054_parmname1242092716173"><b>dataset</b></span>: Data from a specified dataset is used.</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row151161127191914"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.4.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p13117227131918">data_url</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.4.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p011752719191">String</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.4.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p141171327171918">OBS bucket path</p>
</td>
</tr>
</tbody>
</table>
</div>
<div class="tablenoborder"><table cellpadding="4" cellspacing="0" summary="" id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_table1518419148166" frame="border" border="1" rules="all"><caption><b>Table 4 </b><strong id="modelarts_04_0161__b30140103614">model_metric_list</strong> parameters</caption><thead align="left"><tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row13554171419168"><th align="left" class="cellrowborder" valign="top" width="19.191919191919194%" id="mcps1.3.4.5.2.4.1.1"><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p5554114191619">Parameter</p>
</th>
<th align="left" class="cellrowborder" valign="top" width="13.131313131313133%" id="mcps1.3.4.5.2.4.1.2"><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p2554114141617">Type</p>
</th>
<th align="left" class="cellrowborder" valign="top" width="67.67676767676768%" id="mcps1.3.4.5.2.4.1.3"><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1255421411161">Description</p>
</th>
</tr>
</thead>
<tbody><tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row1355415144167"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.5.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p6554141414162">metric</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.5.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p12554614131615">JSON Array</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.5.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p18554151412166">Validation metrics of a class of a training job</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row8554151412160"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.5.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p955412146164">total_metric</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.5.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p145541614141617">JSON Array</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.5.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p255561491616">All validation metrics of a training job</p>
</td>
</tr>
</tbody>
</table>
</div>
<div class="tablenoborder"><table cellpadding="4" cellspacing="0" summary="" id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_table41931214191617" frame="border" border="1" rules="all"><caption><b>Table 5 </b><strong id="modelarts_04_0161__b81194020367">system_metric_list</strong> parameters</caption><thead align="left"><tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row145553143164"><th align="left" class="cellrowborder" valign="top" width="19.191919191919194%" id="mcps1.3.4.6.2.4.1.1"><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p15551714101614">Parameter</p>
</th>
<th align="left" class="cellrowborder" valign="top" width="13.131313131313133%" id="mcps1.3.4.6.2.4.1.2"><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p55551114111619">Type</p>
</th>
<th align="left" class="cellrowborder" valign="top" width="67.67676767676768%" id="mcps1.3.4.6.2.4.1.3"><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p855561417168">Description</p>
</th>
</tr>
</thead>
<tbody><tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row17555191416164"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.6.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p14555614161617">cpuUsage</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.6.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p35551214131616">JSON Array</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.6.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p6555121416165">CPU usage of a training job</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row25555149160"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.6.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p175555143161">memUsage</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.6.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p755520145165">JSON Array</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.6.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p555551411163">Memory usage of a training job</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row9555201451611"><td class="cellrowborder" valign="top" width="19.191919191919194%" headers="mcps1.3.4.6.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p4555314121616">gpuUtil</p>
</td>
<td class="cellrowborder" valign="top" width="13.131313131313133%" headers="mcps1.3.4.6.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p155514142160">JSON Array</p>
</td>
<td class="cellrowborder" valign="top" width="67.67676767676768%" headers="mcps1.3.4.6.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1355511148166">GPU usage of a training job</p>
</td>
</tr>
</tbody>
</table>
</div>
<div class="tablenoborder"><table cellpadding="4" cellspacing="0" summary="" id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_table1203151401611" frame="border" border="1" rules="all"><caption><b>Table 6 </b><strong id="modelarts_04_0161__b151124043617">metric</strong> parameters</caption><thead align="left"><tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row1955611431612"><th align="left" class="cellrowborder" valign="top" width="19.387755102040817%" id="mcps1.3.4.7.2.4.1.1"><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1355611471611">Parameter</p>
</th>
<th align="left" class="cellrowborder" valign="top" width="13.26530612244898%" id="mcps1.3.4.7.2.4.1.2"><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1155619144163">Type</p>
</th>
<th align="left" class="cellrowborder" valign="top" width="67.34693877551021%" id="mcps1.3.4.7.2.4.1.3"><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p155611481615">Description</p>
</th>
</tr>
</thead>
<tbody><tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row5556101411616"><td class="cellrowborder" valign="top" width="19.387755102040817%" headers="mcps1.3.4.7.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p055671411613">metric_values</p>
</td>
<td class="cellrowborder" valign="top" width="13.26530612244898%" headers="mcps1.3.4.7.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p6556131415165">JSON Array</p>
</td>
<td class="cellrowborder" valign="top" width="67.34693877551021%" headers="mcps1.3.4.7.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p195564148161">Validation metrics of a class of a training job</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row19556151416166"><td class="cellrowborder" valign="top" width="19.387755102040817%" headers="mcps1.3.4.7.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1155891414169">reserved_data</p>
</td>
<td class="cellrowborder" valign="top" width="13.26530612244898%" headers="mcps1.3.4.7.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p10558714171612">JSON Array</p>
</td>
<td class="cellrowborder" valign="top" width="67.34693877551021%" headers="mcps1.3.4.7.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1355820142166">Reserved parameter</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row19558121413167"><td class="cellrowborder" valign="top" width="19.387755102040817%" headers="mcps1.3.4.7.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p20558201481618">metric_meta</p>
</td>
<td class="cellrowborder" valign="top" width="13.26530612244898%" headers="mcps1.3.4.7.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p3558914131617">JSON Array</p>
</td>
<td class="cellrowborder" valign="top" width="67.34693877551021%" headers="mcps1.3.4.7.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p25581914131618">A class of a training job, including the class ID and name</p>
</td>
</tr>
</tbody>
</table>
</div>
<div class="tablenoborder"><table cellpadding="4" cellspacing="0" summary="" id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_table1521371414163" frame="border" border="1" rules="all"><caption><b>Table 7 </b><strong id="modelarts_04_0161__b14219406363">metric_values</strong> parameters</caption><thead align="left"><tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row65581314171619"><th align="left" class="cellrowborder" valign="top" width="19.387755102040817%" id="mcps1.3.4.8.2.4.1.1"><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p3558014131619">Parameter</p>
</th>
<th align="left" class="cellrowborder" valign="top" width="13.26530612244898%" id="mcps1.3.4.8.2.4.1.2"><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p165582145168">Type</p>
</th>
<th align="left" class="cellrowborder" valign="top" width="67.34693877551021%" id="mcps1.3.4.8.2.4.1.3"><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1355819149167">Description</p>
</th>
</tr>
</thead>
<tbody><tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row195581014141618"><td class="cellrowborder" valign="top" width="19.387755102040817%" headers="mcps1.3.4.8.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p15558714111613">recall</p>
</td>
<td class="cellrowborder" valign="top" width="13.26530612244898%" headers="mcps1.3.4.8.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1455816146167">JSON Array</p>
</td>
<td class="cellrowborder" valign="top" width="67.34693877551021%" headers="mcps1.3.4.8.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p95581814111610">Recall of a class of a training job</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row1955821416160"><td class="cellrowborder" valign="top" width="19.387755102040817%" headers="mcps1.3.4.8.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p11558714151610">precision</p>
</td>
<td class="cellrowborder" valign="top" width="13.26530612244898%" headers="mcps1.3.4.8.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p45584142161">JSON Array</p>
</td>
<td class="cellrowborder" valign="top" width="67.34693877551021%" headers="mcps1.3.4.8.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p0558201491617">Precision of a class of a training job</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row655871416166"><td class="cellrowborder" valign="top" width="19.387755102040817%" headers="mcps1.3.4.8.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1555831414165">accuracy</p>
</td>
<td class="cellrowborder" valign="top" width="13.26530612244898%" headers="mcps1.3.4.8.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p15586141169">JSON Array</p>
</td>
<td class="cellrowborder" valign="top" width="67.34693877551021%" headers="mcps1.3.4.8.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p195581814131615">Accuracy of a class of a training job</p>
</td>
</tr>
</tbody>
</table>
</div>
<div class="tablenoborder"><table cellpadding="4" cellspacing="0" summary="" id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_table422561491610" frame="border" border="1" rules="all"><caption><b>Table 8 </b><strong id="modelarts_04_0161__b193174018366">total_metric</strong> parameters</caption><thead align="left"><tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row125601814161617"><th align="left" class="cellrowborder" valign="top" width="19.387755102040817%" id="mcps1.3.4.9.2.4.1.1"><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p4560121451610">Parameter</p>
</th>
<th align="left" class="cellrowborder" valign="top" width="13.26530612244898%" id="mcps1.3.4.9.2.4.1.2"><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p25601914171617">Type</p>
</th>
<th align="left" class="cellrowborder" valign="top" width="67.34693877551021%" id="mcps1.3.4.9.2.4.1.3"><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p25601214201619">Description</p>
</th>
</tr>
</thead>
<tbody><tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row14560141491615"><td class="cellrowborder" valign="top" width="19.387755102040817%" headers="mcps1.3.4.9.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p165601014161620">total_metric_meta</p>
</td>
<td class="cellrowborder" valign="top" width="13.26530612244898%" headers="mcps1.3.4.9.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p7560414191614">JSON Array</p>
</td>
<td class="cellrowborder" valign="top" width="67.34693877551021%" headers="mcps1.3.4.9.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p8560191410163">Reserved parameter</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row115609144162"><td class="cellrowborder" valign="top" width="19.387755102040817%" headers="mcps1.3.4.9.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p145605143163">total_reserved_data</p>
</td>
<td class="cellrowborder" valign="top" width="13.26530612244898%" headers="mcps1.3.4.9.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p18560111471619">JSON Array</p>
</td>
<td class="cellrowborder" valign="top" width="67.34693877551021%" headers="mcps1.3.4.9.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p0560191431614">Reserved parameter</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row2056021491618"><td class="cellrowborder" valign="top" width="19.387755102040817%" headers="mcps1.3.4.9.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p115600144163">total_metric_values</p>
</td>
<td class="cellrowborder" valign="top" width="13.26530612244898%" headers="mcps1.3.4.9.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1556031413167">JSON Array</p>
</td>
<td class="cellrowborder" valign="top" width="67.34693877551021%" headers="mcps1.3.4.9.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p16560914111615">All validation metrics of a training job</p>
</td>
</tr>
</tbody>
</table>
</div>
<div class="tablenoborder"><table cellpadding="4" cellspacing="0" summary="" id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_table1237111471619" frame="border" border="1" rules="all"><caption><b>Table 9 </b><strong id="modelarts_04_0161__en-us_topic_0180094054_b171537352408">total_metric_values</strong> parameters</caption><thead align="left"><tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row17560111418167"><th align="left" class="cellrowborder" valign="top" width="19.387755102040817%" id="mcps1.3.4.10.2.4.1.1"><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1856114144161">Parameter</p>
</th>
<th align="left" class="cellrowborder" valign="top" width="13.26530612244898%" id="mcps1.3.4.10.2.4.1.2"><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1756191418166">Type</p>
</th>
<th align="left" class="cellrowborder" valign="top" width="67.34693877551021%" id="mcps1.3.4.10.2.4.1.3"><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p65611147164">Description</p>
</th>
</tr>
</thead>
<tbody><tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row17561161414166"><td class="cellrowborder" valign="top" width="19.387755102040817%" headers="mcps1.3.4.10.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p19561121491615">f1_score</p>
</td>
<td class="cellrowborder" valign="top" width="13.26530612244898%" headers="mcps1.3.4.10.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p18561161421610">Float</p>
</td>
<td class="cellrowborder" valign="top" width="67.34693877551021%" headers="mcps1.3.4.10.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p11561171416166">F1 score of a training job</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row55612146164"><td class="cellrowborder" valign="top" width="19.387755102040817%" headers="mcps1.3.4.10.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p1656113146168">recall</p>
</td>
<td class="cellrowborder" valign="top" width="13.26530612244898%" headers="mcps1.3.4.10.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p75612144166">Float</p>
</td>
<td class="cellrowborder" valign="top" width="67.34693877551021%" headers="mcps1.3.4.10.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p85617143166">Total recall of a training job</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row5561414111615"><td class="cellrowborder" valign="top" width="19.387755102040817%" headers="mcps1.3.4.10.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p11561111411614">precision</p>
</td>
<td class="cellrowborder" valign="top" width="13.26530612244898%" headers="mcps1.3.4.10.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p75612148161">Float</p>
</td>
<td class="cellrowborder" valign="top" width="67.34693877551021%" headers="mcps1.3.4.10.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p195613143165">Total precision of a training job</p>
</td>
</tr>
<tr id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_row1356115142164"><td class="cellrowborder" valign="top" width="19.387755102040817%" headers="mcps1.3.4.10.2.4.1.1 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p10561814151613">accuracy</p>
</td>
<td class="cellrowborder" valign="top" width="13.26530612244898%" headers="mcps1.3.4.10.2.4.1.2 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p10561121417161">Float</p>
</td>
<td class="cellrowborder" valign="top" width="67.34693877551021%" headers="mcps1.3.4.10.2.4.1.3 "><p id="modelarts_04_0161__en-us_topic_0180094054_en-us_topic_0170904391_p145631714181617">Total accuracy of a training job</p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div>
<div class="familylinks">
<div class="parentlink"><strong>Parent topic:</strong> <a href="modelarts_04_0158.html">Training Jobs</a></div>
</div>
</div>