Skip to content

Add classifier target as output for compatibility with metrics #48

Add classifier target as output for compatibility with metrics

Add classifier target as output for compatibility with metrics #48

Triggered via push November 3, 2023 20:24
Status Success
Total duration 1m 5s
Artifacts

clippy_check.yml

on: push
clippy_check
55s
clippy_check
Fit to window
Zoom out
Zoom in

Annotations

22 warnings
using `clone` on type `F` which implements the `Copy` trait: src/metrics/confusion.rs#L150
warning: using `clone` on type `F` which implements the `Copy` trait --> src/metrics/confusion.rs:150:9 | 150 | / self.data 151 | | .get(label) 152 | | .unwrap_or(&HashMap::new()) 153 | | .get(label) 154 | | .unwrap_or(&F::zero()) 155 | | .clone() | |____________________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#clone_on_copy help: try dereferencing it | 150 ~ *self.data 151 + .get(label) 152 + .unwrap_or(&HashMap::new()) 153 + .get(label) 154 + .unwrap_or(&F::zero()) |
using `clone` on type `F` which implements the `Copy` trait: src/metrics/confusion.rs#L146
warning: using `clone` on type `F` which implements the `Copy` trait --> src/metrics/confusion.rs:146:9 | 146 | self.sum_col.get(label).unwrap_or(&F::zero()).clone() | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try dereferencing it: `*self.sum_col.get(label).unwrap_or(&F::zero())` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#clone_on_copy = note: `#[warn(clippy::clone_on_copy)]` on by default
use of `or_insert_with` to construct default value: src/metrics/confusion.rs#L108
warning: use of `or_insert_with` to construct default value --> src/metrics/confusion.rs:108:14 | 108 | .or_insert_with(HashMap::new) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `or_default()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unwrap_or_default = note: `#[warn(clippy::unwrap_or_default)]` on by default
this expression creates a reference which is immediately dereferenced by the compiler: src/metrics/accuracy.rs#L60
warning: this expression creates a reference which is immediately dereferenced by the compiler --> src/metrics/accuracy.rs:60:52 | 60 | .max_by(|a, b| a.1.partial_cmp(&b.1).unwrap()) | ^^^^ help: change this to: `b.1` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
this expression creates a reference which is immediately dereferenced by the compiler: src/metrics/accuracy.rs#L37
warning: this expression creates a reference which is immediately dereferenced by the compiler --> src/metrics/accuracy.rs:37:52 | 37 | .max_by(|a, b| a.1.partial_cmp(&b.1).unwrap()) | ^^^^ help: change this to: `b.1` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
this expression creates a reference which is immediately dereferenced by the compiler: src/common.rs#L217
warning: this expression creates a reference which is immediately dereferenced by the compiler --> src/common.rs:217:52 | 217 | .max_by(|a, b| a.1.partial_cmp(&b.1).unwrap()) | ^^^^ help: change this to: `b.1` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
method `from_iter` can be confused for the standard trait method `std::iter::FromIterator::from_iter`: src/common.rs#L77
warning: method `from_iter` can be confused for the standard trait method `std::iter::FromIterator::from_iter` --> src/common.rs:77:5 | 77 | / pub fn from_iter<I: IntoClassifierTargetIter>(iter: I) -> Box<dyn Iterator<Item = Self>> { 78 | | iter.into_classifier_target_iter() 79 | | } | |_____^ | = help: consider implementing the trait `std::iter::FromIterator` or choosing a less ambiguous method name = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#should_implement_trait = note: `#[warn(clippy::should_implement_trait)]` on by default
this expression creates a reference which is immediately dereferenced by the compiler: src/anomaly/half_space_tree.rs#L144
warning: this expression creates a reference which is immediately dereferenced by the compiler --> src/anomaly/half_space_tree.rs:144:17 | 144 | &self.features.as_ref().unwrap(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: change this to: `self.features.as_ref().unwrap()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow = note: `#[warn(clippy::needless_borrow)]` on by default
unneeded `return` statement: src/anomaly/half_space_tree.rs#L222
warning: unneeded `return` statement --> src/anomaly/half_space_tree.rs:222:9 | 222 | return None; | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return = note: `#[warn(clippy::needless_return)]` on by default help: remove `return` | 222 - return None; 222 + None |
manual implementation of `Option::map`: src/anomaly/half_space_tree.rs#L113
warning: manual implementation of `Option::map` --> src/anomaly/half_space_tree.rs:113:21 | 113 | let trees = if let Some(features) = features { | _____________________^ 114 | | Some(Trees::new(n_trees, height, &features, &mut rng)) 115 | | } else { 116 | | None 117 | | }; | |_________^ help: try: `features.map(|features| Trees::new(n_trees, height, &features, &mut rng))` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_map = note: `#[warn(clippy::manual_map)]` on by default
associated function `new` is never used: src/metrics/accuracy.rs#L12
warning: associated function `new` is never used --> src/metrics/accuracy.rs:12:12 | 11 | impl<F: Float + FromPrimitive + AddAssign + SubAssign + MulAssign + DivAssign> Accuracy<F> { | ------------------------------------------------------------------------------------------ associated function in this implementation 12 | pub fn new() -> Self { | ^^^ | = note: `#[warn(dead_code)]` on by default
redundant field names in struct initialization: src/metrics/rocauc.rs#L90
warning: redundant field names in struct initialization --> src/metrics/rocauc.rs:90:13 | 90 | cms: cms, | ^^^^^^^^ help: replace it with: `cms` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names
redundant field names in struct initialization: src/metrics/rocauc.rs#L89
warning: redundant field names in struct initialization --> src/metrics/rocauc.rs:89:13 | 89 | thresholds: thresholds, | ^^^^^^^^^^^^^^^^^^^^^^ help: replace it with: `thresholds` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names
redundant field names in struct initialization: src/metrics/rocauc.rs#L88
warning: redundant field names in struct initialization --> src/metrics/rocauc.rs:88:13 | 88 | pos_val: pos_val, | ^^^^^^^^^^^^^^^^ help: replace it with: `pos_val` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names
redundant field names in struct initialization: src/anomaly/half_space_tree.rs#L127
warning: redundant field names in struct initialization --> src/anomaly/half_space_tree.rs:127:13 | 127 | trees: trees, | ^^^^^^^^^^^^ help: replace it with: `trees` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names
redundant field names in struct initialization: src/anomaly/half_space_tree.rs#L126
warning: redundant field names in struct initialization --> src/anomaly/half_space_tree.rs:126:13 | 126 | n_nodes: n_nodes, | ^^^^^^^^^^^^^^^^ help: replace it with: `n_nodes` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names
redundant field names in struct initialization: src/anomaly/half_space_tree.rs#L125
warning: redundant field names in struct initialization --> src/anomaly/half_space_tree.rs:125:13 | 125 | n_branches: n_branches, | ^^^^^^^^^^^^^^^^^^^^^^ help: replace it with: `n_branches` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names
redundant field names in struct initialization: src/anomaly/half_space_tree.rs#L124
warning: redundant field names in struct initialization --> src/anomaly/half_space_tree.rs:124:13 | 124 | rng: rng, | ^^^^^^^^ help: replace it with: `rng` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names
redundant field names in struct initialization: src/anomaly/half_space_tree.rs#L122
warning: redundant field names in struct initialization --> src/anomaly/half_space_tree.rs:122:13 | 122 | height: height, | ^^^^^^^^^^^^^^ help: replace it with: `height` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names
redundant field names in struct initialization: src/anomaly/half_space_tree.rs#L121
warning: redundant field names in struct initialization --> src/anomaly/half_space_tree.rs:121:13 | 121 | n_trees: n_trees, | ^^^^^^^^^^^^^^^^ help: replace it with: `n_trees` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names
redundant field names in struct initialization: src/anomaly/half_space_tree.rs#L119
warning: redundant field names in struct initialization --> src/anomaly/half_space_tree.rs:119:13 | 119 | window_size: window_size, | ^^^^^^^^^^^^^^^^^^^^^^^^ help: replace it with: `window_size` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names = note: `#[warn(clippy::redundant_field_names)]` on by default
clippy_check
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/