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 7493d5b commit e3c4d87Copy full SHA for e3c4d87
pymc3/distributions/discrete.py
@@ -758,7 +758,7 @@ class Constant(Discrete):
758
"""
759
760
def __init__(self, c, *args, **kwargs):
761
- warnings.warn("Constant has been deprecated. We recommend using a Determinstic object instead.",
+ warnings.warn("Constant has been deprecated. We recommend using a Deterministic object instead.",
762
DeprecationWarning)
763
super(Constant, self).__init__(*args, **kwargs)
764
self.mean = self.median = self.mode = self.c = c = tt.as_tensor_variable(c)
0 commit comments