Former-commit-id: db7d39ad3f
master
parent 9805cbb6d8
commit ca24897a3b
  1. 53
      frontend/src/components/Provenance.vue
  2. 1
      frontend/src/components/saveStack.vue

@ -95,6 +95,7 @@ export default {
var localStackStore = [] var localStackStore = []
var StackInfo = JSON.parse(this.stackInformation[1]) var StackInfo = JSON.parse(this.stackInformation[1])
var arrayOfNumbers = StackInfo.map(Number) var arrayOfNumbers = StackInfo.map(Number)
this.storeData.push(arrayOfNumbers) this.storeData.push(arrayOfNumbers)
localStackStore = this.storeData.slice() localStackStore = this.storeData.slice()
@ -123,53 +124,54 @@ export default {
plat.pixelRatio = window.devicePixelRatio || 1; plat.pixelRatio = window.devicePixelRatio || 1;
this.platform = plat this.platform = plat
console.log(this.data)
for (let i = 0; i < StackInfo.length; i++) { for (let i = 0; i < StackInfo.length; i++) {
if (StackInfo[i] < this.SVCModels){ if (Number(StackInfo[i]) < this.SVCModels){
this.data.push({ this.data.push({
type:0, column:this.counter, height:height type:0, column:this.counter, height:height
}) })
flagKNN = 1 flagKNN = 1
} else if (StackInfo[i] < this.GausNBModels){ } else if (Number(StackInfo[i]) < this.GausNBModels){
this.data.push({ this.data.push({
type:1, column:this.counter, height:height type:1, column:this.counter, height:height
}) })
flagSVC = 1 flagSVC = 1
} else if (StackInfo[i] < this.MLPModels){ } else if (Number(StackInfo[i]) < this.MLPModels){
this.data.push({ this.data.push({
type:2, column:this.counter, height:height type:2, column:this.counter, height:height
}) })
flagGausNB = 1 flagGausNB = 1
} else if (StackInfo[i] < this.LRModels){ } else if (Number(StackInfo[i]) < this.LRModels){
this.data.push({ this.data.push({
type:3, column:this.counter, height:height type:3, column:this.counter, height:height
}) })
flagMLP = 1 flagMLP = 1
} else if (StackInfo[i] < this.LDAModels){ } else if (Number(StackInfo[i]) < this.LDAModels){
this.data.push({ this.data.push({
type:4, column:this.counter, height:height type:4, column:this.counter, height:height
}) })
flagLR = 1 flagLR = 1
} else if (StackInfo[i] < this.QDAModels){ } else if (Number(StackInfo[i]) < this.QDAModels){
this.data.push({ this.data.push({
type:5, column:this.counter, height:height type:5, column:this.counter, height:height
}) })
flagLDA = 1 flagLDA = 1
} else if (StackInfo[i] < this.RFModels){ } else if (Number(StackInfo[i]) < this.RFModels){
this.data.push({ this.data.push({
type:6, column:this.counter, height:height type:6, column:this.counter, height:height
}) })
flagQDA = 1 flagQDA = 1
} else if (StackInfo[i] < this.ExtraTModels){ } else if (Number(StackInfo[i]) < this.ExtraTModels){
this.data.push({ this.data.push({
type:7, column:this.counter, height:height type:7, column:this.counter, height:height
}) })
flagRF = 1 flagRF = 1
} else if (StackInfo[i] < this.AdaBModels){ } else if (Number(StackInfo[i]) < this.AdaBModels){
this.data.push({ this.data.push({
type:8, column:this.counter, height:height type:8, column:this.counter, height:height
}) })
flagExtraT = 1 flagExtraT = 1
} else if (StackInfo[i] < this.GradBModels){ } else if (Number(StackInfo[i]) < this.GradBModels){
this.data.push({ this.data.push({
type:9, column:this.counter, height:height type:9, column:this.counter, height:height
}) })
@ -182,15 +184,20 @@ export default {
} }
} }
if (flagKNN == 1) {
this.typeCounter.push(0) this.typeCounter.push(0)
} this.typeCounter.push(0)
if (flagSVC == 1) { this.typeCounter.push(0)
this.typeCounter.push(0) this.typeCounter.push(0)
} this.typeCounter.push(0)
if (flagGausNB == 1) { this.typeCounter.push(0)
this.typeCounter.push(0) this.typeCounter.push(0)
} this.typeCounter.push(0)
this.typeCounter.push(0)
this.typeCounter.push(0)
this.typeCounter.push(0)
this.typeCounter.push(0)
/*
if (flagMLP == 1) { if (flagMLP == 1) {
this.typeCounter.push(0) this.typeCounter.push(0)
} }
@ -215,10 +222,13 @@ export default {
if (flagGradB == 1) { if (flagGradB == 1) {
this.typeCounter.push(0) this.typeCounter.push(0)
} }
*/
this.typeColumnCounter.push(0) this.typeColumnCounter.push(0)
this.data.forEach(d => { this.data.forEach(d => {
if (d.column == this.counter) { if (d.column == this.counter) {
console.log(this.typeCounter)
console.log(d.type)
d.typeIndex = this.typeCounter[d.type]++; d.typeIndex = this.typeCounter[d.type]++;
d.typeColumnIndex = this.typeColumnCounter[d.column]++; d.typeColumnIndex = this.typeColumnCounter[d.column]++;
} }
@ -280,7 +290,7 @@ export default {
canvas.onmousedown = function (e) { canvas.onmousedown = function (e) {
var x = e.clientX - canvas.getBoundingClientRect().left; var x = e.clientX - canvas.getBoundingClientRect().left;
var y = e.clientY - canvas.getBoundingClientRect().top; var y = e.clientY - canvas.getBoundingClientRect().top;
var p = platform.getPickingPixel(x * platform.pixelRatio, y * platform.pixelRatio); var p = plat.getPickingPixel(x * plat.pixelRatio, y * plat.pixelRatio);
if (p) { if (p) {
selectedNode = nodes[p[1]]; selectedNode = nodes[p[1]];
requestRender(); requestRender();
@ -407,7 +417,6 @@ export default {
{value: this.Stack_scoresMean3, label: "Recall", color: scaleColor(this.Stack_scoresMean3)}, {value: this.Stack_scoresMean3, label: "Recall", color: scaleColor(this.Stack_scoresMean3)},
{value: this.Stack_scoresMean4, label: "F1 Score", color: scaleColor(this.Stack_scoresMean4)} {value: this.Stack_scoresMean4, label: "F1 Score", color: scaleColor(this.Stack_scoresMean4)}
]; ];
console.log(data)
var svg = d3.select('#svg'+this.firstInside).attr('width', width).attr('height', width).style('margin-right', '48px'); var svg = d3.select('#svg'+this.firstInside).attr('width', width).attr('height', width).style('margin-right', '48px');
var arcs = data.map(function (obj, i) { var arcs = data.map(function (obj, i) {

@ -20,6 +20,7 @@ export default {
}, },
methods: { methods: {
valueActiveStFun () { valueActiveStFun () {
console.log('mpike')
EventBus.$emit('storeStack') EventBus.$emit('storeStack')
} }
} }

Loading…
Cancel
Save