You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

show.tmpl 30 kB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435
  1. {{template "base/head" .}}
  2. <div class="repository">
  3. {{template "repo/header" .}}
  4. <div class="ui container">
  5. <h4 class="ui header" id="vertical-segment">
  6. <div class="ui breadcrumb">
  7. <a class="section" href="{{.RepoLink}}/debugjob?debugListType=all">
  8. {{.i18n.Tr "repo.cloudbrain"}}
  9. </a>
  10. <div class="divider"> / </div>
  11. <a class="section backTodeBug" href="{{.RepoLink}}/debugjob?debugListType=all">
  12. {{$.i18n.Tr "repo.modelarts.notebook"}}
  13. </a>
  14. <div class="divider"> / </div>
  15. {{with .task}}
  16. <div class="active section">{{.DisplayJobName}}</div>
  17. {{end}}
  18. </div>
  19. </h4>
  20. {{with .task}}
  21. <div class="ui accordion border-according" id="accordion" data-repopath="{{$.RepoRelPath}}/grampus/notebook"
  22. data-jobid="{{.ID}}" data-version="">
  23. <div class="active title padding0">
  24. <div class="according-panel-heading">
  25. <div class="accordion-panel-title">
  26. <!-- <i class="dropdown icon"></i> -->
  27. <span class="accordion-panel-title-content">
  28. <span>
  29. <div class="ac-display-inblock title_text acc-margin-bottom">
  30. <span class="cti-mgRight-sm">
  31. {{TimeSinceUnix1 .CreatedUnix}}
  32. </span>
  33. <span class="cti-mgRight-sm">{{$.i18n.Tr "repo.modelarts.status"}}:
  34. <span id="{{.VersionName}}-status-span"><i id="icon"
  35. style="vertical-align: middle;" class="{{.Status}}"></i><span id="text"
  36. style="margin-left: 0.4em;font-size: 12px;">{{.Status}}</span></span>
  37. </span>
  38. <span
  39. class="cti-mgRight-sm">{{$.i18n.Tr "repo.modelarts.train_job.dura_time"}}:</span>
  40. <span class="cti-mgRight-sm uc-accordionTitle-black"
  41. id="{{.VersionName}}-duration-span">{{ConvertDurationToStr .Duration}}</span>
  42. <span class="refresh-status" data-tooltip="刷新" style="cursor: pointer;" data-inverted="" data-version="{{.VersionName}}">
  43. <i class="redo icon redo-color"></i>
  44. </span>
  45. </div>
  46. </span>
  47. </span>
  48. </div>
  49. </div>
  50. </div>
  51. <div class="active content">
  52. <div class="content-pad">
  53. <div class="ui pointing secondary menu" style="border-bottom: 1px solid rgba(34,36,38,.15);">
  54. <a class="active item" data-tab="first">{{$.i18n.Tr "repo.modelarts.train_job.config"}}</a>
  55. </div>
  56. <div class="ui tab active" data-tab="first">
  57. <div style="padding-top: 10px;">
  58. <div class="tab_2_content">
  59. <div class="ac-grid ac-grid-col2">
  60. <div class="ac-grid-col">
  61. <table class="ti-form">
  62. <tbody class="ti-text-form">
  63. <tr class="ti-no-ng-animate">
  64. <td class="ti-no-ng-animate ti-text-form-label text-width80">
  65. {{$.i18n.Tr "repo.cloudbrain_task"}}
  66. </td>
  67. <td class="ti-text-form-content">
  68. <div class="text-span text-span-w">
  69. {{.DisplayJobName}}
  70. </div>
  71. </td>
  72. </tr>
  73. <tr class="ti-no-ng-animate">
  74. <td class="ti-no-ng-animate ti-text-form-label text-width80">
  75. {{$.i18n.Tr "repo.modelarts.status"}}
  76. </td>
  77. <td class="ti-text-form-content">
  78. <div class="text-span text-span-w" id="{{.VersionName}}-status">
  79. {{.Status}}
  80. </div>
  81. </td>
  82. </tr>
  83. <tr class="ti-no-ng-animate">
  84. <td class="ti-no-ng-animate ti-text-form-label text-width80">
  85. {{$.i18n.Tr "repo.cloudbrain_creator"}}
  86. </td>
  87. <td class="ti-text-form-content">
  88. <div class="text-span text-span-w">
  89. {{.User.Name}}
  90. </div>
  91. </td>
  92. </tr>
  93. <tr class="ti-no-ng-animate">
  94. <td class="ti-no-ng-animate ti-text-form-label text-width80">
  95. {{$.i18n.Tr "repo.modelarts.code_version"}}
  96. </td>
  97. <td class="ti-text-form-content">
  98. <div class="text-span text-span-w">
  99. {{if .BranchName}}
  100. {{.BranchName}}
  101. {{else}}
  102. --
  103. {{end}}
  104. <span style="margin-left:1rem" class="ui label">{{SubStr .CommitID 0 10}}</span>
  105. </div>
  106. </td>
  107. </tr>
  108. <tr class="ti-no-ng-animate">
  109. <td class="ti-no-ng-animate ti-text-form-label text-width80">
  110. {{$.i18n.Tr "repo.modelarts.computing_resources"}}
  111. </td>
  112. <td class="ti-text-form-content">
  113. <div class="text-span text-span-w"
  114. id="{{.VersionName}}-computeresource">
  115. {{.ComputeResource}}
  116. </div>
  117. </td>
  118. </tr>
  119. <tr class="ti-no-ng-animate">
  120. <td class="ti-no-ng-animate ti-text-form-label text-width80">
  121. {{$.i18n.Tr "repo.modelarts.createtime"}}
  122. </td>
  123. <td class="ti-text-form-content">
  124. <div class="text-span text-span-w"
  125. id="{{.VersionName}}-createtime">
  126. {{TimeSinceUnix1 .CreatedUnix}}
  127. </div>
  128. </td>
  129. </tr>
  130. {{if eq .ComputeResource "CPU/GPU"}}
  131. <tr class="ti-no-ng-animate">
  132. <td class="ti-no-ng-animate ti-text-form-label text-width80">
  133. {{$.i18n.Tr "repo.cloudbrain.time.starttime"}}
  134. </td>
  135. <td class="ti-text-form-content">
  136. <div class="text-span text-span-w">
  137. <div class="text-span text-span-w"
  138. id="{{.VersionName}}-startTime">
  139. {{if not (eq .StartTime 0)}}
  140. {{TimeSinceUnix1 .StartTime}}
  141. {{else}}
  142. --
  143. {{end}}
  144. </div>
  145. </div>
  146. </td>
  147. </tr>
  148. <tr class="ti-no-ng-animate">
  149. <td class="ti-no-ng-animate ti-text-form-label text-width80">
  150. {{$.i18n.Tr "repo.cloudbrain.time.endtime"}}
  151. </td>
  152. <td class="ti-text-form-content">
  153. <div class="text-span text-span-w"
  154. id="{{.VersionName}}-EndTime">
  155. {{if not (eq .EndTime 0)}}
  156. {{TimeSinceUnix1 .EndTime}}
  157. {{else}}
  158. --
  159. {{end}}
  160. </div>
  161. </td>
  162. </tr>
  163. {{end}}
  164. <tr class="ti-no-ng-animate">
  165. <td class="ti-no-ng-animate ti-text-form-label text-width80">
  166. {{$.i18n.Tr "cloudbrain.description"}}
  167. </td>
  168. <td class="ti-text-form-content">
  169. <div class="text-span-new" id="model_description">
  170. {{.Description}}
  171. </div>
  172. </td>
  173. </tr>
  174. </tbody>
  175. </table>
  176. </div>
  177. <div class="ac-grid-col">
  178. <table class="ti-form">
  179. <tbody class="ti-text-form">
  180. <tr class="ti-no-ng-animate">
  181. <td class="ti-no-ng-animate ti-text-form-label text-width80">
  182. {{$.i18n.Tr "cloudbrain.mirror"}}
  183. </td>
  184. <td class="ti-text-form-content">
  185. <div class="text-span text-span-w" id="{{.VersionName}}-mirror">
  186. <span class="ui poping up clipboard" data-position="top center" id="clipboard-btn-image" style="cursor:pointer"
  187. data-clipboard-text="{{.EngineName}}"
  188. data-success="{{$.i18n.Tr "repo.copied"}}"
  189. data-error="{{$.i18n.Tr "repo.copied_error"}}"
  190. data-content="{{$.i18n.Tr "repo.copy"}}"
  191. data-variation="inverted tiny"
  192. >
  193. <span title="{{.EngineName}}">{{.EngineName}}</span>
  194. </span>
  195. </div>
  196. </td>
  197. </tr>
  198. <tr class="ti-no-ng-animate">
  199. <td class="ti-no-ng-animate ti-text-form-label text-width80">
  200. {{$.i18n.Tr "repo.modelarts.train_job.standard"}}
  201. </td>
  202. <td class="ti-text-form-content spec">
  203. <div class="text-span text-span-w"></div>
  204. </td>
  205. </tr>
  206. <tr class="ti-no-ng-animate">
  207. <td class="ti-no-ng-animate ti-text-form-label text-width80">
  208. {{$.i18n.Tr "repo.grampus.train_job.ai_center"}}
  209. </td>
  210. <td class="ti-text-form-content">
  211. <div class="text-span text-span-w" id="{{.VersionName}}-ai_center">
  212. {{if .AiCenter}}{{.AiCenter}}{{else}}--{{end}}
  213. </div>
  214. </td>
  215. </tr>
  216. {{if eq .ComputeResource "CPU/GPU"}}
  217. <tr class="ti-no-ng-animate">
  218. <td class="ti-no-ng-animate ti-text-form-label text-width80">
  219. {{$.i18n.Tr "cloudbrain.code_storage_path"}}
  220. </td>
  221. <td class="ti-text-form-content">
  222. <div class="text-span text-span-w" id="code_storage_path">
  223. {{$.code_path}}
  224. </div>
  225. </td>
  226. </tr>
  227. <tr class="ti-no-ng-animate">
  228. <td class="ti-no-ng-animate ti-text-form-label text-width80">
  229. {{$.i18n.Tr "cloudbrain.dataset_storage_path"}}
  230. </td>
  231. <td class="ti-text-form-content">
  232. <div class="text-span text-span-w" id="dataset_storage_path">
  233. {{$.dataset_path}}
  234. </div>
  235. </td>
  236. </tr>
  237. <tr class="ti-no-ng-animate">
  238. <td class="ti-no-ng-animate ti-text-form-label text-width80">
  239. {{$.i18n.Tr "cloudbrain.model_storage_path"}}
  240. </td>
  241. <td class="ti-text-form-content">
  242. <div class="text-span text-span-w" id="code_storage_path">
  243. /pretrainmodel
  244. </div>
  245. </td>
  246. </tr>
  247. <tr class="ti-no-ng-animate">
  248. <td class="ti-no-ng-animate ti-text-form-label text-width80">
  249. {{$.i18n.Tr "cloudbrain.output_storage_path"}}
  250. </td>
  251. <td class="ti-text-form-content">
  252. <div class="text-span text-span-w" id="model_storage_path">
  253. {{$.model_path}}
  254. </div>
  255. </td>
  256. </tr>
  257. {{end}}
  258. {{if eq .ComputeResource "NPU"}}
  259. <tr class="ti-no-ng-animate">
  260. <td class="ti-no-ng-animate ti-text-form-label text-width80">
  261. {{$.i18n.Tr "repo.cloudbrain.time.starttime"}}
  262. </td>
  263. <td class="ti-text-form-content">
  264. <div class="text-span text-span-w">
  265. <div class="text-span text-span-w"
  266. id="{{.VersionName}}-startTime">
  267. {{if not (eq .StartTime 0)}}
  268. {{TimeSinceUnix1 .StartTime}}
  269. {{else}}
  270. --
  271. {{end}}
  272. </div>
  273. </div>
  274. </td>
  275. </tr>
  276. <tr class="ti-no-ng-animate">
  277. <td class="ti-no-ng-animate ti-text-form-label text-width80">
  278. {{$.i18n.Tr "repo.cloudbrain.time.endtime"}}
  279. </td>
  280. <td class="ti-text-form-content">
  281. <div class="text-span text-span-w"
  282. id="{{.VersionName}}-EndTime">
  283. {{if not (eq .EndTime 0)}}
  284. {{TimeSinceUnix1 .EndTime}}
  285. {{else}}
  286. --
  287. {{end}}
  288. </div>
  289. </td>
  290. </tr>
  291. {{end}}
  292. <tr class="ti-no-ng-animate">
  293. <td class="ti-no-ng-animate ti-text-form-label text-width80">
  294. {{$.i18n.Tr "repo.modelarts.train_job.dura_time"}}
  295. </td>
  296. <td class="ti-text-form-content">
  297. <div class="text-span text-span-w"
  298. id="{{.VersionName}}-duration">
  299. {{if not (eq .Duration 0)}}
  300. {{ConvertDurationToStr .Duration}}
  301. {{else}}
  302. --
  303. {{end}}
  304. </div>
  305. </td>
  306. </tr>
  307. {{if eq .ComputeResource "NPU"}}
  308. <tr class="ti-no-ng-animate">
  309. <td class="ti-no-ng-animate ti-text-form-label text-width80">
  310. {{$.i18n.Tr "cloudbrain.code_obs_address"}}
  311. </td>
  312. <td class="ti-text-form-content">
  313. <div class="text-span text-span-w" id="{{.VersionName}}-trainUrl">
  314. <span class="ui poping up clipboard" data-position="top center" id="clipboard-btn-trainUrl" style="cursor:pointer"
  315. data-clipboard-text="{{.TrainUrl}}"
  316. data-success="{{$.i18n.Tr "repo.copied"}}"
  317. data-error="{{$.i18n.Tr "repo.copied_error"}}"
  318. data-content="{{$.i18n.Tr "repo.copy"}}"
  319. data-variation="inverted tiny"
  320. >
  321. <span title="{{.TrainUrl}}">
  322. {{if .TrainUrl}}
  323. {{.TrainUrl}}
  324. {{else}}
  325. --
  326. {{end}}
  327. </span>
  328. </span>
  329. </div>
  330. </td>
  331. </tr>
  332. {{end}}
  333. </tbody>
  334. </table>
  335. </div>
  336. </div>
  337. </div>
  338. <div style="clear:both">
  339. <table style="border:none" class="ui fixed small stackable table">
  340. <thead>
  341. <tr><th style="color: #8a8e99;font-size:12px" class="three wide left aligned">{{$.i18n.Tr "dataset.file"}}</th>
  342. {{if eq .ComputeResource "NPU"}}
  343. <th style="color: #8a8e99;font-size:12px"class="eleven wide">{{$.i18n.Tr "dataset.download_url"}}</th>
  344. <th style="color: #8a8e99;font-size:12px" class="two wide center aligned">{{$.i18n.Tr "dataset.download_oper"}}</th>
  345. {{end}}
  346. {{$Resource := .ComputeResource}}
  347. </tr></thead>
  348. <tbody>
  349. {{range $.datasetDownload}}
  350. <tr>
  351. <td class="dataset_nowrap_two_line">
  352. {{if eq .IsDelete true}}
  353. {{.DatasetName}}({{$.i18n.Tr "dataset.file_deleted"}})
  354. {{else}}
  355. <a href="{{.RepositoryLink}}" target="_blank">{{.DatasetName}}</a>
  356. {{end}}
  357. </td>
  358. {{if eq $Resource "NPU"}}
  359. <td><div class="dataset_nowrap_two_line">{{.DatasetDownloadLink}}</div></td>
  360. <td class="center aligned"><a class="ui poping up clipboard" id="clipboard-btn-dataset" data-original="{{$.i18n.Tr "repo.copy_link"}}" data-success="{{$.i18n.Tr "repo.copy_link_success"}}" data-error="{{$.i18n.Tr "repo.copy_link_error"}}" data-content="{{$.i18n.Tr "repo.copy_link"}}" data-variation="inverted tiny" data-clipboard-text="{{.DatasetDownloadLink}}">{{if .DatasetDownloadLink}}{{$.i18n.Tr "dataset.download_copy"}}{{end}}</a></td>
  361. {{end}}
  362. </tr>
  363. {{end}}
  364. </tbody>
  365. </table>
  366. </div>
  367. </div>
  368. </div>
  369. </div>
  370. </div>
  371. </div>
  372. {{end}}
  373. {{template "base/paginate" .}}
  374. </div>
  375. <!-- 确认模态框 -->
  376. <div id="deletemodel">
  377. <div class="ui basic modal">
  378. <div class="ui icon header">
  379. <i class="trash icon"></i> {{.i18n.Tr "cloudbrain.delete_task"}}
  380. </div>
  381. <div class="content">
  382. <p>{{.i18n.Tr "cloudbrain.task_delete_confirm"}}</p>
  383. </div>
  384. <div class="actions">
  385. <div class="ui red basic inverted cancel button">
  386. <i class="remove icon"></i> {{.i18n.Tr "cloudbrain.operate_cancel"}}
  387. </div>
  388. <div class="ui green basic inverted ok button">
  389. <i class="checkmark icon"></i> {{.i18n.Tr "cloudbrain.operate_confirm"}}
  390. </div>
  391. </div>
  392. </div>
  393. </div>
  394. </div>
  395. {{template "base/footer" .}}
  396. <script src="{{StaticUrlPrefix}}/js/specsuse.js?v={{MD5 AppVer}}" type="text/javascript"></script>
  397. <script>
  398. console.log({{$.modelDownload}} {{$.modelDownload.Name}})
  399. console.log({{.task}});
  400. ;(function() {
  401. var SPEC = {{ .Spec }};
  402. var showPoint = false;
  403. var specStr = window.renderSpecStr(SPEC, showPoint, {
  404. gpu_memory: {{$.i18n.Tr "cloudbrain.gpu_memory"}},
  405. free: {{$.i18n.Tr "cloudbrain.free"}},
  406. point_hr: {{$.i18n.Tr "cloudbrain.point_hr"}},
  407. memory: {{$.i18n.Tr "cloudbrain.memory"}},
  408. shared_memory: {{$.i18n.Tr "cloudbrain.shared_memory"}},
  409. });
  410. $('td.ti-text-form-content.spec div').text(specStr);
  411. })();
  412. </script>