Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 0 additions & 22 deletions docs/api/utilities.rst
Original file line number Diff line number Diff line change
Expand Up @@ -65,28 +65,6 @@ Non-negative least squares
.. autofunction:: nnls


Second Order Optimization
-------------------------

.. currentmodule:: optax.second_order

.. autosummary::
fisher_diag
hessian_diag
hvp

Fisher diagonal
~~~~~~~~~~~~~~~
.. autofunction:: fisher_diag

Hessian diagonal
~~~~~~~~~~~~~~~~
.. autofunction:: hessian_diag

Hessian vector product
~~~~~~~~~~~~~~~~~~~~~~
.. autofunction:: hvp


Tree
----
Expand Down
8 changes: 8 additions & 0 deletions optax/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Removed

- Removed deprecated `optax.second_order.hvp`, `optax.second_order.hessian_diag`,
and `optax.second_order.fisher_diag`. These were deprecated in 0.2.7 and
scheduled for removal in 0.2.9.

## [0.2.8] - 2026-03-20

### Changed
Expand Down
6 changes: 0 additions & 6 deletions optax/second_order/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,3 @@
# limitations under the License.
# ==============================================================================
"""The second order optimization sub-package."""

# pylint: disable=g-importing-member

from optax.second_order._deprecated import fisher_diag
from optax.second_order._deprecated import hessian_diag
from optax.second_order._deprecated import hvp
120 changes: 0 additions & 120 deletions optax/second_order/_deprecated.py

This file was deleted.

Loading