Skip to content

Commit

Permalink
update configs.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
xuhongzuo committed Sep 6, 2023
1 parent 7561291 commit 84c6020
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deepod/models/time_series/tcned.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@


class TcnED(BaseDeepAD):
def __init__(self, seq_len=100, stride=1, epochs=10, batch_size=32, lr=1e-3,
rep_dim=32, hidden_dims=32, kernel_size=3, act='ReLU', bias=False, dropout=0.2,
def __init__(self, seq_len=100, stride=1, epochs=10, batch_size=32, lr=1e-4,
rep_dim=32, hidden_dims=32, kernel_size=3, act='LeakyReLU', bias=False, dropout=0.2,
epoch_steps=-1, prt_steps=10, device='cuda',
verbose=2, random_state=42):
super(TcnED, self).__init__(
Expand Down
8 changes: 8 additions & 0 deletions testbed/configs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ COUTA:
epochs: 20
batch_size: 64

TcnED:
epochs: 10
lr: 0.0001
rep_dim: 64
hidden_dims: 32

AnomalyTransformer:
lr: 0.0001
epochs: 10
Expand All @@ -53,6 +59,8 @@ TimesNet:
top_k: 5
num_kernels: 6



RoSAS:
epoch_steps: 16
epochs: 200
Expand Down

0 comments on commit 84c6020

Please sign in to comment.