We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d41b6ce commit 6adca98Copy full SHA for 6adca98
atlas-cli/src/commands/normalize.rs
@@ -40,7 +40,7 @@ pub fn normalize(args: normalize::Args) -> Result<(), NormalizeError> {
40
.collect::<Result<_, num::TryFromIntError>>()
41
.map_err(|e| io::Error::new(io::ErrorKind::InvalidData, e))?;
42
43
- median_of_ratios::normalize_vec(1, features.len(), data)?
+ median_of_ratios::normalize_vec(1, names.len(), data)?
44
}
45
Method::Tpm => {
46
let feature_lengths: Vec<_> = calculate_feature_lengths(&features, &names)?
0 commit comments