Run CNN models for classification, regression, segmentation, VAE, contrastive learning with any data set.
First, create a dedicated conda environment using Python 3.9
conda create -n cnn_framework python=3.9
conda activate cnn_frameworkTo install the latest github version of this library run the following using pip
pip install git+https://github.com/15bonte/cnn_frameworkor alternatively you can clone the github repository
git clone https://github.com/15bonte/cnn_framework.git
cd cnn_framework
pip install -e .If you want to run jupyter tutorials, you also need to install ipykernel
pip install ipykernelIf you want to work with VAE, you must also install Pythae and WandB, which is not the case by default.
pip install pythaepip install wandb