Skip to content

Commit e0dcaee

Browse files
fmt
1 parent 7ad629d commit e0dcaee

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/Collections/SearchQuality/SearchQuality.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Tuning the HNSW Algorithm (Advanced mode):
2424
Practical Use:
2525
- 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.
2626
27-
Additional Tuning Parameters (need to be set during collection configuration):
27+
Additional Tuning Parameters (need to be set in collection configuration):
2828
1. "m" Parameter : Defines the number of edges per node in the graph. A higher "m" value improves accuracy but uses more memory.
2929
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.`;
3030

src/components/Collections/SearchQuality/SearchQualityPanel.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ const VectorTableRow = ({ vectorObj, name, onCheckIndexQuality, precision, isInP
4747
{isInProgress && <LinearProgress />}
4848
{!isInProgress && (
4949
<Box display="flex" alignItems="center">
50-
<Typography variant="subtitle1" component={'span'} color="text.secondary" >
50+
<Typography variant="subtitle1" component={'span'} color="text.secondary">
5151
{precision ? `${precision * 100}%` : null}
5252
</Typography>
5353
<Tooltip title="Check index quality">

0 commit comments

Comments
 (0)