Skip to content

Commit

Permalink
Correct grammar in README
Browse files Browse the repository at this point in the history
  • Loading branch information
sd2k committed Aug 21, 2024
1 parent e1cf67e commit 6c4ffa3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/augurs-clustering/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This crate contains algorithms for clustering time series.

So far only DBSCAN is implemented, and the distance matrix must be passed directly.
So far, only DBSCAN is implemented, and the distance matrix must be passed directly.
A crate such as [`augurs-dtw`] must be used to calculate the distance matrix for now.

## Usage
Expand All @@ -27,7 +27,7 @@ assert_eq!(clusters, vec![-1, -1, -1, -1]);

## Credits

This implementation based heavily on to the implementation in [`linfa-clustering`] and [`scikit-learn`].
This implementation is based heavily on to the implementation in [`linfa-clustering`] and [`scikit-learn`].
The main difference between these is that we operate directly on the distance matrix rather than calculating
it as part of the clustering algorithm.

Expand Down

0 comments on commit 6c4ffa3

Please sign in to comment.