ripple-down-rules 0.1.1__py3-none-any.whl → 0.1.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ripple_down_rules/rdr.py +2 -2
- {ripple_down_rules-0.1.1.dist-info → ripple_down_rules-0.1.2.dist-info}/METADATA +1 -1
- {ripple_down_rules-0.1.1.dist-info → ripple_down_rules-0.1.2.dist-info}/RECORD +6 -6
- {ripple_down_rules-0.1.1.dist-info → ripple_down_rules-0.1.2.dist-info}/WHEEL +0 -0
- {ripple_down_rules-0.1.1.dist-info → ripple_down_rules-0.1.2.dist-info}/licenses/LICENSE +0 -0
- {ripple_down_rules-0.1.1.dist-info → ripple_down_rules-0.1.2.dist-info}/top_level.txt +0 -0
ripple_down_rules/rdr.py
CHANGED
@@ -163,9 +163,9 @@ class RippleDownRules(SubclassJSONSerializer, ABC):
|
|
163
163
|
Update the figures of the classifier.
|
164
164
|
"""
|
165
165
|
if isinstance(self, GeneralRDR):
|
166
|
-
for i, (
|
166
|
+
for i, (rdr_name, rdr) in enumerate(self.start_rules_dict.items()):
|
167
167
|
if not rdr.fig:
|
168
|
-
rdr.fig = plt.figure(f"Rule {i}: {
|
168
|
+
rdr.fig = plt.figure(f"Rule {i}: {rdr_name}")
|
169
169
|
draw_tree(rdr.start_rule, rdr.fig)
|
170
170
|
else:
|
171
171
|
if not self.fig:
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: ripple_down_rules
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.2
|
4
4
|
Summary: Implements the various versions of Ripple Down Rules (RDR) for knowledge representation and reasoning.
|
5
5
|
Author-email: Abdelrhman Bassiouny <abassiou@uni-bremen.de>
|
6
6
|
License: GNU GENERAL PUBLIC LICENSE
|
@@ -4,7 +4,7 @@ ripple_down_rules/experts.py,sha256=Xz1U1Tdq7jrFlcVuSusaMB241AG9TEs7q101i59Xijs,
|
|
4
4
|
ripple_down_rules/failures.py,sha256=E6ajDUsw3Blom8eVLbA7d_Qnov2conhtZ0UmpQ9ZtSE,302
|
5
5
|
ripple_down_rules/helpers.py,sha256=AhqerAQoCdSovJ7SdQrNtAI_hYagKpLsy2nJQGA0bl0,1062
|
6
6
|
ripple_down_rules/prompt.py,sha256=z6KddZOsNiStptgCRNh2OVHHuH6Ooa2f-nsrgJH1qJ8,6311
|
7
|
-
ripple_down_rules/rdr.py,sha256=
|
7
|
+
ripple_down_rules/rdr.py,sha256=NXVYIflUxcDzC5DDrK-l_ZT-sBmUV1ZgkznshSsJZYc,43508
|
8
8
|
ripple_down_rules/rdr_decorators.py,sha256=8SclpceI3EtrsbuukWJu8HGLh7Q1ZCgYGLX-RPlG-w0,2018
|
9
9
|
ripple_down_rules/rules.py,sha256=aM3Im4ePuFDlkuD2EKRtiVmYgoQ_sxlwcbzrDKqXAfs,14578
|
10
10
|
ripple_down_rules/utils.py,sha256=9gPnRWlLye7FettI2QRWJx8oU9z3ckwdO5jopXK8b-8,24290
|
@@ -13,8 +13,8 @@ ripple_down_rules/datastructures/callable_expression.py,sha256=ac2TaMr0hiRX928GM
|
|
13
13
|
ripple_down_rules/datastructures/case.py,sha256=3Pl07jmYn94wdCVTaRZDmBPgyAsN1TjebvrE6-68MVU,13606
|
14
14
|
ripple_down_rules/datastructures/dataclasses.py,sha256=AI-wqNy8y9QPg6lov0P-c5b8JXemuM4X62tIRhW-Gqs,4231
|
15
15
|
ripple_down_rules/datastructures/enums.py,sha256=l0Eu-TeJ6qB2XHoJycXmUgLw-3yUebQ8SsEbW8bBZdM,4543
|
16
|
-
ripple_down_rules-0.1.
|
17
|
-
ripple_down_rules-0.1.
|
18
|
-
ripple_down_rules-0.1.
|
19
|
-
ripple_down_rules-0.1.
|
20
|
-
ripple_down_rules-0.1.
|
16
|
+
ripple_down_rules-0.1.2.dist-info/licenses/LICENSE,sha256=ixuiBLtpoK3iv89l7ylKkg9rs2GzF9ukPH7ynZYzK5s,35148
|
17
|
+
ripple_down_rules-0.1.2.dist-info/METADATA,sha256=3-IzXML9BpPYbOlnZmg0eOXRJvMcFH7efnNecCOZ-XE,42518
|
18
|
+
ripple_down_rules-0.1.2.dist-info/WHEEL,sha256=pxyMxgL8-pra_rKaQ4drOZAegBVuX-G_4nRHjjgWbmo,91
|
19
|
+
ripple_down_rules-0.1.2.dist-info/top_level.txt,sha256=VeoLhEhyK46M1OHwoPbCQLI1EifLjChqGzhQ6WEUqeM,18
|
20
|
+
ripple_down_rules-0.1.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|