Move frontend to correct directory
This commit is contained in:
@@ -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);
|
||||||
}
|
}
|
||||||
@@ -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())
|
||||||
|
|||||||
Reference in New Issue
Block a user