This is semantic segmentation project on BDD cityscapes-like dataset that are tracked via wandb. You can see the run on my wandb.
The objectives of this project is to segment pedestrian view of car camera view for semantic segmentation problem using wandb to track and run the code modularly with this repository to ensure the project reproducible.
The setups are pretty basic, just go
> pip install virtualenv
> virtualenv venv
> source venv/bin/activate
> pip install -r requirements.txt
> wandb login
Then run the code sequentially
> python data_loader.py
> python split.py
> python baseline.py
> python eval.py
You only need to run
data_loader.py
andsplit.py
once since this data is static, but you could runbaseline.py
andeval.py
multiple times since it is what the experiments about.
You can set configs of hyperparameters to experiment in the baseline.py
file, try tweak some of the hyperparameters. The eval.py
is to check the model that are produced on baseline.py
executions on test holdout set.
You can check my reports on this repository executions on these pages