Dali工具箱🕶4—— DD——DaliDetetion

"更好的帮你完成深度学习任务"

Posted by fuhao7i on March 20, 2021

0. 配置文件 configs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
model= dict(
    type= 'Classification' # 或者是‘_base/Faster_RCNN.py’
    backbone= dict(
        'Conv'= dict(input_channels= 3, out_channels=16, stride=1, padding=1),
        'Conv'= dict(16, 64, 1, (2, 2)),
        output_indices= (1, 2),
    )
    classificer= dict(
        'Linear'= dict(768000, 1024),
        'Linear'= dict(1024, )
    )

)