mirror of
https://github.com/open-mmlab/mmclassification.git
synced 2025-06-03 21:53:55 +08:00
11 lines
212 B
Python
11 lines
212 B
Python
# Copyright (c) OpenMMLab. All rights reserved.
|
|
|
|
from mmengine.structures import BaseDataElement
|
|
|
|
|
|
class MultiTaskDataSample(BaseDataElement):
|
|
|
|
@property
|
|
def tasks(self):
|
|
return self._data_fields
|