qubvel-hf HF staff commited on
Commit
b6de027
1 Parent(s): 98b0177

Push transform using huggingface_hub.

Browse files
Files changed (1) hide show
  1. albumentations_config_train.json +73 -0
albumentations_config_train.json ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "__version__": "1.4.8",
3
+ "transform": {
4
+ "__class_fullname__": "__main__.HubComposeMixin",
5
+ "p": 1.0,
6
+ "transforms": [
7
+ {
8
+ "__class_fullname__": "RandomCrop",
9
+ "always_apply": false,
10
+ "p": 1.0,
11
+ "height": 256,
12
+ "width": 256
13
+ },
14
+ {
15
+ "__class_fullname__": "HorizontalFlip",
16
+ "always_apply": false,
17
+ "p": 0.5
18
+ },
19
+ {
20
+ "__class_fullname__": "RandomBrightnessContrast",
21
+ "always_apply": false,
22
+ "p": 0.5,
23
+ "brightness_limit": [
24
+ -0.2,
25
+ 0.2
26
+ ],
27
+ "contrast_limit": [
28
+ -0.2,
29
+ 0.2
30
+ ],
31
+ "brightness_by_max": true
32
+ },
33
+ {
34
+ "__class_fullname__": "RGBShift",
35
+ "always_apply": false,
36
+ "p": 0.5,
37
+ "r_shift_limit": [
38
+ -20,
39
+ 20
40
+ ],
41
+ "g_shift_limit": [
42
+ -20,
43
+ 20
44
+ ],
45
+ "b_shift_limit": [
46
+ -20,
47
+ 20
48
+ ]
49
+ },
50
+ {
51
+ "__class_fullname__": "Normalize",
52
+ "always_apply": false,
53
+ "p": 1.0,
54
+ "mean": [
55
+ 0.485,
56
+ 0.456,
57
+ 0.406
58
+ ],
59
+ "std": [
60
+ 0.229,
61
+ 0.224,
62
+ 0.225
63
+ ],
64
+ "max_pixel_value": 255.0,
65
+ "normalization": "standard"
66
+ }
67
+ ],
68
+ "bbox_params": null,
69
+ "keypoint_params": null,
70
+ "additional_targets": {},
71
+ "is_check_shapes": true
72
+ }
73
+ }