Skip to content

PyTorch Implementation of Tucker Convolution Layers

License

Notifications You must be signed in to change notification settings

vsingh-group/tucker-conv

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tucker Convolutional Layers

PyTorch implementation of Tucker Convolutional Layers as introduced in MobileDets: Searching for Object Detection Architectures for Mobile Accelerators. Ross Wightman's timm library has been used for some helper functions and inspiration for syntax style.

Installation

$ pip install tucker-conv

Usage

from tucker_conv.conv import TuckerConv
import torch

tucker = TuckerConv(30, 30, in_comp_ratio = 0.25, out_comp_ratio = 0.75)
input = torch.randn([1, 30, 512, 512])

output = tucker(input)

About

PyTorch Implementation of Tucker Convolution Layers

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%