-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathai_negatives.py
74 lines (60 loc) · 2.44 KB
/
ai_negatives.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
64
65
66
67
68
69
70
71
72
73
74
#!/usr/bin/python3
def sort_dictionary_by_value(x) -> dict:
return {k: v for k, v in sorted(x.items(), key=lambda item: item[1], reverse=True)}
def group_ai_negatives(negatives) -> dict:
frequency = {}
item_map = {}
group = {}
for item in negatives:
# Processing item map
if item not in item_map:
item_map[item] = set()
item_map[item].update(negatives[item])
for child_item in negatives[item]:
if child_item not in item_map:
item_map[child_item] = set()
item_map[child_item].add(item)
# Processing frequency
for child_item in [item] + negatives[item]:
if child_item not in frequency:
frequency[child_item] = 0
frequency[child_item] += 1
frequency = sort_dictionary_by_value(frequency)
item = next(iter(frequency))
while frequency[item] > 0:
item_set = {x for x in item_map[item] if x not in group}
if len(item_set) > 0:
group[item] = item_set
frequency[item] = 0
for key in item_map[item]:
frequency[key] -= 1
frequency = sort_dictionary_by_value(frequency)
item = next(iter(frequency))
return group
if __name__ == "__main__":
# print(group_ai_negatives(
# negatives={
# 'famous star with cheese': ['no meat famous star'],
# 'no meat famous star': ['single famous star', 'famous star with cheese', 'no meat el diablo'],
# 'no meat el diablo': ['el diablo', 'single el diablo', 'no meat famous star'],
# 'el diablo': ['no meat el diablo']
# }
# ))
# positives_map = {}
# negatives_map = {}
# positives_map = {"a": {1, 3}}
# negatives_map = {}
# positives_map = {}
# negatives_map = {"c": {2, 4}}
positives_map = {"a": {1, 3}}
negatives_map = {"c": {2, 4}}
string = ""
if positives_map or negatives_map:
if positives_map and negatives_map:
string += "\nBoth `Positive Items` and `Negative Items` map is a collection of key/value pairs, "
elif positives_map and not negatives_map:
string += "\nThe `Positive Items` map is a collection of key/value pairs, "
elif not positives_map and negatives_map:
string += "\nThe `Negative Items` map is a collection of key/value pairs, "
string += f"key is an item name and value is list of item names. "
print(string)