summaryrefslogtreecommitdiff
path: root/training/conf/datamodule/transform/lines.yaml
blob: 34816e1f5be091c0654d314d7688888d653b6a08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
embed_crop:
  _target_: text_recognizer.data.transforms.embed_crop.EmbedCrop
  augment: false

color_jitter:
  _target_: torchvision.transforms.ColorJitter
  brightness: [0.8, 1.6]

random_affine:
  _target_: torchvision.transforms.RandomAffine
  degrees: 1
  shear: [-30, 20]
  interpolation: BILINEAR
  fill: 0

random_perspective:
  _target_: torchvision.transforms.RandomPerspective
  distortion_scale: 0.15
  p: 0.5
  fill: 0

to_tensor:
  _target_: torchvision.transforms.ToTensor