-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMakefile
47 lines (36 loc) · 1.46 KB
/
Makefile
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
.PHONY: pysyrenn_coverage start_server acas_lines_experiment \
integrated_gradients_experiment linearity_hypothesis_experiment \
exactline_experiments toy_examples_experiment acas_planes_experiment \
model_checking_experiment plane_experiments \
all_experiments
pysyrenn_coverage:
bazel test //pysyrenn/...
bazel run coverage_report
start_server:
bazel run syrenn_server:server --define BAZEL_PYTHON_ONLY_WARN=true
# Experiments from [1]
acas_lines_experiment:
@echo "Running the ACAS Xu Lines experiment"
bazel run experiments:acas_lines
integrated_gradients_experiment:
@echo "Running the Integrated Gradinets experiment"
bazel run experiments:integrated_gradients
linearity_hypothesis_experiment:
@echo "Running the Linearity Hypothesis experiment"
bazel run experiments:linearity_hypothesis
exactline_experiments: acas_lines_experiment integrated_gradients_experiment \
linearity_hypothesis_experiment
# Experiments from [2]
toy_examples_experiment:
@echo "Running the Toy Examples experiment"
bazel run experiments:toy_examples
acas_planes_experiment:
@echo "Running the ACAS Xu Planes experiment"
bazel run experiments:acas_planes
model_checking_experiment:
@echo "Running the Bounded Model Checking experiment"
bazel run experiments:model_checking
plane_experiments: toy_examples_experiment acas_planes_experiment \
model_checking_experiment
# Run experiments from [1] and [2]
all_experiments: exactline_experiments plane_experiments