Spaces:
Running
Running
Update index.html
Browse files- index.html +3 -3
index.html
CHANGED
@@ -473,7 +473,7 @@
|
|
473 |
<script>
|
474 |
|
475 |
// Load the data https://huggingface.co/datasets/Seetha/visual_files/
|
476 |
-
d3.json("https://huggingface.co/datasets/
|
477 |
var links = data;
|
478 |
console.log(links)
|
479 |
|
@@ -602,7 +602,7 @@
|
|
602 |
headerRow.append("th").text("Label level1");
|
603 |
headerRow.append("th").text("Label level2");
|
604 |
|
605 |
-
d3.json("https://huggingface.co/datasets/
|
606 |
var table = d3.select("table"); // select the existing table
|
607 |
var tbody = table.append("tbody"); // create a tbody element
|
608 |
|
@@ -862,7 +862,7 @@
|
|
862 |
|
863 |
// Add a data row for the hovered node
|
864 |
|
865 |
-
d3.json("https://huggingface.co/datasets/
|
866 |
var table = d3.select("table"); // select the existing table
|
867 |
var tbody = table.append("tbody"); // create a tbody element
|
868 |
|
|
|
473 |
<script>
|
474 |
|
475 |
// Load the data https://huggingface.co/datasets/Seetha/visual_files/
|
476 |
+
d3.json("https://huggingface.co/datasets/KGBrain/visual_files/raw/main/level2.json", function(data) {
|
477 |
var links = data;
|
478 |
console.log(links)
|
479 |
|
|
|
602 |
headerRow.append("th").text("Label level1");
|
603 |
headerRow.append("th").text("Label level2");
|
604 |
|
605 |
+
d3.json("https://huggingface.co/datasets/KGBrain/visual_files/raw/main/detailedResults.json", function(data) {
|
606 |
var table = d3.select("table"); // select the existing table
|
607 |
var tbody = table.append("tbody"); // create a tbody element
|
608 |
|
|
|
862 |
|
863 |
// Add a data row for the hovered node
|
864 |
|
865 |
+
d3.json("https://huggingface.co/datasets/KGBrain/visual_files/raw/main/detailedResults.json", function(data) {
|
866 |
var table = d3.select("table"); // select the existing table
|
867 |
var tbody = table.append("tbody"); // create a tbody element
|
868 |
|