Skip to content

Commit 6adca98

Browse files
committed
cli/commands/normalize: Fix median of ratios input shape
1 parent d41b6ce commit 6adca98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

atlas-cli/src/commands/normalize.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ pub fn normalize(args: normalize::Args) -> Result<(), NormalizeError> {
4040
.collect::<Result<_, num::TryFromIntError>>()
4141
.map_err(|e| io::Error::new(io::ErrorKind::InvalidData, e))?;
4242

43-
median_of_ratios::normalize_vec(1, features.len(), data)?
43+
median_of_ratios::normalize_vec(1, names.len(), data)?
4444
}
4545
Method::Tpm => {
4646
let feature_lengths: Vec<_> = calculate_feature_lengths(&features, &names)?

0 commit comments

Comments
 (0)