Exploring the role of domain in training and performance of DL models.
Clone the repo
git clone [email protected]:reghbali/domain-exploration.git
cd domain-explorationThen run (we recommend using a python virtual environment)
pip install --upgrade pipUpdate the setuptools
pip install --upgrade setuptoolsRun the following command to install the domain-exploration library:
pip install -e .Run
python main.py fit [--data DATA_MODULE] [--data.domain DOMAIN] [--model MODEL]for instance:
python main.py fit --data MNISTDataModule --data.domain pixel --model MLP_MNISTand for freq domain training:
python main.py fit --data MNISTDataModule --data.domain freq --model MLP_MNIST