mirror of
https://gitcode.com/gh_mirrors/eas/EasyFace.git
synced 2026-02-25 00:30:16 +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']
|