Demo_MSE-CNN / constants.py
kevinmevin's picture
add Main modules
5e85b1b
"""@package docstring
@file constants.py
@brief File containing constants used throughout the code.
@section libraries_constants Libraries
- None
@section classes_constants Classes
- None
@section functions_constants Functions
- None
@section global_vars_constants Global Variables
- None
@section todo_constants TODO
- None
@section notes_constants Notes
None
@section license License
MIT License
Copyright (c) 2022 Raul Kevin do Espirito Santo Viana
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
@section author_constants Author(s)
- Created by Raul Kevin Viana
- Last time modified is 2023-01-29 22:22:04.096962
"""
# ========================================================================================
# CONSTANTS
# ========================================================================================
# Paths for folders
## Path to best parameters for stage 2
PATH_BEST_PARAMS_stg2 = "Params_64x64_luma_best_stg2"
## Path to last parameters for stage 2
PATH_LAST_PARAMS_stg2 = "Params_64x64_luma_last_stg2"
## Path to best parameters for stage 2
PATH_BEST_PARAMS_stg3 = "Params_32x32_luma_best_stg3"
## Path to last parameters for stage 2
PATH_LAST_PARAMS_stg3 = "Params_32x32_luma_last_stg3"
PATH_BEST_PARAMS_stg4 = "Params_16x16_luma_best_stg4"
PATH_LAST_PARAMS_stg4 = "Params_16x16_luma_last_stg4"
PATH_BEST_PARAMS_stg4_2 = "Params_32x16_luma_best_stg4"
PATH_LAST_PARAMS_stg4_2 = "Params_32x16_luma_last_stg4"
PATH_BEST_PARAMS_stg5 = "Params_8x8_luma_best_stg5"
PATH_LAST_PARAMS_stg5 = "Params_8x8_luma_last_stg5"
PATH_BEST_PARAMS_stg5_2 = "Params_32x8_luma_best_stg5"
PATH_LAST_PARAMS_stg5_2 = "Params_32x8_luma_last_stg5"
PATH_BEST_PARAMS_stg5_3 = "Params_32x4_luma_best_stg5"
PATH_LAST_PARAMS_stg5_3 = "Params_32x4_luma_last_stg5"
PATH_BEST_PARAMS_stg5_3 = "Params_16x8_luma_best_stg5"
PATH_LAST_PARAMS_stg5_3 = "Params_16x8_luma_last_stg5"
PATH_BEST_PARAMS_stg5_3 = "Params_16x4_luma_best_stg5"
PATH_LAST_PARAMS_stg5_3 = "Params_16x4_luma_last_stg5"
PATH_BEST_PARAMS_stg6_4 = "Params_8x8_luma_best_stg6"
PATH_LAST_PARAMS_stg6_4 = "Params_8x8_luma_last_stg6"
PATH_BEST_PARAMS_stg6_2 = "Params_32x8_luma_best_stg6"
PATH_LAST_PARAMS_stg6_2 = "Params_32x8_luma_last_stg6"
PATH_BEST_PARAMS_stg6_3 = "Params_32x4_luma_best_stg6"
PATH_LAST_PARAMS_stg6_3 = "Params_32x4_luma_last_stg6"
PATH_BEST_PARAMS_stg6_3 = "Params_16x8_luma_best_stg6"
PATH_LAST_PARAMS_stg6_3 = "Params_16x8_luma_last_stg6"
PATH_BEST_PARAMS_stg6_3 = "Params_16x4_luma_best_stg6"
PATH_LAST_PARAMS_stg6_3 = "Params_16x4_luma_last_stg6"
PATH_BEST_PARAMS_stg6 = "Params_8x4_luma_best_stg6"
PATH_LAST_PARAMS_stg6 = "Params_8x4_luma_last_stg6"