Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
MindSpore
mindinsight
提交
0a8162e8
M
mindinsight
项目概览
MindSpore
/
mindinsight
通知
7
Star
3
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
M
mindinsight
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
0a8162e8
编写于
4月 18, 2020
作者:
P
ph
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
tracing association
上级
41693da1
变更
5
显示空白变更内容
内联
并排
Showing
5 changed file
with
748 addition
and
299 deletion
+748
-299
mindinsight/ui/src/locales/zh-cn.json
mindinsight/ui/src/locales/zh-cn.json
+7
-2
mindinsight/ui/src/services/request-service.js
mindinsight/ui/src/services/request-service.js
+3
-11
mindinsight/ui/src/store.js
mindinsight/ui/src/store.js
+12
-3
mindinsight/ui/src/views/train-manage/data-traceback.vue
mindinsight/ui/src/views/train-manage/data-traceback.vue
+455
-93
mindinsight/ui/src/views/train-manage/model-traceback.vue
mindinsight/ui/src/views/train-manage/model-traceback.vue
+271
-190
未找到文件。
mindinsight/ui/src/locales/zh-cn.json
浏览文件 @
0a8162e8
...
...
@@ -43,13 +43,18 @@
"lossFunc"
:
"损失函数"
,
"learningRate"
:
"学习率"
,
"modelSize"
:
"模型大小"
,
"dataProcess"
:
"数据处理"
"dataProcess"
:
"数据处理"
,
"noDataFound"
:
"暂无满足筛选条件的数据"
,
"noDataTips"
:
"请点击“显示全量数据”按钮查看全量数据"
},
"dataTraceback"
:
{
"details"
:
"详情"
,
"key"
:
"KEY"
,
"value"
:
"VALUE"
,
"dataTraceTips"
:
"该数据涉及合并操作"
"dataTraceTips"
:
"该数据涉及合并操作"
,
"noDataFound"
:
"暂无满足筛选条件的数据"
,
"noDataTips"
:
"请点击“显示全量数据”按钮查看全量数据"
},
"trainingDashboard"
:
{
"trainingDashboardTitle"
:
"训练看板"
,
...
...
mindinsight/ui/src/services/request-service.js
浏览文件 @
0a8162e8
...
...
@@ -25,19 +25,11 @@ export default {
});
},
//
query dataset lineage
getDatasetLineage
(
)
{
//
NEW API for model and data source tracing
queryLineagesData
(
params
)
{
return
axios
({
method
:
'
post
'
,
url
:
'
v1/mindinsight/datasets/dataset_lineage
'
,
});
},
// query model versions
queryModelVersions
(
params
)
{
return
axios
({
method
:
'
post
'
,
url
:
'
v1/mindinsight/models/model_lineage
'
,
url
:
'
/v1/mindinsight/lineagemgr/lineages
'
,
data
:
params
.
body
,
});
},
...
...
mindinsight/ui/src/store.js
浏览文件 @
0a8162e8
...
...
@@ -27,8 +27,9 @@ export default new Vuex.Store({
// Scheduled reload flag
isTimeReload
:
localStorage
.
isTimeReload
===
'
false
'
?
false
:
true
,
// reload time
timeReloadValue
:
localStorage
.
timeReloadValue
?
localStorage
.
timeReloadValue
:
3
,
timeReloadValue
:
localStorage
.
timeReloadValue
?
localStorage
.
timeReloadValue
:
3
,
},
mutations
:
{
// set cancelTokenArr
...
...
@@ -46,6 +47,15 @@ export default new Vuex.Store({
setIsReload
:
(
state
,
val
)
=>
{
state
.
isReload
=
val
;
},
setSummaryDirList
:
(
state
,
val
)
=>
{
state
.
summaryDirList
=
val
;
},
setSelectedBarList
:
(
state
,
val
)
=>
{
state
.
selectedBarList
=
val
;
},
customizedColumnOptions
:
(
state
,
val
)
=>
{
state
.
customizedColumnOptions
=
val
;
},
// set isTimeReload
setIsTimeReload
:
(
state
,
val
)
=>
{
state
.
isTimeReload
=
val
;
...
...
@@ -53,7 +63,6 @@ export default new Vuex.Store({
setTimeReloadValue
:
(
state
,
val
)
=>
{
state
.
timeReloadValue
=
val
;
},
},
actions
:
{},
});
mindinsight/ui/src/views/train-manage/data-traceback.vue
浏览文件 @
0a8162e8
...
...
@@ -14,27 +14,28 @@ See the License for the specific language governing permissions and
limitations under the License.
-->
<
template
>
<div
id=
'cl-data-traceback'
>
<div
id=
"cl-data-traceback"
>
<div
class=
"cl-data-right"
>
<!-- select area -->
<div
class=
"data-checkbox-area"
v-show=
"totalSeries && totalSeries.length"
>
<div
class=
"data-checkbox-area"
>
<!-- show all data button -->
<el-button
class=
"reset-btn custom-btn"
@
click=
"echartShowAllData"
type=
"primary"
size=
"mini"
plain
>
{{
$t
(
'
modelTraceback.showAllData
'
)
}}
plain
v-show=
"(summaryDirList&&!summaryDirList.length)||(totalSeries&&totalSeries.length)"
>
{{
$t
(
'
modelTraceback.showAllData
'
)
}}
</el-button>
<div
v-show=
"totalSeries&&totalSeries.length&&(!summaryDirList||(summaryDirList&&summaryDirList.length))"
>
<div
class=
"fixed-checkbox-group"
>
<el-checkbox
v-for=
"item in fixedSeries"
:key=
"item.id"
:checked=
"item.checked"
:disabled=
"true"
>
{{
item
.
name
}}
{{
item
.
name
}}
</el-checkbox>
<br>
<br
/
>
</div>
<div
class=
"data-checkbox"
>
<!-- check box -->
...
...
@@ -43,7 +44,7 @@ limitations under the License.
:indeterminate=
"isIndeterminate"
class=
"select-all"
@
change=
"handleCheckAllChange"
>
{{
$t
(
'
scalar.selectAll
'
)
}}
{{
$t
(
'
scalar.selectAll
'
)
}}
</el-checkbox>
</div>
<div
class=
"checkbox-scroll"
>
...
...
@@ -52,35 +53,25 @@ limitations under the License.
@
change=
"handleCheckedSeriesChange()"
v-model=
"item.checked"
:key=
"item.id"
>
{{
item
.
name
}}
{{
item
.
name
}}
</el-checkbox>
</div>
</div>
</div>
</div>
</div>
<!-- echart drawing area -->
<div
id=
"data-echart"
></div>
<div
v-if=
"echartNoData"
class=
"echart-no-data"
>
<div
class=
"echart-no-data-container"
>
<img
:src=
"require('@/assets/images/nodata.png')"
alt=
""
/>
<p
class=
'no-data-text'
>
{{
$t
(
"
public.noData
"
)
}}
</p>
</div>
</div>
<!-- table area -->
<div
class=
"table-container"
v-show=
"lineagedata.serData && !!lineagedata.serData.length"
>
v-show=
"
!echartNoData&&
lineagedata.serData && !!lineagedata.serData.length"
>
<el-table
ref=
"table"
:data=
"table.data"
tooltip-effect=
"light"
height=
"calc(100% - 54px)"
row-key=
'summaryDir'
@
selection-change=
"handleSelectionChange"
>
row-key=
"summary_dir"
@
selection-change=
"handleSelectionChange"
@
sort-change=
"tableSortChange"
>
<el-table-column
type=
"selection"
width=
"55"
:reserve-selection=
"true"
>
...
...
@@ -89,32 +80,33 @@ limitations under the License.
:key=
"key"
:prop=
"key"
:label=
"table.columnOptions[key].label"
min-width=
'200'
:sortable=
'sortArray.includes(table.columnOptions[key].label)?"custom":false'
min-width=
"200"
show-overflow-tooltip
>
<template
slot=
"header"
slot-scope=
"scope"
>
<div
class=
"custom-label"
:title=
"scope.column.label"
>
{{
scope
.
column
.
label
}}
</div>
</
template
>
<
template
slot-scope=
"scope"
>
<span
class=
"icon-container"
v-show=
'table.columnOptions[key].label===text'
>
v-show=
"table.columnOptions[key].label === text"
>
<el-tooltip
effect=
"light"
:content=
"$t('dataTraceback.dataTraceTips')"
placement=
"top"
v-show=
'scope.row.children'
>
v-show=
"scope.row.children"
>
<i
class=
"el-icon-warning"
></i>
</el-tooltip>
</span>
<span
@
click=
"jumpToTrainDashboard(scope.row[key])"
v-if=
'table.columnOptions[key].label===text'
class=
"href-color"
>
{{
scope
.
row
[
key
]
}}
</span>
<span
v-else-if=
"table.columnOptions[key].label===repeatTitle
||table.columnOptions[key].label===shuffleTitle
||table.columnOptions[key].label===batchNode
||scope.row[key]===emptyObject
||!scope.row[key]"
>
{{
scope
.
row
[
key
]
}}
v-if=
"table.columnOptions[key].label === text"
class=
"href-color"
>
{{
scope
.
row
[
key
]
}}
</span>
<span
v-else
@
click=
"showDialogData(scope.row[key], scope)"
class=
"click-span"
>
{{
scope
.
row
[
key
]
}}
{{
formatNumber
(
key
,
scope
.
row
[
key
])
}}
</span>
</
template
>
</el-table-column>
...
...
@@ -126,14 +118,23 @@ limitations under the License.
:total=
"pagination.total"
>
</el-pagination>
</div>
<div
v-show=
"(!lineagedata.serData || !lineagedata.serData.length) && initOver"
<div
v-show=
"((!lineagedata.serData || !lineagedata.serData.length) && initOver)
||(echartNoData&&(lineagedata.serData&&!!lineagedata.serData.length))"
class=
"no-data-page"
>
<div
class=
"no-data-img"
>
<img
:src=
"require('@/assets/images/nodata.png')"
alt=
""
/>
<p
class=
'no-data-text'
>
{{$t("public.noData")}}
<p
class=
"no-data-text"
v-show=
"!summaryDirList||(summaryDirList&&summaryDirList.length)&&!lineagedata.serData"
>
{{ $t('public.noData') }}
</p>
<div
v-show=
"echartNoData&&(lineagedata.serData&&!!lineagedata.serData.length)"
>
<p
class=
"no-data-text"
>
{{ $t('dataTraceback.noDataFound') }}
</p>
</div>
<div
v-show=
"summaryDirList&&!summaryDirList.length"
>
<p
class=
"no-data-text"
>
{{ $t('dataTraceback.noDataFound') }}
</p>
<p
class=
"no-data-text"
>
{{ $t('dataTraceback.noDataTips') }}
</p>
</div>
</div>
</div>
</div>
...
...
@@ -142,13 +143,13 @@ limitations under the License.
width=
"50%"
:close-on-click-modal=
"false"
class=
"details-data-list"
>
<div
class=
"details-data-title"
>
{{
detailsDataTitle
}}
</div>
<div
class=
"details-data-title"
>
{{
detailsDataTitle
}}
</div>
<el-table
:data=
"detailsDataList"
row-key=
"id"
lazy
tooltip-effect=
"light"
:load=
"loadDataListChildren"
:tree-props=
"{
children: 'children', hasChildren: 'hasChildren'
}"
>
:tree-props=
"{
children: 'children', hasChildren: 'hasChildren'
}"
>
<el-table-column
width=
"50"
/>
<el-table-column
prop=
"key"
width=
"180"
...
...
@@ -158,7 +159,7 @@ limitations under the License.
show-overflow-tooltip
label=
"Value"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
value
}}
{{
scope
.
row
.
value
}}
</
template
>
</el-table-column>
</el-table>
...
...
@@ -173,6 +174,16 @@ export default {
data
()
{
return
{
initOver
:
false
,
// Page initialization completed.
dataCheckedSummary
:
[],
selectedBarList
:
[],
customizedColumnOptions
:
[],
// Set the type of customized
customizedTypeObject
:
[],
// Value of the vertical axis query interface brought by model source tracing
modelObjectArray
:
[],
summaryDirList
:
undefined
,
// Table filter condition
tableFilter
:
{},
echartNoData
:
false
,
// Encapsulate the data returned by the background interface.
lineagedata
:
{},
...
...
@@ -196,7 +207,6 @@ export default {
shuffleTitle
:
'
Shuffle
'
,
repeatTitle
:
'
Repeat
'
,
categoryType
:
'
category
'
,
emptyObject
:
'
{}
'
,
objectType
:
'
object
'
,
type
:
{
batch
:
'
BatchDataset
'
,
...
...
@@ -230,13 +240,69 @@ export default {
layout
:
'
total, prev, pager, next, jumper
'
,
},
// Summary path column
summaryList
:
[
'
summaryDir
'
],
dirPathList
:
[
'
summary_dir
'
],
// Options that support sorting
sortArray
:
[
this
.
$t
(
'
modelTraceback.summaryPath
'
),
'
loss
'
,
this
.
$t
(
'
modelTraceback.network
'
),
this
.
$t
(
'
modelTraceback.optimizer
'
),
this
.
$t
(
'
modelTraceback.trainingSampleNum
'
),
this
.
$t
(
'
modelTraceback.testSampleNum
'
),
this
.
$t
(
'
modelTraceback.learningRate
'
),
'
epoch
'
,
'
steps
'
,
this
.
$t
(
'
modelTraceback.modelSize
'
),
this
.
$t
(
'
modelTraceback.lossFunc
'
),
],
numberTypeIdList
:
[
'
train_dataset_count
'
,
'
test_dataset_count
'
,
'
epoch
'
,
'
batch_size
'
,
'
model_size
'
,
'
loss
'
,
'
learning_rate
'
,
],
table
:
{
columnOptions
:
{
summary
D
ir
:
{
summary
_d
ir
:
{
label
:
this
.
$t
(
'
modelTraceback.summaryPath
'
),
required
:
true
,
},
dataset_mark
:
{
label
:
this
.
$t
(
'
modelTraceback.dataProcess
'
),
},
model_size
:
{
label
:
this
.
$t
(
'
modelTraceback.modelSize
'
),
},
network
:
{
label
:
this
.
$t
(
'
modelTraceback.network
'
),
},
loss
:
{
label
:
'
loss
'
,
},
optimizer
:
{
label
:
this
.
$t
(
'
modelTraceback.optimizer
'
),
},
train_dataset_count
:
{
label
:
this
.
$t
(
'
modelTraceback.trainingSampleNum
'
),
},
test_dataset_count
:
{
label
:
this
.
$t
(
'
modelTraceback.testSampleNum
'
),
},
learning_rate
:
{
label
:
this
.
$t
(
'
modelTraceback.learningRate
'
),
},
epoch
:
{
label
:
'
epoch
'
,
},
batch_size
:
{
label
:
'
steps
'
,
},
loss_function
:
{
label
:
this
.
$t
(
'
modelTraceback.lossFunc
'
),
},
},
// All options of the column in the table
column
:
[],
...
...
@@ -262,7 +328,24 @@ export default {
* init
*/
init
()
{
this
.
getDatasetLineage
();
this
.
customizedColumnOptions
=
this
.
$store
.
state
.
customizedColumnOptions
||
[];
this
.
table
.
columnOptions
=
Object
.
assign
(
this
.
table
.
columnOptions
,
this
.
customizedColumnOptions
);
// Obtain the value of summary_dir from the store,
this
.
summaryDirList
=
this
.
$store
.
state
.
summaryDirList
;
this
.
selectedBarList
=
this
.
$store
.
state
.
selectedBarList
;
if
(
this
.
selectedBarList
&&
this
.
selectedBarList
.
length
)
{
this
.
tableFilter
=
{};
}
else
{
this
.
tableFilter
.
lineage_type
=
{
in
:
[
'
dataset
'
]};
}
const
params
=
{};
if
(
this
.
summaryDirList
)
{
this
.
tableFilter
.
summary_dir
=
{
in
:
this
.
summaryDirList
};
}
else
{
this
.
tableFilter
.
summary_dir
=
undefined
;
}
params
.
body
=
Object
.
assign
({},
this
.
tableFilter
);
this
.
queryLineagesData
(
params
);
},
/*
...
...
@@ -270,7 +353,29 @@ export default {
*/
initChart
()
{
const
parallelAxis
=
[];
const
selectedBarList
=
this
.
$store
.
state
.
selectedBarList
;
const
data
=
[];
const
arrayTemp
=
[];
if
(
selectedBarList
&&
selectedBarList
.
length
)
{
selectedBarList
.
forEach
((
item
)
=>
{
const
value
=
this
.
customizedTypeObject
[
item
];
if
(
value
&&
value
.
type
==
'
float
'
)
{
arrayTemp
.
push
({
name
:
item
,
id
:
item
,
type
:
'
float
'
,
checked
:
true
,
});
}
else
{
arrayTemp
.
push
({
name
:
this
.
table
.
columnOptions
[
item
].
label
,
id
:
item
,
checked
:
true
,
});
}
});
}
const
totalBarArray
=
arrayTemp
.
concat
(
this
.
checkedSeries
);
this
.
echart
.
showData
.
forEach
((
val
,
i
)
=>
{
const
item
=
{
lineStyle
:
{
...
...
@@ -280,25 +385,40 @@ export default {
},
value
:
[],
};
t
his
.
checkedSeries
.
forEach
((
obj
)
=>
{
t
otalBarArray
.
forEach
((
obj
)
=>
{
item
.
value
.
push
(
val
[
obj
.
id
]);
});
data
.
push
(
item
);
});
t
his
.
checkedSeries
.
forEach
((
content
,
i
)
=>
{
t
otalBarArray
.
forEach
((
content
,
i
)
=>
{
const
obj
=
{
dim
:
i
,
name
:
content
.
name
,
id
:
content
.
id
};
if
(
content
.
name
===
this
.
repeatTitle
||
content
.
name
===
this
.
shuffleTitle
)
{
obj
.
scale
=
true
;
obj
.
minInterval
=
1
;
this
.
setColorOfSelectedBar
(
selectedBarList
,
obj
);
}
else
if
(
this
.
numberTypeIdList
.
includes
(
content
.
id
)
||
(
content
.
type
&&
content
.
type
==
'
float
'
)
)
{
obj
.
scale
=
true
;
this
.
setColorOfSelectedBar
(
selectedBarList
,
obj
);
}
else
{
//
Character string
//
String type
obj
.
type
=
this
.
categoryType
;
obj
.
axisLabel
=
{
show
:
false
,
};
this
.
setColorOfSelectedBar
(
selectedBarList
,
obj
);
if
(
content
.
id
===
'
dataset_mark
'
)
{
obj
.
axisLabel
=
{
show
:
false
,
};
}
const
values
=
{};
this
.
echart
.
showData
.
forEach
((
i
)
=>
{
if
(
i
[
content
.
id
]
||
i
[
content
.
id
]
===
0
)
{
...
...
@@ -325,7 +445,6 @@ export default {
areaSelectStyle
:
{
width
:
40
,
},
minInterval
:
1
,
tooltip
:
{
show
:
true
,
},
...
...
@@ -370,9 +489,21 @@ export default {
return
i
[
key
]
>=
range
[
0
]
&&
i
[
key
]
<=
range
[
1
];
});
}
const
tempList
=
this
.
echart
.
brushData
;
const
summaryList
=
[];
tempList
.
forEach
((
item
)
=>
{
summaryList
.
push
(
item
.
summary_dir
);
});
// The summaryList value could not be saved in the destroy state.
this
.
dataCheckedSummary
=
[];
this
.
$store
.
commit
(
'
setSummaryDirList
'
,
summaryList
);
if
(
!
tempList
.
length
)
{
this
.
summaryDirList
=
[];
this
.
lineagedata
.
serData
=
undefined
;
document
.
querySelector
(
'
#data-echart
'
).
style
.
display
=
'
none
'
;
}
else
{
this
.
echart
.
showData
=
this
.
echart
.
brushData
;
this
.
initChart
();
this
.
pagination
.
currentPage
=
1
;
this
.
pagination
.
total
=
this
.
echart
.
brushData
.
length
;
this
.
table
.
data
=
this
.
echart
.
brushData
.
slice
(
...
...
@@ -380,8 +511,38 @@ export default {
this
.
pagination
.
currentPage
*
this
.
pagination
.
pageSize
,
);
}
}
});
},
/**
* Set the color of the model tracing axis.
* @param {Array} selectedBarList
* @param {Object} obj
*/
setColorOfSelectedBar
(
selectedBarList
,
obj
)
{
if
(
selectedBarList
&&
obj
.
dim
<
selectedBarList
.
length
)
{
obj
.
nameTextStyle
=
{
color
:
'
#00a5a7
'
,
};
obj
.
axisLabel
=
{
show
:
true
,
textStyle
:
{
color
:
'
#00a5a7
'
,
},
};
obj
.
axisLine
=
{
show
:
true
,
lineStyle
:
{
color
:
'
#00a5a7
'
,
},
};
}
else
{
// Text color
obj
.
nameTextStyle
=
{
color
:
'
black
'
,
};
}
},
/**
* jump to train dashboard
...
...
@@ -396,20 +557,89 @@ export default {
window
.
open
(
routeUrl
.
href
,
'
_blank
'
);
},
/**
* Formatting Data
* @param {String} key
* @param {String} value
* @return {Object}
*/
formatNumber
(
key
,
value
)
{
if
(
isNaN
(
value
)
||
!
value
)
{
return
value
;
}
else
{
if
(
key
===
'
accuracy
'
)
{
return
this
.
toFixedFun
(
value
*
100
,
2
)
+
'
%
'
;
}
else
if
(
key
===
'
learning_rate
'
)
{
let
temp
=
value
.
toPrecision
(
3
);
let
row
=
0
;
while
(
temp
<
1
)
{
temp
=
temp
*
10
;
row
+=
1
;
}
temp
=
this
.
toFixedFun
(
temp
,
2
);
return
`
${
temp
}${
row
?
`e-
${
row
}
`
:
''
}
`
;
}
else
if
(
key
===
'
model_size
'
)
{
return
value
+
'
MB
'
;
}
else
{
if
(
value
<
1000
)
{
return
Math
.
round
(
value
*
Math
.
pow
(
10
,
2
))
/
Math
.
pow
(
10
,
2
);
}
else
{
const
reg
=
/
(?=(\B)(\d{3})
+$
)
/g
;
return
(
value
+
''
).
replace
(
reg
,
'
,
'
);
}
}
}
},
/**
* Keep the number with n decimal places.
* @param {Number} num
* @param {Number} pow Number of decimal places
* @return {Number}
*/
toFixedFun
(
num
,
pow
)
{
if
(
isNaN
(
num
)
||
isNaN
(
pow
)
||
!
num
||
!
pow
)
{
return
num
;
}
return
Math
.
round
(
num
*
Math
.
pow
(
10
,
pow
))
/
Math
.
pow
(
10
,
pow
);
},
/**
* The detailed information is displayed in the dialog box.
* @param {String} val
* @param {Object} scope
*/
showDialogData
(
val
,
scope
)
{
if
(
typeof
val
!==
'
string
'
||
val
==
'
{}
'
)
{
return
;
}
else
{
const
isJson
=
this
.
isJSON
(
val
);
if
(
!
isJson
)
{
return
;
}
}
this
.
rowName
=
`
${
scope
.
column
.
property
}${
this
.
$t
(
'
dataTraceback.details
'
,
)}
`
;
this
.
detailsDialogVisible
=
true
;
this
.
detailsDataTitle
=
scope
.
row
.
summary
D
ir
;
this
.
detailsDataTitle
=
scope
.
row
.
summary
_d
ir
;
this
.
detailsDataList
=
this
.
formateJsonString
(
val
);
},
/**
* Checks whether the value is a JSON character string.
* @param {String} val
* @return {Boolean}
*/
isJSON
(
val
)
{
try
{
JSON
.
parse
(
val
);
return
true
;
}
catch
(
e
)
{
return
false
;
}
},
/**
* set object value
* @param {Array} array
...
...
@@ -426,20 +656,75 @@ export default {
/**
* Method of invoking the interface
* @param {Object} params
*/
getDatasetLineage
(
)
{
RequestService
.
getDatasetLineage
(
)
queryLineagesData
(
params
)
{
RequestService
.
queryLineagesData
(
params
)
.
then
(
(
res
)
=>
{
this
.
initOver
=
true
;
if
(
!
res
||
!
res
.
data
)
{
return
;
}
this
.
customizedTypeObject
=
res
.
data
.
customized
;
const
key
=
Object
.
keys
(
this
.
customizedTypeObject
);
if
(
key
.
length
)
{
this
.
sortArray
=
this
.
sortArray
.
concat
(
key
);
}
// Model source tracing filtering parameters
this
.
selectedBarList
=
this
.
$store
.
state
.
selectedBarList
;
if
(
this
.
selectedBarList
&&
this
.
selectedBarList
.
length
)
{
const
tempList
=
JSON
.
parse
(
JSON
.
stringify
(
res
.
data
.
object
));
const
list
=
[];
const
metricKeys
=
{};
tempList
.
forEach
((
item
)
=>
{
if
(
item
.
model_lineage
)
{
const
i
=
JSON
.
parse
(
JSON
.
stringify
(
item
.
model_lineage
));
i
.
model_size
=
parseFloat
(((
i
.
model_size
||
0
)
/
1024
/
1024
).
toFixed
(
2
));
const
keys
=
Object
.
keys
(
i
.
metric
||
{});
if
(
keys
.
length
)
{
keys
.
forEach
((
key
)
=>
{
if
(
i
.
metric
[
key
]
||
i
.
metric
[
key
]
===
0
)
{
const
temp
=
'
metric/
'
+
key
;
metricKeys
[
temp
]
=
key
;
i
[
temp
]
=
i
.
metric
[
key
];
}
});
delete
i
.
metric
;
}
const
udkeys
=
Object
.
keys
(
i
.
user_defined
||
{});
if
(
udkeys
.
length
)
{
udkeys
.
forEach
((
key
)
=>
{
if
(
i
.
user_defined
[
key
]
||
i
.
user_defined
[
key
]
===
0
)
{
const
temp
=
'
user_defined/
'
+
key
;
i
[
temp
]
=
i
.
user_defined
[
key
];
}
});
delete
i
.
user_defined
;
}
list
.
push
(
i
);
}
});
this
.
modelObjectArray
=
[];
for
(
let
i
=
0
;
i
<
list
.
length
;
i
++
)
{
const
modelObject
=
{};
for
(
let
j
=
0
;
j
<
this
.
selectedBarList
.
length
;
j
++
)
{
const
tempObject
=
list
[
i
];
const
key
=
this
.
selectedBarList
[
j
];
modelObject
[
key
]
=
tempObject
[
key
];
}
this
.
modelObjectArray
.
push
(
modelObject
);
}
}
this
.
fixedSeries
=
[];
this
.
noFixedSeries
=
[];
this
.
checkedSeries
=
[];
this
.
lineagedata
=
this
.
formateOriginData
(
res
.
data
);
this
.
totalSeries
=
this
.
lineagedata
.
fullNodeList
;
if
(
!
this
.
totalSeries
.
length
)
{
this
.
echartNoData
=
true
;
}
this
.
totalSeries
.
forEach
((
nodeItem
)
=>
{
if
(
this
.
createType
[
nodeItem
.
name
])
{
nodeItem
.
checked
=
true
;
...
...
@@ -463,18 +748,24 @@ export default {
this
.
echart
.
showData
=
this
.
echart
.
brushData
;
if
(
this
.
totalSeries
.
length
)
{
document
.
querySelector
(
'
#data-echart
'
).
style
.
display
=
'
block
'
;
}
else
{
this
.
echartNoData
=
true
;
}
this
.
setEchartValue
();
this
.
initChart
();
// Total number of pages in the table
this
.
pagination
.
total
=
this
.
lineagedata
.
serData
.
length
;
this
.
pagination
.
total
=
res
.
data
.
count
;
// Data encapsulation of the table
this
.
setTableData
();
this
.
table
.
column
=
this
.
summaryList
.
concat
(
if
(
this
.
selectedBarList
)
{
const
resultArray
=
this
.
hideDataMarkTableData
();
this
.
table
.
column
=
this
.
dirPathList
.
concat
(
resultArray
,
this
.
checkedSeries
.
map
((
i
)
=>
i
.
id
),
);
}
else
{
this
.
table
.
column
=
this
.
dirPathList
.
concat
(
this
.
checkedSeries
.
map
((
i
)
=>
i
.
id
),
);
this
.
initChart
();
}
},
(
error
)
=>
{
this
.
initOver
=
true
;
...
...
@@ -515,13 +806,18 @@ export default {
*/
echartShowAllData
()
{
// The first page is displayed.
this
.
initOver
=
false
;
this
.
echartNoData
=
false
;
this
.
pagination
.
currentPage
=
1
;
this
.
echart
.
brushData
=
this
.
lineagedata
.
serData
;
this
.
echart
.
showData
=
this
.
echart
.
brushData
;
this
.
initChart
();
this
.
$store
.
commit
(
'
setSummaryDirList
'
,
undefined
);
this
.
$store
.
commit
(
'
setSelectedBarList
'
,
[]);
if
(
this
.
parallelEchart
)
{
this
.
parallelEchart
.
clear
();
}
document
.
querySelector
(
'
#data-echart
'
).
style
.
display
=
'
block
'
;
this
.
$refs
.
table
.
clearSelection
();
this
.
setTableData
();
this
.
pa
gination
.
total
=
this
.
echart
.
brushData
.
length
;
this
.
init
();
this
.
pa
rallelEchart
.
resize
()
;
},
/**
...
...
@@ -535,13 +831,36 @@ export default {
this
.
$forceUpdate
();
this
.
getCheckedSerList
();
// Value assignment in the table column
this
.
table
.
column
=
this
.
summaryList
.
concat
(
if
(
this
.
selectedBarList
)
{
const
resultArray
=
this
.
hideDataMarkTableData
();
this
.
table
.
column
=
this
.
dirPathList
.
concat
(
resultArray
,
this
.
checkedSeries
.
map
((
i
)
=>
i
.
id
),
);
}
else
{
this
.
table
.
column
=
this
.
dirPathList
.
concat
(
this
.
checkedSeries
.
map
((
i
)
=>
i
.
id
),
);
}
this
.
isIndeterminate
=
false
;
this
.
initChart
();
},
/**
* The table column data is deleted from the data processing result.
* @return {Array}
*/
hideDataMarkTableData
()
{
const
result
=
[];
this
.
selectedBarList
.
forEach
((
item
)
=>
{
if
(
item
!==
'
dataset_mark
'
)
{
result
.
push
(
item
);
}
});
return
result
;
},
/**
* The column options in the table are changed
*/
...
...
@@ -549,9 +868,19 @@ export default {
this
.
$forceUpdate
();
this
.
getCheckedSerList
();
// Value assignment in the table column
this
.
table
.
column
=
this
.
summaryList
.
concat
(
// Value assignment in the table column
if
(
this
.
selectedBarList
)
{
const
resultArray
=
this
.
hideDataMarkTableData
();
this
.
table
.
column
=
this
.
dirPathList
.
concat
(
resultArray
,
this
.
checkedSeries
.
map
((
i
)
=>
i
.
id
),
);
}
else
{
this
.
table
.
column
=
this
.
dirPathList
.
concat
(
this
.
checkedSeries
.
map
((
i
)
=>
i
.
id
),
);
}
this
.
isIndeterminate
=
this
.
checkedSeries
.
length
>
this
.
fixedSeries
.
length
&&
!
this
.
checkAll
;
this
.
initChart
();
...
...
@@ -562,6 +891,8 @@ export default {
* @param {Object} val
*/
handleSelectionChange
(
val
)
{
// summary_dir cannot be stored here.If it is not selected ,it cannot be stroed correctly.
this
.
dataCheckedSummary
=
val
;
if
(
val
.
length
)
{
this
.
echart
.
showData
=
val
;
}
else
{
...
...
@@ -570,6 +901,30 @@ export default {
this
.
initChart
();
},
setEchartValue
()
{
if
(
this
.
modelObjectArray
.
length
)
{
const
list
=
this
.
echart
.
showData
;
for
(
let
i
=
0
;
i
<
list
.
length
;
i
++
)
{
const
temp
=
this
.
modelObjectArray
[
i
];
this
.
echart
.
showData
[
i
]
=
Object
.
assign
(
this
.
echart
.
showData
[
i
],
temp
);
}
}
},
/**
* Sort by path parameter
* @param {Object} data
*/
tableSortChange
(
data
)
{
const
params
=
{};
const
tempParam
=
{
sorted_name
:
data
.
prop
,
sorted_type
:
data
.
order
,
};
params
.
body
=
Object
.
assign
({},
tempParam
,
this
.
tableFilter
);
this
.
queryLineagesData
(
params
);
},
/**
* Setting Table Data
* @param {Number} val
...
...
@@ -666,7 +1021,7 @@ export default {
curDataObj
[
nodeItem
.
id
]
=
nodeItem
.
value
;
});
curDataObj
.
children
=
objectData
.
children
;
curDataObj
.
summary
D
ir
=
objectData
.
summary_dir
;
curDataObj
.
summary
_d
ir
=
objectData
.
summary_dir
;
serData
.
push
(
curDataObj
);
});
const
formateData
=
{
...
...
@@ -775,6 +1130,13 @@ export default {
* Destroy the page
*/
destroyed
()
{
if
(
this
.
dataCheckedSummary
&&
this
.
dataCheckedSummary
.
length
)
{
const
summaryDirList
=
[];
this
.
dataCheckedSummary
.
forEach
((
item
)
=>
{
summaryDirList
.
push
(
item
.
summary_dir
);
});
this
.
$store
.
commit
(
'
setSummaryDirList
'
,
summaryDirList
);
}
if
(
this
.
parallelEchart
)
{
window
.
removeEventListener
(
'
resize
'
,
this
.
resizeChart
,
false
);
this
.
parallelEchart
.
clear
();
...
...
@@ -792,7 +1154,7 @@ export default {
.no-data-page
{
width
:
100%
;
height
:
100%
;
padding-top
:
200
px
;
padding-top
:
184
px
;
}
.no-data-img
{
background
:
#fff
;
...
...
@@ -803,21 +1165,15 @@ export default {
img
{
max-width
:
100%
;
}
p
{
font-size
:
16px
;
padding-top
:
10px
}
}
.no-data-text
{
font-size
:
16px
;
padding-top
:
10px
;
}
.echart-no-data
{
width
:
100%
;
height
:
48%
;
text-align
:
center
;
display
:
table
;
}
.echart-no-data-container
{
display
:
table-cell
;
vertical-align
:
middle
;
}
.cl-data-right
{
height
:
100%
;
...
...
@@ -829,6 +1185,7 @@ export default {
.data-checkbox-area
{
position
:
relative
;
margin
:
24px
32px
12px
;
height
:
62px
;
.reset-btn
{
position
:
absolute
;
right
:
0px
;
...
...
@@ -882,6 +1239,11 @@ export default {
height
:
calc
(
60%
-
90px
);
margin
:
2px
32px
0
;
position
:
relative
;
.custom-label
{
max-width
:calc
(
100
%
-
25px
)
;
padding
:
0
;
vertical-align
:middle
;
}
.el-icon-warning
{
font-size
:
16px
;
}
...
...
mindinsight/ui/src/views/train-manage/model-traceback.vue
浏览文件 @
0a8162e8
...
...
@@ -16,14 +16,18 @@ limitations under the License.
<
template
>
<div
id=
"cl-model-traceback"
>
<div
class=
"cl-model-right"
>
<div
class=
"checkbox-area"
v-if=
"!noData && echart.allData.length"
>
<div
class=
"checkbox-area"
>
<el-button
class=
"reset-btn custom-btn"
@
click=
"resetChart"
type=
"primary"
size=
"mini"
plain
>
{{
$t
(
'
modelTraceback.showAllData
'
)
}}
</el-button>
<div
class=
"checkbox"
>
plain
v-if=
"(!noData && echart.allData.length) ||
(noData && summaryDirList && !summaryDirList.length)"
>
{{
$t
(
'
modelTraceback.showAllData
'
)
}}
</el-button>
<div
class=
"checkbox"
v-if=
"!noData && echart.allData.length &&
(!summaryDirList ||(summaryDirList && summaryDirList.length))"
>
<el-checkbox
v-for=
"item in table.mandatoryColumn"
:key=
"item"
:label=
"item"
...
...
@@ -61,7 +65,7 @@ limitations under the License.
row-key=
"summary_dir"
>
<el-table-column
type=
"selection"
width=
"55"
v-if=
"table.data.length"
v-if=
"table.data
&& table.data
.length"
:reserve-selection=
"true"
></el-table-column>
<el-table-column
v-for=
"key in table.column"
:key=
"key"
...
...
@@ -95,7 +99,13 @@ limitations under the License.
<div
class=
"no-data-img"
>
<img
:src=
"require('@/assets/images/nodata.png')"
alt
/>
<p
class=
"no-data-text"
>
{{ $t('public.noData') }}
</p>
<p
class=
"no-data-text"
v-show=
"!summaryDirList || (summaryDirList && summaryDirList.length)"
>
{{ $t('public.noData') }}
</p>
<div
v-show=
"summaryDirList && !summaryDirList.length"
>
<p
class=
"no-data-text"
>
{{ $t('modelTraceback.noDataFound') }}
</p>
<p
class=
"no-data-text"
>
{{ $t('modelTraceback.noDataTips') }}
</p>
</div>
</div>
</div>
</div>
...
...
@@ -111,7 +121,76 @@ export default {
watch
:
{},
data
()
{
return
{
table
:
{
table
:
{},
summaryDirList
:
undefined
,
checkedSummary
:
[],
keysOfStringValue
:
[
'
summary_dir
'
,
'
network
'
,
'
optimizer
'
,
'
loss_function
'
,
'
train_dataset_path
'
,
'
test_dataset_path
'
,
'
dataset_mark
'
,
],
// All keys whose values are character strings
keysOfIntValue
:
[
'
train_dataset_count
'
,
'
test_dataset_count
'
,
'
epoch
'
,
'
batch_size
'
,
],
// All keys whose values are int
echart
:
{
chart
:
null
,
allData
:
[],
brushData
:
[],
showData
:
[],
},
pagination
:
{
currentPage
:
1
,
pageSize
:
8
,
total
:
0
,
layout
:
'
total, prev, pager, next, jumper
'
,
pageChange
:
{},
},
chartFilter
:
{},
// chart filter condition
tableFilter
:
{
lineage_type
:
{
in
:
[
'
model
'
]}},
// table filter condition
sortInfo
:
{
sorted_name
:
'
summary_dir
'
,
sorted_type
:
null
,
},
showTable
:
false
,
noData
:
false
,
};
},
computed
:
{},
mounted
()
{
this
.
$store
.
commit
(
'
setSelectedBarList
'
,
[]);
this
.
getStoreList
();
this
.
pagination
.
pageChange
=
(
page
)
=>
{
this
.
pagination
.
currentPage
=
page
;
this
.
queryLineagesData
(
false
);
};
this
.
$nextTick
(()
=>
{
this
.
init
();
});
},
methods
:
{
getStoreList
()
{
this
.
summaryDirList
=
this
.
$store
.
state
.
summaryDirList
;
if
(
this
.
summaryDirList
)
{
this
.
tableFilter
.
summary_dir
=
{
in
:
this
.
summaryDirList
,
};
}
else
{
this
.
tableFilter
.
summary_dir
=
undefined
;
}
},
/**
* Initialization
*/
init
()
{
this
.
table
=
{
columnOptions
:
{
train_dataset_path
:
{
label
:
this
.
$t
(
'
modelTraceback.trainSetPath
'
),
...
...
@@ -180,61 +259,8 @@ export default {
selectedColumn
:
[],
selectAll
:
false
,
// Whether to select all columns
indeterminate
:
false
,
},
keysOfStringValue
:
[
'
summary_dir
'
,
'
network
'
,
'
optimizer
'
,
'
loss_function
'
,
'
train_dataset_path
'
,
'
test_dataset_path
'
,
'
dataset_mark
'
,
],
// All keys whose values are character strings
keysOfIntValue
:
[
'
train_dataset_count
'
,
'
test_dataset_count
'
,
'
epoch
'
,
'
batch_size
'
,
],
// All keys whose values are int
echart
:
{
chart
:
null
,
allData
:
[],
brushData
:
[],
showData
:
[],
},
pagination
:
{
currentPage
:
1
,
pageSize
:
8
,
total
:
0
,
layout
:
'
total, prev, pager, next, jumper
'
,
pageChange
:
{},
},
chartFilter
:
{},
// chart filter condition
tableFilter
:
{},
// table filter condition
sortInfo
:
{
sorted_name
:
'
summary_dir
'
,
sorted_type
:
null
,
},
showTable
:
false
,
noData
:
false
,
};
},
computed
:
{},
mounted
()
{
this
.
pagination
.
pageChange
=
(
page
)
=>
{
this
.
pagination
.
currentPage
=
page
;
this
.
queryModelVersions
(
false
);
};
this
.
$nextTick
(()
=>
{
this
.
init
();
});
},
methods
:
{
/**
* Initialization
*/
init
()
{
this
.
queryModelVersions
(
true
);
this
.
queryLineagesData
(
true
);
},
/**
* Column initialization
...
...
@@ -261,27 +287,36 @@ export default {
* Querying All Model Version Information
* @param {Boolean} allData Indicates whether to query all data
*/
queryModelVersions
(
allData
)
{
const
params
=
{};
if
(
!
allData
)
{
queryLineagesData
(
allData
)
{
const
params
=
{
body
:
{},
};
const
tempParam
=
{
limit
:
this
.
pagination
.
pageSize
,
offset
:
this
.
pagination
.
currentPage
-
1
,
sorted_name
:
this
.
sortInfo
.
sorted_name
,
sorted_type
:
this
.
sortInfo
.
sorted_type
,
};
if
(
Object
.
keys
(
this
.
chartFilter
).
length
>
0
)
{
params
.
body
=
Object
.
assign
({},
tempParam
,
this
.
chartFilter
);
}
else
{
params
.
body
=
tempParam
;
}
if
(
!
allData
)
{
this
.
summaryDirList
=
this
.
$store
.
state
.
summaryDirList
;
this
.
tableFilter
.
summary_dir
=
{
in
:
this
.
summaryDirList
,
};
tempParam
.
limit
=
this
.
pagination
.
pageSize
;
tempParam
.
offset
=
this
.
pagination
.
currentPage
-
1
;
params
.
body
=
Object
.
assign
(
params
.
body
,
this
.
chartFilter
);
}
RequestService
.
queryModelVersions
(
params
)
params
.
body
=
Object
.
assign
(
params
.
body
,
tempParam
,
this
.
tableFilter
);
RequestService
.
queryLineagesData
(
params
)
.
then
(
(
res
)
=>
{
if
(
res
&&
res
.
data
&&
res
.
data
.
object
)
{
const
list
=
JSON
.
parse
(
JSON
.
stringify
(
res
.
data
.
object
));
list
.
forEach
((
i
)
=>
{
const
tempList
=
JSON
.
parse
(
JSON
.
stringify
(
res
.
data
.
object
));
const
list
=
[];
tempList
.
forEach
((
item
)
=>
{
if
(
item
.
model_lineage
)
{
item
.
model_lineage
.
summary_dir
=
item
.
summary_dir
;
const
i
=
JSON
.
parse
(
JSON
.
stringify
(
item
.
model_lineage
));
i
.
model_size
=
parseFloat
(
((
i
.
model_size
||
0
)
/
1024
/
1024
).
toFixed
(
2
),
);
...
...
@@ -305,24 +340,24 @@ export default {
});
delete
i
.
user_defined
;
}
list
.
push
(
i
);
}
});
if
(
allData
)
{
let
customized
=
{};
if
(
res
.
data
.
customized
)
{
const
customized
=
JSON
.
parse
(
JSON
.
stringify
(
res
.
data
.
customized
),
);
customized
=
JSON
.
parse
(
JSON
.
stringify
(
res
.
data
.
customized
));
const
customizedKeys
=
Object
.
keys
(
customized
);
if
(
customizedKeys
.
length
>
0
)
{
const
metricColumnOptions
=
{};
const
userDefinedColumnOptions
=
{};
customizedKeys
.
forEach
((
key
)
=>
{
const
str
=
key
.
substring
(
0
,
key
.
indexOf
(
'
/
'
));
if
(
'
metric
'
===
str
)
{
metricColumnOptions
[
key
]
=
customized
[
key
];
}
else
if
(
'
user_defined
'
===
str
)
{
userDefinedColumnOptions
[
key
]
=
customized
[
key
];
customizedKeys
.
forEach
((
i
)
=>
{
if
(
customized
[
i
].
type
===
'
int
'
)
{
this
.
keysOfIntValue
.
push
(
i
);
}
else
if
(
customized
[
i
].
type
===
'
str
'
)
{
this
.
keysOfStringValue
.
push
(
i
);
}
});
}
}
this
.
table
.
columnOptions
=
Object
.
assign
(
{
summary_dir
:
{
...
...
@@ -334,23 +369,13 @@ export default {
required
:
true
,
},
},
metricColumnOptions
,
userDefinedColumnOptions
,
customized
,
this
.
table
.
columnOptions
,
);
customizedKeys
.
forEach
((
i
)
=>
{
if
(
customized
[
i
].
type
===
'
int
'
)
{
this
.
keysOfIntValue
.
push
(
i
);
}
else
if
(
customized
[
i
].
type
===
'
str
'
)
{
this
.
keysOfStringValue
.
push
(
i
);
}
});
}
}
this
.
$store
.
commit
(
'
customizedColumnOptions
'
,
customized
);
this
.
noData
=
!!!
res
.
data
.
object
.
length
;
this
.
echart
.
allData
=
list
;
this
.
echart
.
showData
=
this
.
echart
.
brushData
=
this
.
echart
.
allData
;
this
.
noData
=
!
res
.
data
.
object
.
length
;
this
.
echart
.
showData
=
this
.
echart
.
brushData
=
this
.
echart
.
allData
=
list
;
Object
.
keys
(
this
.
table
.
columnOptions
).
forEach
((
i
)
=>
{
const
flag
=
list
.
some
((
val
)
=>
{
return
val
[
i
]
||
val
[
i
]
===
0
;
...
...
@@ -422,6 +447,7 @@ export default {
selectionChange
(
list
=
[])
{
this
.
echart
.
showData
=
list
.
length
?
list
:
this
.
echart
.
brushData
;
this
.
initChart
();
this
.
checkedSummary
=
list
;
const
summaryDirFilter
=
[];
this
.
echart
.
showData
.
forEach
((
i
)
=>
{
summaryDirFilter
.
push
(
i
.
summary_dir
);
...
...
@@ -437,6 +463,7 @@ export default {
sortChange
(
column
)
{
this
.
sortInfo
.
sorted_name
=
column
.
prop
;
this
.
sortInfo
.
sorted_type
=
column
.
order
;
this
.
getStoreList
();
const
tempParam
=
{
limit
:
this
.
pagination
.
pageSize
,
offset
:
0
,
...
...
@@ -444,17 +471,23 @@ export default {
sorted_type
:
this
.
sortInfo
.
sorted_type
,
};
const
params
=
{};
if
(
Object
.
keys
(
this
.
chartFilter
).
length
>
0
)
{
params
.
body
=
Object
.
assign
({},
tempParam
,
this
.
chartFilter
);
}
else
{
params
.
body
=
tempParam
;
}
RequestService
.
queryModelVersions
(
params
)
params
.
body
=
Object
.
assign
(
{},
tempParam
,
this
.
tableFilter
,
this
.
chartFilter
||
{},
);
RequestService
.
queryLineagesData
(
params
)
.
then
(
(
res
)
=>
{
if
(
res
&&
res
.
data
&&
res
.
data
.
object
)
{
const
list
=
JSON
.
parse
(
JSON
.
stringify
(
res
.
data
.
object
));
list
.
forEach
((
i
)
=>
{
const
tempList
=
JSON
.
parse
(
JSON
.
stringify
(
res
.
data
.
object
));
const
list
=
[];
tempList
.
forEach
((
item
)
=>
{
if
(
item
.
model_lineage
)
{
item
.
model_lineage
.
summary_dir
=
item
.
summary_dir
;
const
i
=
JSON
.
parse
(
JSON
.
stringify
(
item
.
model_lineage
));
i
.
model_size
=
parseFloat
(
((
i
.
model_size
||
0
)
/
1024
/
1024
).
toFixed
(
2
),
);
...
...
@@ -478,6 +511,8 @@ export default {
});
delete
i
.
user_defined
;
}
list
.
push
(
i
);
}
});
this
.
table
.
data
=
list
;
this
.
pagination
.
total
=
res
.
data
.
count
||
0
;
...
...
@@ -607,6 +642,18 @@ export default {
// select use api
this
.
echart
.
chart
.
on
(
'
axisareaselected
'
,
(
params
)
=>
{
const
key
=
params
.
parallelAxisId
;
const
list
=
this
.
$store
.
state
.
selectedBarList
||
[];
const
selectedAxisId
=
params
.
parallelAxisId
;
if
(
list
.
length
)
{
list
.
forEach
((
item
,
index
)
=>
{
if
(
item
==
selectedAxisId
)
{
list
.
splice
(
index
,
1
);
}
});
}
list
.
push
(
selectedAxisId
);
this
.
$store
.
commit
(
'
setSelectedBarList
'
,
list
);
let
range
=
params
.
intervals
[
0
]
||
[];
const
[
axisData
]
=
parallelAxis
.
filter
((
i
)
=>
{
return
i
.
id
===
key
;
...
...
@@ -645,12 +692,17 @@ export default {
this
.
tableFilter
,
this
.
sortInfo
,
);
RequestService
.
query
ModelVersions
(
filterParams
)
RequestService
.
query
LineagesData
(
filterParams
)
.
then
(
(
res
)
=>
{
if
(
res
&&
res
.
data
&&
res
.
data
.
object
)
{
const
list
=
JSON
.
parse
(
JSON
.
stringify
(
res
.
data
.
object
));
list
.
forEach
((
i
)
=>
{
const
tempList
=
JSON
.
parse
(
JSON
.
stringify
(
res
.
data
.
object
));
const
list
=
[];
const
summaryDirList
=
[];
tempList
.
forEach
((
item
)
=>
{
if
(
item
.
model_lineage
)
{
item
.
model_lineage
.
summary_dir
=
item
.
summary_dir
;
const
i
=
JSON
.
parse
(
JSON
.
stringify
(
item
.
model_lineage
));
i
.
model_size
=
parseFloat
(
((
i
.
model_size
||
0
)
/
1024
/
1024
).
toFixed
(
2
),
);
...
...
@@ -664,17 +716,25 @@ export default {
});
delete
i
.
metric
;
}
summaryDirList
.
push
(
i
.
summary_dir
);
const
udkeys
=
Object
.
keys
(
i
.
user_defined
||
{});
if
(
udkeys
.
length
)
{
udkeys
.
forEach
((
key
)
=>
{
if
(
i
.
user_defined
[
key
]
||
i
.
user_defined
[
key
]
===
0
)
{
if
(
i
.
user_defined
[
key
]
||
i
.
user_defined
[
key
]
===
0
)
{
const
temp
=
'
user_defined/
'
+
key
;
i
[
temp
]
=
i
.
user_defined
[
key
];
}
});
delete
i
.
user_defined
;
}
list
.
push
(
i
);
}
});
this
.
$store
.
commit
(
'
setSummaryDirList
'
,
summaryDirList
);
this
.
echart
.
showData
=
this
.
echart
.
brushData
=
list
;
this
.
initChart
();
...
...
@@ -686,6 +746,11 @@ export default {
this
.
pagination
.
currentPage
=
1
;
this
.
pagination
.
total
=
this
.
echart
.
brushData
.
length
;
this
.
$refs
.
table
.
clearSelection
();
}
else
{
this
.
summaryDirList
=
[];
this
.
$store
.
commit
(
'
setSummaryDirList
'
,
[]);
this
.
noData
=
true
;
this
.
checkedSummary
=
summaryDirList
;
}
},
(
error
)
=>
{},
...
...
@@ -698,13 +763,20 @@ export default {
* Resetting the Eechart
*/
resetChart
()
{
this
.
summaryDirList
=
undefined
;
this
.
$store
.
commit
(
'
setSummaryDirList
'
,
undefined
);
this
.
$store
.
commit
(
'
setSelectedBarList
'
,
[]);
this
.
noData
=
false
;
this
.
showTable
=
false
;
this
.
chartFilter
=
{};
this
.
tableFilter
=
{}
;
this
.
tableFilter
.
summary_dir
=
undefined
;
this
.
pagination
.
currentPage
=
1
;
this
.
echart
.
showData
=
this
.
echart
.
brushData
=
this
.
echart
.
allData
;
this
.
queryModelVersions
(
false
);
this
.
echart
.
allData
=
[];
if
(
this
.
echart
.
chart
)
{
this
.
echart
.
chart
.
clear
();
}
this
.
init
();
this
.
$refs
.
table
.
clearSelection
();
this
.
initChart
();
},
/**
* Select all columns in the table.
...
...
@@ -785,6 +857,13 @@ export default {
},
},
destroyed
()
{
if
(
this
.
checkedSummary
.
length
)
{
const
tempList
=
[];
this
.
checkedSummary
.
forEach
((
item
)
=>
{
tempList
.
push
(
item
.
summary_dir
);
});
this
.
$store
.
commit
(
'
setSummaryDirList
'
,
tempList
);
}
if
(
this
.
echart
.
chart
)
{
window
.
removeEventListener
(
'
resize
'
,
this
.
resizeChart
,
false
);
this
.
echart
.
chart
.
clear
();
...
...
@@ -820,6 +899,8 @@ export default {
.checkbox-area
{
margin
:
24px
32px
16px
;
position
:
relative
;
min-height
:
42px
;
max-height
:
66px
;
.checkbox
{
width
:
calc
(
100%
-
264px
);
max-height
:
66px
;
...
...
@@ -848,7 +929,7 @@ export default {
}
}
#echart
{
height
:
40
%
;
height
:
39
%
;
}
.table-container
{
background-color
:
white
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录