-
-
Save yoninachmany/04eef1b30bb42924911cbea3a4601b34 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Configuration related to a specific dataset. | |
# For syntax see: https://github.com/toml-lang/toml#table-of-contents | |
# Dataset specific common attributes. | |
[common] | |
# The slippy map dataset's base directory. | |
dataset = '/tmp/data/dataset/' | |
# Human representation for classes. | |
classes = ['background', 'building'] | |
# Color map for visualization and representing classes in masks. | |
# Note: available colors can be found in `robosat/colors.py` | |
colors = ['denim', 'orange'] | |
# Dataset specific class weights computes on the training data. | |
# Note: use `./rs weights -h` to compute these for new datasets. | |
[weights] | |
values = [1.50218, 11.113956] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment