Skip to content

Commit

Permalink
update base
Browse files Browse the repository at this point in the history
  • Loading branch information
aadya940 committed Jun 21, 2024
1 parent f0895e1 commit 1cc049c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions aeon/networks/_ae_bgru.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
"""Implement Auto-Encoder based on Bidirectional GRUs."""

from aeon.networks.base import BaseDeepNetwork
from aeon.networks.base import BaseDeepLearningNetwork


class AEBiGRUNetwork(BaseDeepNetwork):
class AEBiGRUNetwork(BaseDeepLearningNetwork):
"""
A class to implement an Auto-Encoder based on Bidirectional GRUs.
Expand All @@ -22,7 +22,7 @@ class AEBiGRUNetwork(BaseDeepNetwork):
Flag to choose whether the latent space is an MTS or Euclidean space.
"""

_tags = {"auto-encoder": True}
_config["auto-encoder"]=True

def __init__(
self,
Expand Down

0 comments on commit 1cc049c

Please sign in to comment.