├── .gitattributes ├── .github └── workflows │ ├── deploy_release.yaml │ ├── flake.yaml │ └── tests.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── CITATION.cff ├── LICENSE.md ├── README.md ├── docs ├── _templates │ └── autosummary │ │ └── module.rst ├── about.rst ├── api.rst ├── conf.py ├── index.rst └── requirements.txt ├── examples └── Minimal.ipynb ├── fides ├── __init__.py ├── constants.py ├── hessian_approximation.py ├── logging.py ├── minimize.py ├── stepback.py ├── steps.py ├── subproblem.py ├── trust_region.py └── version.py ├── pyproject.toml └── tests ├── __init.py ├── test_hessian_approximation.py ├── test_minimize.py └── test_subproblem.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fides-dev/fides/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/deploy_release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fides-dev/fides/HEAD/.github/workflows/deploy_release.yaml -------------------------------------------------------------------------------- /.github/workflows/flake.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fides-dev/fides/HEAD/.github/workflows/flake.yaml -------------------------------------------------------------------------------- /.github/workflows/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fides-dev/fides/HEAD/.github/workflows/tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fides-dev/fides/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fides-dev/fides/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fides-dev/fides/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fides-dev/fides/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fides-dev/fides/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fides-dev/fides/HEAD/README.md -------------------------------------------------------------------------------- /docs/_templates/autosummary/module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fides-dev/fides/HEAD/docs/_templates/autosummary/module.rst -------------------------------------------------------------------------------- /docs/about.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fides-dev/fides/HEAD/docs/about.rst -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fides-dev/fides/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fides-dev/fides/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fides-dev/fides/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fides-dev/fides/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /examples/Minimal.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fides-dev/fides/HEAD/examples/Minimal.ipynb -------------------------------------------------------------------------------- /fides/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fides-dev/fides/HEAD/fides/__init__.py -------------------------------------------------------------------------------- /fides/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fides-dev/fides/HEAD/fides/constants.py -------------------------------------------------------------------------------- /fides/hessian_approximation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fides-dev/fides/HEAD/fides/hessian_approximation.py -------------------------------------------------------------------------------- /fides/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fides-dev/fides/HEAD/fides/logging.py -------------------------------------------------------------------------------- /fides/minimize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fides-dev/fides/HEAD/fides/minimize.py -------------------------------------------------------------------------------- /fides/stepback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fides-dev/fides/HEAD/fides/stepback.py -------------------------------------------------------------------------------- /fides/steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fides-dev/fides/HEAD/fides/steps.py -------------------------------------------------------------------------------- /fides/subproblem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fides-dev/fides/HEAD/fides/subproblem.py -------------------------------------------------------------------------------- /fides/trust_region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fides-dev/fides/HEAD/fides/trust_region.py -------------------------------------------------------------------------------- /fides/version.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.8.0' 2 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fides-dev/fides/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_hessian_approximation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fides-dev/fides/HEAD/tests/test_hessian_approximation.py -------------------------------------------------------------------------------- /tests/test_minimize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fides-dev/fides/HEAD/tests/test_minimize.py -------------------------------------------------------------------------------- /tests/test_subproblem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fides-dev/fides/HEAD/tests/test_subproblem.py --------------------------------------------------------------------------------