Skip to content

ding.utils.type_helper

ding.utils.type_helper

Full Source Code

../ding/utils/type_helper.py

1from collections import namedtuple 2from typing import List, Tuple, TypeVar 3 4SequenceType = TypeVar('SequenceType', List, Tuple, namedtuple) 5Tensor = TypeVar('torch.Tensor')