blob: f1c73d03c6806e6f78bc35ce1039d353d54901b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
_target_: text_recognizer.network.mammut.MaMMUT
encoder:
_target_: text_recognizer.network.vit.Vit
image_height: 56
image_width: 1024
patch_height: 56
patch_width: 8
dim: &dim 512
encoder:
_target_: text_recognizer.network.transformer.encoder.Encoder
dim: *dim
heads: 12
dim_head: 64
ff_mult: 4
depth: 6
dropout_rate: 0.1
channels: 1
image_attn_pool:
_target_: text_recognizer.network.transformer.attention.Attention
dim: *dim
heads: 8
causal: false
dim_head: 64
ff_mult: 4
dropout_rate: 0.0
use_flash: true
norm_context: true
rotary_emb: null
decoder:
_target_: text_recognizer.network.transformer.decoder.Decoder
dim: *dim
ff_mult: 4
heads: 12
dim_head: 64
depth: 6
dropout_rate: 0.1
dim: *dim
dim_latent: *dim
num_tokens: 58
pad_index: 3
num_image_queries: 256
|