Skip to content

Commit

Permalink
running silva under hamming first
Browse files Browse the repository at this point in the history
  • Loading branch information
nishaq503 committed Jan 9, 2025
1 parent f5cd265 commit 705eb4b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion benches/cakes/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ fn main() -> Result<(), String> {
};

let (queries, subsampled_paths) =
data_gen::read_fasta_and_subsample(&inp_dir, &out_dir, true, args.num_queries, max_power, seed)?;
data_gen::read_fasta_and_subsample(&inp_dir, &out_dir, false, args.num_queries, max_power, seed)?;
let queries = queries.into_iter().map(|(_, q)| q).collect::<Vec<_>>();

ftlog::info!("Found {} sub-sampled datasets:", subsampled_paths.len());
Expand Down
2 changes: 1 addition & 1 deletion benches/utils/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ impl RawData {
| Self::LastFM
| Self::NyTimes => "cosine",
Self::Kosarak | Self::MovieLens => "jaccard",
Self::SilvaSSURef => "levenshtein",
Self::SilvaSSURef => "hamming",
Self::RadioML => "dtw",
}
}
Expand Down

0 comments on commit 705eb4b

Please sign in to comment.