-
Notifications
You must be signed in to change notification settings - Fork 127
/
config.py
63 lines (52 loc) · 1.73 KB
/
config.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import json
import os
from src.utils.io import list_full_dir, list_name
from src.utils.logger import get_logger
def generate_config(trait_dir: str, output: str, verbose: int) -> None:
logger = get_logger(verbose)
layerlist = list_name(f"{trait_dir}/*")
path_list = list_full_dir(f"{trait_dir}/")
item_list = [list_name(items + "/*") for items in path_list]
# calculate weight
weight = []
for i in range(len(item_list)):
weight.append(int((100 / len(item_list[i]))))
for j in range(len(item_list[i])):
item_list[i][j] = item_list[i][j].split(".")[0]
weightlist = [] * len(layerlist)
for i in range(len(weight)):
x = 100 / weight[i]
temp1 = []
for _ in range(int(x)):
temp1.append(weight[i])
weightlist.append(temp1)
# generate json blob
finalized_layers = []
for x in range(len(layerlist)):
layer = {
"name": layerlist[x],
"values": item_list[x],
"trait_path": path_list[x],
"filename": item_list[x],
"weights": weightlist[x],
}
finalized_layers.append(layer)
config = {
"layers": finalized_layers,
"incompatibilities": [],
"baseURI": "TODO",
"name": "TODO",
"description": "TODO",
}
# ensure the directory exists for the output file
print(config)
try:
os.makedirs(os.path.dirname(output), exist_ok=True)
except OSError:
pass
with open(output, "w") as outfile:
json.dump(config, outfile, indent=4)
logger.info(f"Generated config file at {output}")
logger.warning(
"You'll need to manually update the baseURI, name, and description fields."
)