You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/vision/mod.rs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -393,7 +393,7 @@ where
393
393
/// - `train` - Array containing the data to be used as training data
394
394
/// - `dist_dims` - indicates the dimension to analyze for distance (the dimension indicated here
395
395
/// must be of equal length for both query and train arrays)
396
-
/// - `n_dist` - is the number of smallest distances to return (currently, only 1 is supported)
396
+
/// - `n_dist` - is the number of smallest distances to return (currently, only values <= 256 are supported)
397
397
///
398
398
///
399
399
/// # Return Values
@@ -452,7 +452,7 @@ where
452
452
/// - `query` is the array containing the data to be queried
453
453
/// - `train` is the array containing the data used as training data
454
454
/// - `dist_dim` indicates the dimension to analyze for distance (the dimension indicated here must be of equal length for both query and train arrays)
455
-
/// - `n_dist` is the number of smallest distances to return (currently, only 1 is supported)
455
+
/// - `n_dist` is the number of smallest distances to return (currently, only values <= 256 are supported)
456
456
/// - `dist_type` is the distance computation type. Currently [`MatchType::SAD`](./enum.MatchType.html), [`MatchType::SSD`](./enum.MatchType.html), and [`MatchType::SHD`](./enum.MatchType.html) are supported.
0 commit comments