We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e2af3e commit 778d82bCopy full SHA for 778d82b
crates/cervo-core/src/model_api.rs
@@ -56,6 +56,8 @@ impl ModelApi {
56
Ok(Self { outputs, inputs })
57
}
58
59
+ // Note[TS]: Clippy wants us to use name...clone_into(&name) but that's illegal.
60
+ #[allow(clippy::assigning_clones)]
61
pub fn for_typed_model(model: &TypedModel) -> TractResult<Self> {
62
let mut inputs: Vec<(String, Vec<usize>)> = Default::default();
63
0 commit comments