{"library":"paramz","title":"paramz","description":"paramz is a parameterization framework for Python, providing mutable, constrained parameters with optimization capabilities (e.g., scipy-based L-BFGS-B). Current version is 0.9.6; release cadence is irregular with no recent updates since 2020.","language":"python","status":"maintenance","last_verified":"Mon Apr 27","install":{"commands":["pip install paramz"],"cli":null},"imports":["from paramz import Param","from paramz import ParamArray","from paramz import Model"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"from paramz import Param, Model\nimport numpy as np\n\nclass MyModel(Model):\n    def __init__(self):\n        super().__init__()\n        self.param = Param('x', np.array([1.0, 2.0]))\n\nm = MyModel()\nprint(m)\nprint(m.param.values)","lang":"python","description":"Create a model with a parameter and display its values.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}