Skip to content

Commit

Permalink
Expand labelbot config comments
Browse files Browse the repository at this point in the history
  • Loading branch information
gkourie committed Dec 20, 2024
1 parent 296d0f9 commit 602b253
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions config/labelbot.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,25 @@
return [

/*
| K for KNN
|--------------------------------------------------------------------------
| K for KNN (K-Nearest Neighbors)
|--------------------------------------------------------------------------
|
| The value of K determines the number of nearest neighbors to consider
| when performing a KNN search. This is used in both Approximate
| Nearest Neighbor (ANN) and Exact KNN searches.
*/
'K' => 100,

/*
| N for top N labels
|--------------------------------------------------------------------------
| N for Top N Labels
|--------------------------------------------------------------------------
|
| The value of N specifies how many top labels should be returned from
| the search results. After performing a KNN or ANN search, the top N
| labels (based on their distance to the query vector) will be selected
| and returned.
*/
'N' => 3,
];

0 comments on commit 602b253

Please sign in to comment.