A Pub/Sub system for Fashion Image Classification.
In order to setup the entire application;
- Install the appropriate Python environment.
- Follow the steps outlined in the table of contents below.
This repository uses Python 3.8.
The Python packages are stored in the env.yml
file. These can be installed using conda
by running:
conda env create -f env.yml
This respository uses black
and isort
for code and package import formatting.
To run these execute the following commands in the terminal;
black <file_name>
orblack .
for all files.isort <file_name>
orisort .
for all files.