[Design] Multichannel model support
See original GitHub issue🚀 Feature: Multichannel models.
What we want
- Suport in
BaseModel
for save/load/share - Support in
separate
for the inference API + CLI.
Proposed design
- Add
channels
(orn_chan
,n_channels
?) toBaseModel
. - Add
channels
toseparate
andSeparable
.
Is there anywhere else where we need to change it?
Questions:
- Should
channels
be handle the same way assample_rate
(hidden attribute + property)? - How should we handle models that support several number of channels? Using
List
orNone
? - Should we raise errors in
separate
if the number of input channels is different than the expected number? Or remove the channels? Or apply the network to each channel? etc…
Issue Analytics
- State:
- Created 3 years ago
- Comments:9 (1 by maintainers)
Top Results From Across the Web
Creating a Multi-channel Design in Altium Designer
A multi-channel design must be hierarchical because the software uses this structural model to instantiate the channels in memory when the design is...
Read more >A GUIDE TO MULTI-CHANNEL CUSTOMER SUPPORT
A GUIDE TO MULTI-CHANNEL CUSTOMER SUPPORT. Just ahead through the double doors is the customer service department. Behind a neat, circular desk, a...
Read more >How to structure an effective multichannel marketing plan
We have marketing training and tools to support you to accelerate your results through streamlined, effective, multichannel marketing.
Read more >Why Multi-Channel Design Is A Must For Future Designs
Multi-channel design is something supported in multiple stages in the overall design process. For instance, the change tag and project file. But ...
Read more >Design Guidelines for High-Performance Multichannel ...
Abstract. This application note will help the designer of a high-performance, multichannel, simultaneous-sampling data-acquisition system (DAS).
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Thanks @iver56! I remember this conversation, and I still think channels first make more sense with PyTorch.
Actually, we (I) merged with
n_channels
but changed it toin_channels
to be consistent with PyTorch’s conv ops.Solved in #427