Skip to content

This repository contains a small collection of utility functions

License

Notifications You must be signed in to change notification settings

kaustubh-sadekar/dlutils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dlutils

This repository contains a small collection of utility functions.

Installing the library in colab

!git clone https://github.com/kaustubh-sadekar/dlutils.git
!sudo python3 dlutils/setup.py install

Example code for testing in colab

import sys
sys.path.append("dlutils/")
import kdlutils
input_dim = (1,600,800)
layersList = [{'conv':(1,7,3,1,1,1)},{'mp':(2,2,0,1)},{'conv':(7,14,3,1,1,1)},{'mp':(2,2,0,1)},{'conv':(14,30,3,1,1,1)},{'mp':(2,2,0,1)}]
out = kdlutils.kdlutils.getOutShape(input_dim,layersList)
print(out)

Documentation and new codes will be uploaded soon.

About

This repository contains a small collection of utility functions

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages