Skip to content

Commit

Permalink
feat: using iupac codes and elaborate penalties for silva dataset
Browse files Browse the repository at this point in the history
  • Loading branch information
nishaq503 committed Nov 13, 2023
1 parent b0753c3 commit 2e759c9
Show file tree
Hide file tree
Showing 7 changed files with 536 additions and 113 deletions.
4 changes: 2 additions & 2 deletions abd-clam/src/cakes/knn/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -162,10 +162,10 @@ impl Algorithm {
}
}

/// Returns a list of all the algorithms, excluding Linear.
/// Returns a list of all the algorithms, excluding `Linear` and `RepeatedRnn`.
#[must_use]
pub const fn variants<'a>() -> &'a [Self] {
&[Self::RepeatedRnn, Self::GreedySieve, Self::Sieve, Self::SieveSepCenter]
&[Self::GreedySieve, Self::Sieve, Self::SieveSepCenter]
}
}

Expand Down
1 change: 1 addition & 0 deletions cakes-results/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ env_logger = "0.10.0"
num-format = "0.4.4"
csv = "1.2.2"
rand = "0.8.5"
rayon = "1.8.0"

[[bin]]
name = "knn-results"
Expand Down
Loading

0 comments on commit 2e759c9

Please sign in to comment.