-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
implemented Custom model for experimentation with AVES models - also …
…changing input tensor from 3D to 2D due to retraining only last class. layers
- Loading branch information
Ludwigvsch
committed
Aug 1, 2024
1 parent
4b455df
commit 3cf111d
Showing
11 changed files
with
28,173 additions
and
91 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
{ | ||
"extractor_mode": "group_norm", | ||
"extractor_conv_layer_config": [ | ||
[ | ||
512, | ||
10, | ||
5 | ||
], | ||
[ | ||
512, | ||
3, | ||
2 | ||
], | ||
[ | ||
512, | ||
3, | ||
2 | ||
], | ||
[ | ||
512, | ||
3, | ||
2 | ||
], | ||
[ | ||
512, | ||
3, | ||
2 | ||
], | ||
[ | ||
512, | ||
2, | ||
2 | ||
], | ||
[ | ||
512, | ||
2, | ||
2 | ||
] | ||
], | ||
"extractor_conv_bias": false, | ||
"encoder_embed_dim": 768, | ||
"encoder_projection_dropout": 0.1, | ||
"encoder_pos_conv_kernel": 128, | ||
"encoder_pos_conv_groups": 16, | ||
"encoder_num_layers": 12, | ||
"encoder_num_heads": 12, | ||
"encoder_attention_dropout": 0.1, | ||
"encoder_ff_interm_features": 3072, | ||
"encoder_ff_interm_dropout": 0.0, | ||
"encoder_dropout": 0.1, | ||
"encoder_layer_norm_first": false, | ||
"encoder_layer_drop": 0.05 | ||
} |
Oops, something went wrong.