Move frontend to correct directory

This commit is contained in:
William Jeynes
2026-04-08 21:05:45 +01:00
parent aa962b1802
commit 49888002b4
9 changed files with 2 additions and 2 deletions
@@ -67,7 +67,7 @@ export function App() {
ctx.arc(node.x, node.y, 2*node.members.length , 0, 2 * Math.PI, false); ctx.arc(node.x, node.y, 2*node.members.length , 0, 2 * Math.PI, false);
ctx.fill(); ctx.fill();
if (node.members.length > 2) { if (node.members.length >= 2) {
ctx.fillStyle = "black"; ctx.fillStyle = "black";
ctx.fillText(node.label, node.x + 12, node.y + 4); ctx.fillText(node.label, node.x + 12, node.y + 4);
} }
+1 -1
View File
@@ -13,7 +13,7 @@ from tqdm import tqdm
INPUT_CSV = "../../data/dataset-dev.csv" INPUT_CSV = "../../data/dataset-dev.csv"
OUTPUT_JSON = "../../data/clustered_output.json" OUTPUT_JSON = "../../data/clustered_output.json"
MODEL_NAME = "all-MiniLM-L6-v2" MODEL_NAME = "all-MiniLM-L6-v2"
SIMILARITY_THRESHOLD = 0.55 SIMILARITY_THRESHOLD = 0.65
def generate_guid(): def generate_guid():
return str(uuid.uuid4()) return str(uuid.uuid4())