Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
caisar
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
caisar
Commits
8d2fb49e
Commit
8d2fb49e
authored
2 years ago
by
Michele Alberti
Browse files
Options
Downloads
Patches
Plain Diff
[tests] Add test case for interpretion on dataset.
parent
a9b607d0
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/interpretation_dataset.t
+49
-0
49 additions, 0 deletions
tests/interpretation_dataset.t
with
49 additions
and
0 deletions
tests/interpretation_dataset.t
0 → 100644
+
49
−
0
View file @
8d2fb49e
Test
interpret
on
mnist
$
cat
-
>
dataset
.
csv
<<
EOF
>
1
,
0.0
,
1.0
,
0.784313725
,
0.019607843
,
0.776470588
>
0
,
1.0
,
0.0
,
0.019607843
,
0.776470588
,
0.784313725
>
EOF
$
caisar
interpret
-
L
.
--
format
whyml
-
2
>&
1
<<
EOF
|
./
filter_tmpdir
.
sh
>
theory
T
>
use
ieee_float
.
Float64
>
use
bool
.
Bool
>
use
int
.
Int
>
use
Vector
>
use
Tensor
>
use
Classifier
>
use
Dataset
>
>
type
image
=
tensor
t
>
type
label_
=
int
>
>
predicate
valid_image
(
i:
image
)
=
>
forall
v:
index
.
valid_index
i
v
->
(
0.0
:
t
)
.<=
i
#v .<= (1.0: t)
>
>
predicate
valid_label
(
l:
label_
)
=
0
<=
l
<=
1
>
>
predicate
advises
(
c:
classifier
)
(
i:
image
)
(
l:
label_
)
=
>
valid_label
l
->
>
forall
j:
int
.
valid_label
j
/\
j
<>
l
->
(
c@@i
)[
l
]
.>
(
c@@i
)[
j
]
>
>
predicate
bounded_by_epsilon
(
i:
image
)
(
eps:
t
)
=
>
forall
v:
index
.
valid_index
i
v
->
.-
eps
.<=
i
#v .<= eps
>
>
predicate
robust_around
(
c:
classifier
)
(
eps:
t
)
(
i:
image
)
(
l:
label_
)
=
>
forall
perturbed_image:
image
.
>
valid_image
perturbed_image
->
>
equal_shape
i
perturbed_image
->
>
let
p
=
perturbed_image
-
i
in
>
bounded_by_epsilon
p
eps
->
>
advises
c
perturbed_image
l
>
>
predicate
robust
(
c:
classifier
)
(
d:
dataset
image
label_
)
(
eps:
t
)
=
>
Dataset
.
L
.
forall_
d
(
robust_around
c
eps
)
>
>
goal
G:
>
let
classifier
=
read_classifier
"
TestNetwork.nnet
"
NNet
in
>
let
dataset
=
read_dataset
"
dataset.csv
"
CSV
in
>
let
eps
=
(
0.375
:
t
)
in
>
robust
classifier
dataset
eps
>
end
>
EOF
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment