File tree Expand file tree Collapse file tree 3 files changed +11
-6
lines changed
Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 55 <option name =" workingDirectory" value =" file://$PROJECT_DIR$" />
66 <envs >
77 <env name =" CINIC10_PATH" value =" /media/Data/CINIC-10" />
8+ <env name =" DISPLAY" value =" :1" />
89 </envs >
910 <option name =" emulateTerminal" value =" true" />
1011 <option name =" channel" value =" STABLE" />
Original file line number Diff line number Diff line change @@ -36,15 +36,18 @@ let model: ResNet<Wgpu> = prefab
3636```
3737
3838* [ bimm::cache] ( https://docs.rs/bimm/latest/bimm/cache ) - weight loading cache.
39+ * [ bimm::compat] ( https://docs.rs/bimm/latest/bimm/compat ) - future-porting burn mechanisms.
40+ * [ bimm::compat::activation_wrapper::Activation] ( https://docs.rs/bimm/latest/bimm/compat/activation_wrapper/enum.Activation.html ) -
41+ activation layer abstraction wrapper.
42+ * [ bimm::compat::normalization_wrapper::Normalization] ( https://docs.rs/bimm/latest/bimm/compat/normalization_wrapper/enum.Normalization.html ) -
43+ normalization layer abstraction wrapper.
3944* [ bimm::layers] ( https://docs.rs/bimm/latest/bimm/layers ) - reusable neural network modules.
40- * [ bimm::layers::activation] ( https://docs.rs/bimm/latest/bimm/layers/activation ) - activation
41- layers.
42- * [ bimm::layers::activation::Activation] ( https://docs.rs/bimm/latest/bimm/layers/activation/enum.Activation.html )
43- - activation layer abstraction wrapper.
4445 * [ bimm::layers::blocks] ( https://docs.rs/bimm/latest/bimm/layers/blocks ) - miscellaneous
4546 blocks.
46- * [ bimm::layers::blocks::conv_norm] ( https://docs.rs/bimm/latest/bimm/layers/blocks/conv_norm ) -
47+ * [ bimm::layers::blocks::conv_norm::ConvNorm2d ] ( https://docs.rs/bimm/latest/bimm/layers/blocks/conv_norm ) -
4748 `` Conv2d + BatchNorm2d `` block.
49+ * [ bimm::layers::blocks::cna::CNA2d] ( https://docs.rs/bimm/latest/bimm/layers/blocks/conv_norm ) -
50+ `` Conv2d + Normalization + Activation `` block.
4851 * [ bimm::layers::drop] ( https://docs.rs/bimm/latest/bimm/layers/drop ) - dropout layers.
4952 * [ bimm::layers::drop::drop_block] ( https://docs.rs/bimm/latest/bimm/layers/drop/drop_block ) -
5053 2d drop
Original file line number Diff line number Diff line change 99//! * [`compat::normalization_wrapper::Normalization`] - norm layer abstraction wrapper.
1010//! * [`layers`] - reusable neural network modules.
1111//! * [`layers::blocks`] - miscellaneous blocks.
12- //! * [`layers::blocks::conv_norm`] - ``Conv2d + BatchNorm2d`` block.
12+ //! * [`layers::blocks::cna::CNA2d`] - ``Conv2d + Normalization + Activation`` block.
13+ //! * [`layers::blocks::conv_norm::ConvNorm2d`] - ``Conv2d + BatchNorm2d`` block.
1314//! * [`layers::drop`] - dropout layers.
1415//! * [`layers::drop::drop_block`] - 2d drop block / spatial dropout.
1516//! * [`layers::drop::drop_path`] - drop path / stochastic depth.
You can’t perform that action at this time.
0 commit comments