Files
2026-07-13 13:30:25 +08:00

11 lines
173 B
Python
Executable File

from prml.nn.tensor.tensor import Tensor
class Constant(Tensor):
"""
constant tensor class
"""
def __init__(self, value):
super().__init__(value)