Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat[graph-tab]: integrate Euclidean distance into graph visualization tab #271

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/Common/PointPreview.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const PointPreview = ({ point }) => {
<>
<CardContent>
<Grid container display={'flex'}>
{point.payload && <PointImage data={point.payload} sx={{ width: 300, mx: 'auto' }} />}
{point.payload && <PointImage data={point.payload} sx={{ width: 300, mx: 'auto' }} gridxs={12} />}
<Grid item xs={12} my={1}>
<DataGridList
data={{ id: point.id, ...point.payload }}
Expand Down
5 changes: 3 additions & 2 deletions src/components/Points/PointImage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, { useState } from 'react';
import PropTypes from 'prop-types';
import { Box, CardMedia, Grid, Modal, Typography } from '@mui/material';

function PointImage({ data, sx }) {
function PointImage({ data, sx, gridxs }) {
const [fullScreenImg, setFullScreenImg] = useState(null);
const renderImages = () => {
const images = [];
Expand Down Expand Up @@ -58,7 +58,7 @@ function PointImage({ data, sx }) {
}

return (
<Grid item xs={3} display="grid" justifyContent={'center'}>
<Grid item xs={gridxs ?? 3} display="grid" justifyContent={'center'}>
{images}
<Modal
open={!!fullScreenImg}
Expand Down Expand Up @@ -114,6 +114,7 @@ function PointImage({ data, sx }) {
PointImage.propTypes = {
data: PropTypes.object.isRequired,
sx: PropTypes.object,
gridxs: PropTypes.number,
};

export default PointImage;
8 changes: 8 additions & 0 deletions src/lib/graph-visualization-helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,3 +152,11 @@ export const getMinimalSpanningTree = (links, acs = true) => {

return mstLinks;
};

export const getMetrics = async (qdrantClient, { collectionName, vectorName = null }) => {
const collectionInfo = await qdrantClient.getCollection(collectionName);
if (vectorName && collectionInfo.config.params.vectors[vectorName]) {
return collectionInfo.config.params.vectors[vectorName].distance;
}
return collectionInfo.config.params.vectors.distance;
};
Loading