Skip to content

Commit 105e5a1

Browse files
committed
- Enhancements for analysis and plotting
1 parent bedf933 commit 105e5a1

File tree

3 files changed

+56
-7
lines changed

3 files changed

+56
-7
lines changed

incal/experiments/analyze.py

+21
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
from typing import List
66

7+
import numpy as np
78
import pickledb
89
from pywmi import RejectionEngine, nested_to_smt, import_domain
910
from pywmi.domain import Density, Domain
@@ -61,16 +62,33 @@ def get_bound(experiment):
6162
def get_db_synthetic(experiment):
6263
return get_synthetic_db(os.path.dirname(experiment.parameters.original_values["domain"]))
6364

65+
@staticmethod
66+
def original_k(experiment):
67+
db = Properties.get_db_synthetic(experiment)
68+
name = Properties.to_synthetic_name(experiment.imported_from_file)
69+
return db.get(name)["generation"]["k"]
70+
6471
@staticmethod
6572
def original_h(experiment):
6673
db = Properties.get_db_synthetic(experiment)
6774
name = Properties.to_synthetic_name(experiment.imported_from_file)
6875
return db.get(name)["generation"]["h"]
6976

77+
@staticmethod
78+
def original_l(experiment):
79+
db = Properties.get_db_synthetic(experiment)
80+
name = Properties.to_synthetic_name(experiment.imported_from_file)
81+
return db.get(name)["generation"]["l"]
82+
7083
@staticmethod
7184
def executed(experiment):
7285
return 1 if experiment.results.duration is not None else 0
7386

87+
@staticmethod
88+
def positive_ratio(experiment):
89+
labels = np.load(experiment.parameters.original_values["labels"])
90+
return sum(labels) / len(labels)
91+
7492
@staticmethod
7593
def accuracy_approx(experiment):
7694
key = "accuracy_approx:{}".format(experiment.imported_from_file)
@@ -101,7 +119,10 @@ def accuracy_approx(experiment):
101119
def register_derived(experiment):
102120
experiment.register_derived("accuracy_approx", Properties.accuracy_approx)
103121
experiment.register_derived("original_h", Properties.original_h)
122+
experiment.register_derived("original_l", Properties.original_l)
123+
experiment.register_derived("original_k", Properties.original_k)
104124
experiment.register_derived("executed", Properties.executed)
125+
experiment.register_derived("pos_rate", Properties.positive_ratio)
105126
return experiment
106127

107128

incal/util/plot.py

+16-3
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def gen_markers(self):
5151
return [next(iterator) for _ in range(len(self.data))]
5252

5353
def render(self, ax, lines=True, log_x=True, log_y=True, label_x=None, label_y=None, legend_pos=None,
54-
x_ticks=None):
54+
x_ticks=None, y_ticks=None):
5555

5656
plots = []
5757
colors = self.gen_colors()
@@ -65,6 +65,7 @@ def render(self, ax, lines=True, log_x=True, log_y=True, label_x=None, label_y=N
6565
plot_format = "scatter"
6666
show_error = True
6767
steps_x = None
68+
steps_y = None
6869

6970
cache = None
7071
for plot_option in self.plot_options or ():
@@ -86,8 +87,18 @@ def render(self, ax, lines=True, log_x=True, log_y=True, label_x=None, label_y=N
8687
label_y = plot_option
8788
elif cache == "steps_x":
8889
steps_x = int(plot_option)
90+
elif cache == "steps_y":
91+
steps_y = int(plot_option)
8992
elif cache == "plot_extra":
9093
plot_extra = plot_option
94+
elif cache == "x_lim":
95+
parts = plot_option.split(":")
96+
limits = (float(parts[0]), float(parts[1]))
97+
self.x_lim(limits)
98+
elif cache == "y_lim":
99+
parts = plot_option.split(":")
100+
limits = (float(parts[0]), float(parts[1]))
101+
self.y_lim(limits)
91102
cache = None
92103

93104
min_x, max_x, min_y, max_y = numpy.infty, -numpy.infty, numpy.infty, -numpy.infty
@@ -143,13 +154,15 @@ def render(self, ax, lines=True, log_x=True, log_y=True, label_x=None, label_y=N
143154
if label_x is not None:
144155
ax.set_xlabel(label_x)
145156

146-
# ax.set_ylim((0, 2))
147-
148157
if steps_x is not None:
149158
x_ticks = numpy.linspace(min_x, max_x, steps_x)
159+
if steps_y is not None:
160+
y_ticks = numpy.linspace(min_y, max_y, steps_y)
150161
# x_ticks = [1, 2, 3]
151162
if x_ticks is not None:
152163
ax.xaxis.set_ticks(x_ticks)
164+
if y_ticks is not None:
165+
ax.yaxis.set_ticks(y_ticks)
153166

154167
def plot(self, filename=None, size=None, **kwargs):
155168
fig = plt.figure()

plotting_commands.txt

+19-4
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,25 @@ incal-experiments smt-lib-benchmark analyze --dirs remote_res/smt_lib_benchmark/
1212

1313
# --- Exploring H
1414
# Duration over increasing original h
15-
incal-experiments smt-lib-benchmark analyze --dirs res/synthetic/output/hh_plain res/synthetic/output/hh_mvn res/synthetic/output/hh_dt res/synthetic/output/hh_dt_mvn --res_path res show -p -t duration -g original_h selection_strategy learner -o ly "Duration (s)" lx "Number of inequalities in ground truth (h)"
15+
incal-experiments smt-lib-benchmark analyze --dirs res/synthetic/output/hh_plain res/synthetic/output/hh_mvn res/synthetic/output/hh_dt res/synthetic/output/hh_dt_mvn res/synthetic/output/hh_dt_mn --res_path res show -p -t duration -g original_h selection_strategy learner -o ly "Duration (s)" lx "Number of inequalities in ground truth (h)" -w ../incal_mlj/figures/time_over_oh_synthetic.png
1616
# Learned h over original h
17-
incal-experiments smt-lib-benchmark analyze --dirs res/synthetic/output/hh_plain res/synthetic/output/hh_mvn res/synthetic/output/hh_dt res/synthetic/output/hh_dt_mvn --res_path res show -p -t h -g original_h selection_strategy learner -o ly "Number of learned hyperplanes (h)" lx "Number of inequalities in ground truth (h)"
17+
incal-experiments smt-lib-benchmark analyze --dirs res/synthetic/output/hh_plain res/synthetic/output/hh_mvn res/synthetic/output/hh_dt res/synthetic/output/hh_dt_mvn res/synthetic/output/hh_dt_mn --res_path res show -p -t h -g original_h selection_strategy learner -o ly "Number of learned hyperplanes (h)" lx "Number of inequalities in ground truth (h)" -w ../incal_mlj/figures/h_over_oh_synthetic.png
1818
# Duration over learned h
19-
incal-experiments smt-lib-benchmark analyze --dirs res/synthetic/output/hh_plain res/synthetic/output/hh_mvn res/synthetic/output/hh_dt res/synthetic/output/hh_dt_mvn --res_path res show -p -t duration -g h selection_strategy learner -o ly "Duration (s)" lx "Number of learned inequalities (h)"
19+
incal-experiments smt-lib-benchmark analyze --dirs res/synthetic/output/hh_plain res/synthetic/output/hh_mvn res/synthetic/output/hh_dt res/synthetic/output/hh_dt_mvn res/synthetic/output/hh_dt_mn --res_path res show -p -t duration -g h selection_strategy learner -o ly "Duration (s)" lx "Number of learned inequalities (h)" -w ../incal_mlj/figures/time_over_h_synthetic.png
2020
# Accuracy over learned h
21-
incal-experiments smt-lib-benchmark analyze --dirs res/synthetic/output/hh_plain res/synthetic/output/hh_mvn res/synthetic/output/hh_dt res/synthetic/output/hh_dt_mvn --res_path res show -p -t accuracy_approx -g h selection_strategy learner -o ly "Accuracy on test set" lx "Number of learned inequalities (h)"
21+
incal-experiments smt-lib-benchmark analyze --dirs res/synthetic/output/hh_plain res/synthetic/output/hh_mvn res/synthetic/output/hh_dt res/synthetic/output/hh_dt_mvn res/synthetic/output/hh_dt_mn --res_path res show -p -t accuracy_approx -g h selection_strategy learner -o ly "Accuracy on test set" lx "Number of learned inequalities (h)" y_lim "0.5:1" legend_pos "lower center" -w ../incal_mlj/figures/acc_over_h_synthetic.png
22+
23+
# Duration over positive ratio
24+
incal-experiments smt-lib-benchmark analyze --dirs res/synthetic/output/hh_plain --res_path res show -p -t duration -g pos_rate__batch0.1 h -o ly "Duration (s)" lx "Positive rate" -e "k!=2" "h<5" -w ../incal_mlj/figures/time_over_pos_rate.png
25+
26+
27+
# --- Exploring L
28+
# Timeouts over increasing original l
29+
incal-experiments smt-lib-benchmark analyze --dirs res/synthetic/output/ll_plain --res_path res show -p -t executed -g original_l learner -o error 0 y_lim 0:1 lx "Number of literals in ground truth" ly "Fraction of experiments completed within time limit" steps_x 5 -w ../incal_mlj/figures/ex_over_l_synthetic.png
30+
31+
32+
# --- Exploring K
33+
# Timeouts over increasing original l
34+
incal-experiments smt-lib-benchmark analyze --dirs res/synthetic/output/kk_plain res/synthetic/output/kk_dt_mvn --res_path res show -p -t executed -g original_k learner -o error 0 y_lim 0:1 lx "Number of clauses in ground truth" ly "Fraction of experiments completed within time limit" steps_x 5 -w ../incal_mlj/figures/ex_over_k_synthetic.png
35+
# Learned k over original k
36+
incal-experiments smt-lib-benchmark analyze --dirs res/synthetic/output/kk_plain res/synthetic/output/kk_dt_mvn --res_path res show -p -t k -g original_k selection_strategy learner -o ly "Number of learned clauses (k)" lx "Number of clauses in ground truth (k)" -e "executed=0" -w ../incal_mlj/figures/k_over_original_k_synthetic.png

0 commit comments

Comments
 (0)