You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This change is an adaptation of #33 that allows for the same kind of functionality. It also adds tests checking the newly-added functions. With this in place, users will be able to set input layouts with something like:
```rust
for i in 0..network.get_inputs_len() {
let name = network.get_input_name(i)?;
network.set_input_layout(&name, Layout::NHWC)?;
}
```
0 commit comments