Spaces:
Runtime error
Runtime error
freemt
commited on
Commit
·
b0925ce
1
Parent(s):
e0fded8
app.py
CHANGED
@@ -8,7 +8,6 @@ from aset2pairs import aset2pairs
|
|
8 |
from cmat2aset import cmat2aset
|
9 |
from logzero import logger
|
10 |
from typing import List, Optional, Union
|
11 |
-
from hf_model_s_cpu import model_s
|
12 |
|
13 |
from radio_mlbee import __version__
|
14 |
from radio_mlbee.gen_cmat import gen_cmat
|
@@ -75,7 +74,7 @@ mlbee = gr.Interface(
|
|
75 |
examples=[
|
76 |
# ["a b", "cd", False],
|
77 |
# [text1, text2, False],
|
78 |
-
[text1[:len(text1//2], text2[:len(text2//2], False],
|
79 |
]
|
80 |
)
|
81 |
|
|
|
8 |
from cmat2aset import cmat2aset
|
9 |
from logzero import logger
|
10 |
from typing import List, Optional, Union
|
|
|
11 |
|
12 |
from radio_mlbee import __version__
|
13 |
from radio_mlbee.gen_cmat import gen_cmat
|
|
|
74 |
examples=[
|
75 |
# ["a b", "cd", False],
|
76 |
# [text1, text2, False],
|
77 |
+
[text1[:len(text1) // 2], text2[:len(text2) // 2], False],
|
78 |
]
|
79 |
)
|
80 |
|