Spaces:
Runtime error
Runtime error
| # model settings | |
| model = dict( | |
| type='ImageClassifier', | |
| backbone=dict(type='EfficientNetV2', arch='xl'), | |
| neck=dict(type='GlobalAveragePooling'), | |
| head=dict( | |
| type='LinearClsHead', | |
| num_classes=1000, | |
| in_channels=1280, | |
| loss=dict(type='CrossEntropyLoss', loss_weight=1.0), | |
| topk=(1, 5), | |
| )) | |