# Function Differences with torch.nn.ParameterList ## torch.nn.ParameterList ```python class torch.nn.ParameterList(parameters=None) ``` For more information, see [torch.nn.ParameterList](https://pytorch.org/docs/1.5.0/nn.html#torch.nn.ParameterList). ## mindspore.ParameterTuple ```python class mindspore.ParameterTuple() ``` For more information, see [mindspore.ParameterTuple](https://mindspore.cn/docs/en/r2.0.0-alpha/api_python/mindspore/mindspore.ParameterTuple.html#mindspore.ParameterTuple). ## Differences PyTorch: Stores parameters of network into a list. MindSpore:Stores parameters of network into a tuple.