Spaces:
Paused
Paused
up7
Browse files- __pycache__/app.cpython-312.pyc +0 -0
- app.py +5 -2
__pycache__/app.cpython-312.pyc
CHANGED
Binary files a/__pycache__/app.cpython-312.pyc and b/__pycache__/app.cpython-312.pyc differ
|
|
app.py
CHANGED
@@ -6,8 +6,11 @@ import io
|
|
6 |
interface = outetts.Interface(
|
7 |
config=outetts.ModelConfig.auto_config(
|
8 |
model=outetts.Models.VERSION_1_0_SIZE_1B,
|
9 |
-
backend
|
10 |
-
|
|
|
|
|
|
|
11 |
)
|
12 |
)
|
13 |
|
|
|
6 |
interface = outetts.Interface(
|
7 |
config=outetts.ModelConfig.auto_config(
|
8 |
model=outetts.Models.VERSION_1_0_SIZE_1B,
|
9 |
+
# For llama.cpp backend
|
10 |
+
#backend=outetts.Backend.LLAMACPP,
|
11 |
+
#quantization=outetts.LlamaCppQuantization.FP16
|
12 |
+
# For transformers backend
|
13 |
+
backend=outetts.Backend.HF,
|
14 |
)
|
15 |
)
|
16 |
|