Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
kartik-gupta-ij committed Oct 17, 2024
1 parent 7ad629d commit e0dcaee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Collections/SearchQuality/SearchQuality.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Tuning the HNSW Algorithm (Advanced mode):
Practical Use:
- The ANN search (with HNSW) is significantly faster (5ms compared to 30ms) but slightly less accurate (precision@10: 0.8). You can adjust parameters like "hnsw_ef" in advanced mode to find the right balance between speed and accuracy.
Additional Tuning Parameters (need to be set during collection configuration):
Additional Tuning Parameters (need to be set in collection configuration):
1. "m" Parameter : Defines the number of edges per node in the graph. A higher "m" value improves accuracy but uses more memory.
2. "ef_construct" Parameter: Sets the number of neighbors to consider during index creation. A higher value increases precision but requires more time during indexing.`;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const VectorTableRow = ({ vectorObj, name, onCheckIndexQuality, precision, isInP
{isInProgress && <LinearProgress />}
{!isInProgress && (
<Box display="flex" alignItems="center">
<Typography variant="subtitle1" component={'span'} color="text.secondary" >
<Typography variant="subtitle1" component={'span'} color="text.secondary">
{precision ? `${precision * 100}%` : null}
</Typography>
<Tooltip title="Check index quality">
Expand Down

0 comments on commit e0dcaee

Please sign in to comment.