Spaces:
Running
Running
File size: 903 Bytes
4a582ec |
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 42 43 44 45 |
_base_: 'ppmatting-hrnet_w48-distinctions.yml'
batch_size: 4
iters: 200000
train_dataset:
type: MattingDataset
dataset_root: data/PPM-100
train_file: train.txt
transforms:
- type: LoadImages
- type: LimitShort
max_short: 512
- type: RandomCrop
crop_size: [512, 512]
- type: RandomDistort
- type: RandomBlur
prob: 0.1
- type: RandomNoise
prob: 0.5
- type: RandomReJpeg
prob: 0.2
- type: RandomHorizontalFlip
- type: Normalize
mode: train
val_dataset:
type: MattingDataset
dataset_root: data/PPM-100
val_file: val.txt
transforms:
- type: LoadImages
- type: LimitShort
max_short: 512
- type: ResizeToIntMult
mult_int: 32
- type: Normalize
mode: val
get_trimap: False
model:
backbone:
type: HRNet_W18
# pretrained: https://bj.bcebos.com/paddleseg/dygraph/hrnet_w18_ssld.tar.gz
|