githubActions
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.
References:
-
The setup.py file and theREADME.rst files are written based on this blog. It is a great reference for anyone trying to their package 'pip installable'
-
Link to python documentation section related to packaging.
-
Link to python documentation section related to pipy friendly README.
-
Link to python documentation section related to packaging using GiHhubActions.
-
Link to a useful video tutorial related to CI CD Github Actions
To do
- Write a tutorial.md file explaining the process
- Share useful links
- Share link of Pipy package