Skip to content

Commit

Permalink
decoder added, similiarity script chek updated
Browse files Browse the repository at this point in the history
  • Loading branch information
AndriiZelenko committed Jun 13, 2024
1 parent 3c7671f commit 7048516
Show file tree
Hide file tree
Showing 5 changed files with 585 additions and 408 deletions.
21 changes: 18 additions & 3 deletions mmpie1/configs/model/detr.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@



num_queries: 100


FeatureExtractorEncoder:
Backbone: resnet50
Pretrained: True
Expand All @@ -11,12 +14,24 @@ TransformerEncoder:
temperature: 10000
pos_encoding_type : 'sine'
embedded_dimension: 256
num_encoder_layers: 6
num_layers: 6
num_attention_heads: 8
ffn_dimension: 2048
dropout_rate: 0.1
attention_dropout_rate: 0.1
activation_dropout_rate: 0.1
layer_dropout_rate: 0.1
init_std: 0.02
xavier_std: 1.0

TransformerDecoder:
embedded_dimension: 256
num_layers: 6
num_attention_heads: 8
encoder_ffn_dimension: 2048
ffn_dimension: 2048
dropout_rate: 0.1
attention_dropout_rate: 0.1
activation_droput_rate: 0.1
activation_dropout_rate: 0.1
layer_dropout_rate: 0.1
init_std: 0.02
xavier_std: 1.0
Expand Down
Loading

0 comments on commit 7048516

Please sign in to comment.