-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconstants.py
29 lines (24 loc) · 953 Bytes
/
constants.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
"""The constants of this project."""
# The path containing all the models to download
MODELS_CONFIGS_PATH = "./models_configs"
DEFAULT_MODELS_CONFIGS_PATH = "./models_configs"
DEFAULT_PROMPTS_PATH = "./prompts"
DEFAULT_RESULTS_PATH = "./results"
DEFAULT_DATASETS_PATH = "./datasets"
GITHUB_TOOL_URL = (
"https://raw.githubusercontent.com/Vincent-Stragier/"
"prompt_based_dataset_generation/"
"ac84a1a640a209bd2d1047ce1bf9cae62374e3d5/tools/tools.json"
)
URL_DATASET_A = (
"https://raw.githubusercontent.com/Vincent-Stragier/"
"prompt_based_dataset_generation/"
"ac84a1a640a209bd2d1047ce1bf9cae62374e3d5/datasets/results_prompts_0.json"
)
URL_DATASET_B = (
"https://raw.githubusercontent.com/Vincent-Stragier/"
"prompt_based_dataset_generation/"
"ac84a1a640a209bd2d1047ce1bf9cae62374e3d5/datasets/results_prompts_1.json"
)
PATH_DATASET_A = "./datasets/dataset_a.json"
PATH_DATASET_B = "./datasets/dataset_b.json"