main package¶
Submodules¶
main.config module¶
The configuration file to train and evaluate a model.
The configuration is handled by the configuration dictionaries.
Modify the values to your needs, but DO NOT modify the keys.
License¶
Copyright (c) 2020 Daniel Frisinghelli
This source code is licensed under the GNU General Public License v3.
See the LICENSE file in the repository’s root directory.
main.eval module¶
Main script to evaluate a model.
Steps to run a model evaluation:
Configure the dictionary ‘eval_config’ in pysegcnn/main/config.py
Save pysegcnn/main/config.py
In a terminal, navigate to the repository’s root directory
run “python pysegcnn/main/eval.py”
License¶
Copyright (c) 2020 Daniel Frisinghelli
This source code is licensed under the GNU General Public License v3.
See the LICENSE file in the repository’s root directory.
main.train module¶
Main script to train a model.
Steps to launch a model run:
Configure the model run in pysegcnn/main/config.py (i) configure the dataset : dictionary ‘dataset_config’ (j) configure the dataset split: dictionary ‘split_config’ (k) configure the model : dictionary ‘model_config’
Save pysegcnn/main/config.py
In a terminal, navigate to the repository’s root directory
run “python pysegcnn/main/train.py”
License¶
Copyright (c) 2020 Daniel Frisinghelli
This source code is licensed under the GNU General Public License v3.
See the LICENSE file in the repository’s root directory.