This repository was archived by the owner on Jul 1, 2025. It is now read-only.

Description
Would be great if people's lightning modules became easily accessible via pip install. This functionality may work as is right now, but it would be great to showcase and encourage this pattern:
pip install git+https://github.com/teddykoker/teddys-model/
Then in python
from pl_bolts.datamodules import ImageNet
from teddys-model import TeddysModel
pl.Trainer().fit(TeddysModel(), ImageNet())
This encourages reusability of modules and datamodules which would be great for research reproducibility as well as just plug-n-play with different models.