Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some tests, vnnlib error fix #206

Merged
merged 9 commits into from
Jan 11, 2024
Prev Previous commit
Next Next commit
Revert "Fix test"
This reverts commit 8e2e569.
  • Loading branch information
mldiego committed Dec 13, 2023
commit eb75ea13fd7c3e0719611989a89029d587f24dd1
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
inputVol(:, :, 3) = [0 0 2 2 1; 0 2 1 1 2; 0 2 0 0 1; 0 2 1 0 1; 1 2 1 0 0]; % channel 3 input matrix

L = AveragePooling2DLayer([3 3], [2 2], [0 0 0 0]);
y = L.evaluate(inputVol);
y = L.evaluate(single(inputVol));

for i=1:3
for j=1:2
Expand Down