Skip to content

serihiro/convolution_experiments

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Coverage Status

About this repository

  • This repository contains my some convolution implementations

Convolution implementations

  • All convolution implenentations are implemented in python/my_convolution/src/my_convolution.py.

direct style

  • my_convolution.convolution_with_numpy( x: np.ndarray, W: np.ndarray, stride: int = 1, pad: int = 0)
  • my_convolution.convolution_with_standard_library( x: List[List[List[List[float]]]], W: List[List[List[List[float]]]], stride: int = 1, pad: int = 0)

im2col style

  • my_convolution.convolution_with_im2col( x: List[List[List[List[float]]]], W: List[List[List[List[float]]]], stride: int = 1, pad: int = 0)
  • my_convolution.convolution_with_im2col_and_gemm( x: List[List[List[List[float]]]], W: List[List[List[List[float]]]], stride: int = 1, pad: int = 0)

Tests for convolution implementations

pytest python/my_convolution/tests

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages