Home
last modified time | relevance | path

Searched defs:ParameterDict (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/pytorch/torch/nn/modules/
H A Dcontainer.py735 class ParameterDict(Module): class
899 def update(self, parameters: Union[Mapping[str, Any], "ParameterDict"]) -> None:
964 def __or__(self, other: "ParameterDict") -> "ParameterDict":
969 def __ror__(self, other: "ParameterDict") -> "ParameterDict":
974 def __ior__(self, other: "ParameterDict") -> Self:
/aosp_15_r20/external/pytorch/test/dynamo/
H A Dtest_modules.py380 class ParameterDict(torch.nn.Module): class