# File and directory paths | |
EVAL_SCRIPT_PATH = "src/eval.py" | |
LOCAL_TEMP_SUBMISSIONS_DIR = "../temp_submissions_app" | |
# Hugging Face Dataset Configuration | |
DATASET_REPO_ID = "kostis-init/my-storage" | |
DS_SUBMISSIONS_PATH = "submissions" | |
DS_RESULTS_PATH = "results" | |
# leaderboard | |
LDB_COLS = ["Submission Name", "Solution Found (%)", "Consistency (%)", "Final Solution Accuracy (%)", "# of Models submitted"] | |
# modelling frameworks | |
CPMPY_FRAMEWORK = "CPMpy" | |
MINIZINC_FRAMEWORK = "MiniZinc" | |
ORTOOLS_FRAMEWORK = "OR-Tools" | |
SUPPORTED_FRAMEWORKS = [ | |
CPMPY_FRAMEWORK, | |
MINIZINC_FRAMEWORK, | |
ORTOOLS_FRAMEWORK, | |
] |