Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
diffusers
Commits
6f88cc92
Commit
6f88cc92
authored
Jun 07, 2022
by
Patrick von Platen
Browse files
adapt final unpreciseness
parent
b76eea04
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
tests/test_modeling_utils.py
tests/test_modeling_utils.py
+3
-3
No files found.
tests/test_modeling_utils.py
View file @
6f88cc92
...
...
@@ -160,8 +160,8 @@ class SamplerTesterMixin(unittest.TestCase):
assert
image
.
shape
==
(
1
,
3
,
256
,
256
)
image_slice
=
image
[
0
,
-
1
,
-
3
:,
-
3
:].
cpu
()
import
ipdb
;
ipdb
.
set_trace
(
)
assert
(
image_slice
-
torch
.
tensor
([[
-
0.0598
,
-
0.0611
,
-
0.0506
],
[
-
0.0726
,
0.0220
,
0.0103
],
[
-
0.0723
,
-
0.1310
,
-
0.2458
]])
).
abs
().
sum
()
<
1e-
3
expected_slice
=
torch
.
tensor
([
-
0.1636
,
-
0.1765
,
-
0.1968
,
-
0.1338
,
-
0.1432
,
-
0.1622
,
-
0.1793
,
-
0.2001
,
-
0.2280
]
)
assert
(
image_slice
.
flatten
()
-
expected_slice
).
abs
().
max
()
<
1e-
2
def
test_sample_fast
(
self
):
# 1. Load models
...
...
@@ -201,7 +201,7 @@ class SamplerTesterMixin(unittest.TestCase):
assert
image
.
shape
==
(
1
,
3
,
256
,
256
)
image_slice
=
image
[
0
,
-
1
,
-
3
:,
-
3
:].
cpu
()
expected_slice
=
torch
.
tensor
([
-
0.0304
,
-
0.1895
,
-
0.2436
,
-
0.9837
,
-
0.5422
,
0.1931
,
-
0.8175
,
0.0862
,
-
0.7783
])
assert
(
image_slice
.
flatten
()
-
expected_slice
).
abs
().
sum
()
<
1e-
3
assert
(
image_slice
.
flatten
()
-
expected_slice
).
abs
().
max
()
<
1e-
2
class
PipelineTesterMixin
(
unittest
.
TestCase
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment