mirror of
https://gitcode.com/gh_mirrors/eas/EasyFace.git
synced 2025-12-30 13:02:29 +00:00
11 lines
296 B
Python
11 lines
296 B
Python
# Copyright (c) Alibaba, Inc. and its affiliates.
|
|
|
|
from typing import Dict, List, Tuple, Union
|
|
|
|
Image = Union[str, 'Image.Image', 'numpy.ndarray']
|
|
Text = str
|
|
Audio = Union[str, bytes, 'np.ndarray']
|
|
Video = Union[str, 'np.ndarray', 'cv2.VideoCapture']
|
|
|
|
Tensor = Union['torch.Tensor', 'tf.Tensor']
|