Skip to content

Commit

Permalink
fix two moons simulated dtype
Browse files Browse the repository at this point in the history
  • Loading branch information
LarsKue committed Jun 18, 2024
1 parent 27f99cd commit 320f1ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_two_moons/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def contexts():
return dict(r=r, alpha=alpha)

def parameters():
theta = np.random.uniform(-1.0, 1.0, size=2)
theta = np.random.uniform(-1.0, 1.0, size=2).astype(np.float32)

return dict(theta=theta)

Expand Down

0 comments on commit 320f1ae

Please sign in to comment.