Skip to content

Commit

Permalink
Merge pull request #340 from Visual-Intelligence-UMN/matrix-reusability
Browse files Browse the repository at this point in the history
bug fixed
  • Loading branch information
chongwei729 authored Sep 7, 2024
2 parents a1bb944 + e9036ed commit 82ac6c0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/utils/matNNVis.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,9 @@ async function initLinkClassifier(
let locations: number[][] = [];
d3.select("#matvis").selectAll("*").remove();
visualizeMatrixBody(gridSize, graph, width, height, margin);
drawNodeAttributes(keys, graph, 150);
const strKeys:string[] = keys.map(item => String(item));

drawNodeAttributes(strKeys, graph, 150);

//draw target edge - "?"

Expand Down

0 comments on commit 82ac6c0

Please sign in to comment.