Upload seamless_communication/inference/__init__.py with huggingface_hub
Browse files
seamless_communication/inference/__init__.py
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
2 |
+
# All rights reserved.
|
3 |
+
#
|
4 |
+
# This source code is licensed under the license found in the
|
5 |
+
# MIT_LICENSE file in the root directory of this source tree.
|
6 |
+
|
7 |
+
from seamless_communication.inference.generator import (
|
8 |
+
SequenceGeneratorOptions as SequenceGeneratorOptions,
|
9 |
+
)
|
10 |
+
from seamless_communication.inference.generator import UnitYGenerator as UnitYGenerator
|
11 |
+
from seamless_communication.inference.translator import (
|
12 |
+
BatchedSpeechOutput as BatchedSpeechOutput,
|
13 |
+
)
|
14 |
+
from seamless_communication.inference.translator import Modality as Modality
|
15 |
+
from seamless_communication.inference.translator import Task as Task
|
16 |
+
from seamless_communication.inference.translator import Translator as Translator
|