We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 131c829 commit 0a8d1d4Copy full SHA for 0a8d1d4
pymc3/exceptions.py
@@ -17,6 +17,7 @@
17
"IncorrectArgumentsError",
18
"TraceDirectoryError",
19
"ImputationWarning",
20
+ "ShapeWarning",
21
"ShapeError",
22
]
23
@@ -41,6 +42,12 @@ class ImputationWarning(UserWarning):
41
42
pass
43
44
45
+class ShapeWarning(UserWarning):
46
+ """ Something that could lead to shape problems down the line. """
47
+
48
+ pass
49
50
51
class ShapeError(Exception):
52
"""Error that the shape of a variable is incorrect."""
53
0 commit comments