File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -516,7 +516,8 @@ def ConstantData(
516
516
) -> TensorConstant :
517
517
"""Alias for ``pm.Data(..., mutable=False)``.
518
518
519
- Registers the ``value`` as a ``TensorConstant`` with the model.
519
+ Registers the ``value`` as a :class:`~aesara.tensor.TensorConstant` with the model.
520
+ For more information, please reference :class:`pymc.Data`.
520
521
"""
521
522
return Data (
522
523
name ,
@@ -538,7 +539,8 @@ def MutableData(
538
539
) -> SharedVariable :
539
540
"""Alias for ``pm.Data(..., mutable=True)``.
540
541
541
- Registers the ``value`` as a ``SharedVariable`` with the model.
542
+ Registers the ``value`` as a :class:`~aesara.compile.sharedvalue.SharedVariable`
543
+ with the model. For more information, please reference :class:`pymc.Data`.
542
544
"""
543
545
return Data (
544
546
name ,
You can’t perform that action at this time.
0 commit comments