(self, is_param:bool=True)
| 168 | return Tensor(UOp.unique_const(fill_value, dtype, device), **kwargs) |
| 169 | |
| 170 | def is_param_(self, is_param:bool=True) -> Tensor: |
| 171 | self.is_param = is_param |
| 172 | return self |
| 173 | |
| 174 | class train(ContextDecorator): |
| 175 | def __init__(self, mode:bool = True): self.mode = mode |