Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix misspecified version reference #3228

Merged
merged 1 commit into from
Apr 2, 2024
Merged
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
2 changes: 1 addition & 1 deletion docs/source/contrib/handlers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ Time profilers [deprecated]
Loggers [deprecated]
--------------------

.. deprecated:: 0.5.1
.. deprecated:: 0.5.0
Loggers moved to :ref:`Loggers`.
4 changes: 2 additions & 2 deletions docs/source/contrib/metrics.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ ignite.contrib.metrics
Contrib module metrics [deprecated]
-----------------------------------

.. deprecated:: 0.5.1
.. deprecated:: 0.5.0
All metrics moved to :ref:`Complete list of metrics`.


Regression metrics [deprecated]
--------------------------------

.. deprecated:: 0.5.1
.. deprecated:: 0.5.0
All metrics moved to :ref:`Complete list of metrics`.
6 changes: 3 additions & 3 deletions ignite/engine/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def supervised_training_step(
Added `model_transform` to transform model's output
.. versionchanged:: 0.4.13
Added `model_fn` to customize model's application on the sample
.. versionchanged:: 0.5.1
.. versionchanged:: 0.5.0
Added support for ``mps`` device
"""

Expand Down Expand Up @@ -551,7 +551,7 @@ def output_transform_fn(x, y, y_pred, loss):
Added ``model_transform`` to transform model's output
.. versionchanged:: 0.4.13
Added `model_fn` to customize model's application on the sample
.. versionchanged:: 0.5.1
.. versionchanged:: 0.5.0
Added support for ``mps`` device
"""

Expand Down Expand Up @@ -799,7 +799,7 @@ def create_supervised_evaluator(
Added ``model_transform`` to transform model's output
.. versionchanged:: 0.4.13
Added `model_fn` to customize model's application on the sample
.. versionchanged:: 0.5.1
.. versionchanged:: 0.5.0
Added support for ``mps`` device
"""
device_type = device.type if isinstance(device, torch.device) else device
Expand Down
Loading