[Feat] Having a kornia.nn module to include all module-like APIs.
See original GitHub issueCurrently, most APIs are scattered in different files. Also, we are mixing the functional APIs and module-like APIs. Should we have a kornia.nn
to split the module-like APIs out of functional ones?
-
For a simple starter, we may have only
__init__.py
inside thekornia.nn
to create a shortcut for users. To have something like:from kornia.augmentation import ( RandomHorizontalFlip, RandomVerticalFlip, RandomErasing, RandomGrayscale, ColorJitter, RandomRotation, RandomCrop, RandomResizedCrop, ) from kornia.color.normalize import ( Normalize, Denormalize ) from kornia.gray import ( RgbToGrayscale, BgrToGrayscale ) ...
-
Eventually, to have a file structure like below to separate those two different APIs:
- kornia
- nn
- agumentation
- color
- feature
- filters
- geometry
- augmentation
- color
- feature
- filters
- geometry
- nn
- kornia
Issue Analytics
- State:
- Created 3 years ago
- Comments:8 (5 by maintainers)
Top Results From Across the Web
kornia.x - Read the Docs
The API is experimental and subject to be modified based on the needs of kornia models. Parameters. model ( Module ) – the...
Read more >block chips off old - CSDN
The command “modinfo -p ${modulename}” shows a current list of all parameters of a loadable ... A lot of drivers have their options...
Read more >unique biological features: Topics by WorldWideScience.org
In contrast, germ cells have only one specific function; to preserve the species by ... process components to the entrance of any selected...
Read more >Modules — PyTorch 1.13 documentation
This note describes modules, and is intended for all PyTorch users. ... Note that modules are not required to have state, and can...
Read more >Computer + Video Games
has been Out meeting one of his all time heroes — Brian Mo ria rt y ... adventures — including the game of...
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
@yutayamazaki yes, please go ahead. Just we need to take care about potential cycle dependencies. /cc @shijianjian
I am thinking to resume this given the needs of using Kornia preprocessing/augmentation/operation as layers.
More or less, at least to have a summary list like: