Skip to content

Commit c1fbee7

Browse files
committed
Linting
1 parent 66820b8 commit c1fbee7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

algorithms/linfa-bayes/src/base_nb.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ where
7070
.mapv(|x| x.exp())
7171
.sum_axis(Axis(1))
7272
.mapv(|x| x.ln())
73-
.into_shape((n_samples, 1))
73+
.into_shape_with_order((n_samples, 1))
7474
.unwrap();
7575

7676
(log_prob_mat - log_prob_x, classes)

0 commit comments

Comments
 (0)