Skip to content

Commit e6533df

Browse files
committed
Fix incorrect shape
1 parent 307b500 commit e6533df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

efax/_src/distributions/normal/normal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ class NormalVP(Samplable):
130130
@property
131131
@override
132132
def shape(self) -> Shape:
133-
return self.mean.shape[:-1]
133+
return self.mean.shape
134134

135135
@override
136136
@classmethod

0 commit comments

Comments
 (0)