Skip to content

Commit

Permalink
correct filters
Browse files Browse the repository at this point in the history
  • Loading branch information
jgrss committed Dec 19, 2023
1 parent 425192c commit a90b042
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cultionet/models/cultio.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,11 +317,11 @@ def __init__(

self.temporal_encoder = LightweightTemporalAttentionEncoder(
in_channels=self.ds_num_bands,
hidden_size=filters,
hidden_size=self.filters,
num_head=8,
num_time=self.ds_num_time,
dropout=0.1,
d_model=filters * 2,
d_model=self.filters,
time_scaler=1_000,
num_classes_l2=self.num_classes,
num_classes_last=self.num_classes + 1,
Expand Down

0 comments on commit a90b042

Please sign in to comment.