Skip to content

[DOC,MNT] Documentation configuration clean-up #2911

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

Open
wants to merge 13 commits into
base: main
Choose a base branch
from
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
5 changes: 2 additions & 3 deletions aeon/classification/deep_learning/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,9 @@ class BaseDeepClassifier(BaseClassifier):
The name of the file of the last model, used
only if save_last_model_to_file is used

Arguments
---------
Attributes
----------
self.model = None

"""

_tags = {
Expand Down
4 changes: 2 additions & 2 deletions aeon/networks/_ae_abgru.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ def __init__(
def build_network(self, input_shape, **kwargs):
"""Construct a network and return its input and output layers.

Arguments
---------
Parameters
----------
input_shape : tuple of shape = (n_timepoints (m), n_channels (d))
The shape of the data fed into the input layer.
kwargs : dict
Expand Down
4 changes: 2 additions & 2 deletions aeon/networks/_ae_dcnn.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ def __init__(
def build_network(self, input_shape):
"""Construct a network and return its input and output layers.

Arguments
---------
Parameters
----------
input_shape : tuple of shape = (n_timepoints (m), n_channels (d))
The shape of the data fed into the input layer.

Expand Down
7 changes: 0 additions & 7 deletions docs/_templates/class_with_call.rst

This file was deleted.

8 changes: 8 additions & 0 deletions docs/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,14 @@ organisations:
- GitHub ID
- Organization
- Year
* - Balgopal Moharana
- {user}`lucifer4073`
- [Google Summer of Code](https://summerofcode.withgoogle.com)
- 2025
* - Jiarong Jin
- {user}`TinaJin0228`
- [Google Summer of Code](https://summerofcode.withgoogle.com)
- 2025
* - Divya Tiwari
- {user}`itsdivya1309`
- [Google Summer of Code](https://summerofcode.withgoogle.com)
Expand Down
7 changes: 4 additions & 3 deletions docs/changelogs/v1.2.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,18 @@ June 2025

## Highlights

- `aeon` v1.2.0 drops support for Python 3.9, Python 3.10-3.13 are the current supported versions.
- `aeon` v1.2.0 drops support for Python 3.9, Python 3.10-3.13 are the currently supported versions.
- Framework for whole-series anomaly detection has been implemented, and the module has been refactored
into `anomaly_detection.collection` and `anomaly_detection.series` submodules.
- `ProximityForect` and `ProximityTree` classifiers have been improved to support
- `ProximityForest` and `ProximityTree` classifiers have been improved to support
unequal length and multivariate series. The classifiers are also significantly faster.
- A new implementation for the `TD-MVDC` classifier
- The forecasting module has been enhanced with additional methods for direct and recursive forecasting,
as well as new algorithms such as ETS. This module is still in early development, and we expect
framework changes in future releases.
- The similarity search module has been significantly reworked to fit the `aeon` style
framework seen in other modules. See the module examples and documentation for more details.
- The start of a sub-package for self suprervised learning has been added in
- The start of an experimental sub-package for self supervised learning has been added in
`aeon.transformations.collection.self_supervised`, starting with the `TRILITE` algorithm.

## Anomaly Detection
Expand Down
Loading