Spaces:
Runtime error
Runtime error
File size: 15,236 Bytes
b92b890 7b6ee4d e84d35a 8278435 e84d35a 7b6ee4d 8278435 e84d35a 7b6ee4d e84d35a 2d138f6 e84d35a 2d138f6 e84d35a 8a677e1 7b6ee4d 3fae3e0 7b6ee4d e84d35a 0fa9da2 4aa312a 5a186f5 8278435 e84d35a 7b6ee4d e84d35a a15cd26 e84d35a a15cd26 e84d35a a15cd26 e84d35a a15cd26 e84d35a a15cd26 e84d35a a15cd26 e84d35a a15cd26 e84d35a a15cd26 e84d35a a15cd26 e84d35a a15cd26 e84d35a 7b6ee4d a15cd26 7b6ee4d a15cd26 7b6ee4d e84d35a a15cd26 e84d35a a15cd26 e84d35a 7b6ee4d a15cd26 7b6ee4d a15cd26 7b6ee4d e84d35a 9335e27 248e9e8 9335e27 e84d35a 8a677e1 e84d35a 8a677e1 e84d35a a15cd26 e84d35a a15cd26 8a677e1 e84d35a a15cd26 8a677e1 e84d35a 430ae90 e84d35a 5b95475 db84e9c e84d35a 8a677e1 0fa9da2 248e9e8 0623956 e84d35a 7b6ee4d e84d35a 7b6ee4d 53b36c7 e84d35a 0fa9da2 248e9e8 e84d35a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 |
"""Run radiobee."""
# pylint: disable=invalid-name, too-many-arguments, unused-argument, redefined-builtin, unused-import, wrong-import-position, too-many-locals, too-many-statements
from typing import Any, Tuple, Optional, Union # noqa
import os
import sys
from pathlib import Path # noqa
# import subprocess as sp
# import shlex
import time
import platform
import signal
from random import randint
from textwrap import dedent
from itertools import zip_longest
# import socket
from socket import socket, AF_INET, SOCK_STREAM
from sklearn.cluster import DBSCAN # noqa
import joblib
from varname import nameof
from icecream import install as ic_install, ic
import logzero
from logzero import logger
# import numpy as np
import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt # noqa
# from tabulate import tabulate
from fastlid import fastlid
# for embeddable python
if "." not in sys.path:
sys.path.insert(0, ".")
import gradio as gr
# from radiobee.error_msg import error_msg
from radiobee import __version__
from radiobee.process_upload import process_upload
from radiobee.gradiobee import gradiobee
# pd.set_option('display.max_colwidth', 100)
ic_install()
ic.configureOutput(
includeContext=True,
outputFunction=logger.info,
)
ic.enable()
# ic.disenable() # to turn off
sns.set()
sns.set_style("darkgrid")
fastlid.set_languages = ["en", "zh"]
signal.signal(signal.SIGINT, signal.SIG_DFL)
print("Press Ctrl+C to quit\n")
def savelzma(obj, fileloc: str = None):
"""Aux funciton."""
if fileloc is None:
fileloc = nameof(obj) # this wont work
joblib.dump(obj, f"data/{fileloc}.lzma")
def greet(input):
"""Greet yo."""
return f"'Sup yo! (your input: {input})"
def upfile1(file1, file2=None) -> Tuple[str, str]:
"""Upload file1, file2."""
del file2
return file1.name, f"'Sup yo! (your input: {input})"
def process_2upoads(file1, file2):
"""Process stuff."""
# return f"{process_upload(file1)}\n===***\n{process_upload(file2)}"
text1 = [_.strip() for _ in process_upload(file1).splitlines() if _.strip()]
text2 = [_.strip() for _ in process_upload(file2).splitlines() if _.strip()]
text1, text2 = zip(*zip_longest(text1, text2, fillvalue=""))
df = pd.DataFrame({"text1": text1, "text2": text2})
# return tabulate(df)
# return tabulate(df, tablefmt="grid")
# return tabulate(df, tablefmt='html')
return df
if __name__ == "__main__":
debug = True
# debug = False
uname = platform.uname()
# match = re.search(r'[a-z\d]{10,}', gethostname())
# hf spaces release: '4.14.248-189.473.amzn2.x86_64'
# match = re.search(r'[a-z\d]{10,}', node)
# if match and node.system.lower() in ["linux"]:
if "amzn2" in uname.release:
# likely hf spaces
server_name = "0.0.0.0"
# debug = False
debug = True
share = False
os.environ["TZ"] = "Asia/Shanghai"
if sys.platform not in ["win32"]:
time.tzset()
else:
server_name = "127.0.0.1"
share = False
if debug:
logzero.loglevel(10)
logger.debug(" debug ")
logger.info(" info ")
# _ = """
inputs = [
gr.inputs.Textbox(
# placeholder="Input something here",
default="test text"
)
]
inputs = ["file", "file"]
inputs = [
gr.inputs.File(label="file 1"),
# gr.inputs.File(file_count="multiple", label="file 2", optional=True),
gr.inputs.File(label="file 2", optional=True),
]
_ = """
tf_type: Literal[linear, sqrt, log, binary] = 'linear'
idf_type: Optional[Literal[standard, smooth, bm25]] = None
dl_type: Optional[Literal[linear, sqrt, log]] = None
norm: norm: Optional[Literal[l1, l2]] = None
x min_df: int | float = 1
x max_df: int | float = 1.0
# """
input_tf_type = gr.inputs.Dropdown(
["linear", "sqrt", "log", "binary"], default="linear"
)
input_idf_type = gr.inputs.Radio(
["None", "standard", "smooth", "bm25"], default="None"
) # need to convert "None" this to None in fn
input_dl_type = gr.inputs.Radio(
["None", "linear", "sqrt", "log"], default="None"
) # ditto
input_norm_type = gr.inputs.Radio(["None", "l1", "l2"], default="None") # ditto
# modi inputs 1, definitions
sent_ali_algo = gr.inputs.Radio(["None", "fast", "slow"], default="None")
inputs = [ # tot. 9, meed to modify input of gradio & examples
gr.inputs.File(label="file 1"),
gr.inputs.File(label="file 2", optional=True),
input_tf_type, # modi inputs 2
input_idf_type,
input_dl_type,
input_norm_type,
gr.inputs.Slider(
minimum=1,
maximum=20,
step=0.1,
default=10,
),
gr.inputs.Slider(
minimum=1,
maximum=20,
step=1,
default=6,
),
sent_ali_algo,
]
examples = [
[
"data/test_zh.txt",
"data/test_en.txt",
"linear",
"None",
"None",
"None",
10,
6,
"None",
],
[
"data/test_zh.txt",
"data/test_en.txt",
"linear",
"None",
"None",
"None",
10,
6,
"fast",
],
[
"data/test_zh.txt",
"data/test_en.txt",
"linear",
"None",
"None",
"None",
10,
6,
"slow",
],
[
"data/test_en.txt",
"data/test_zh.txt",
"linear",
"None",
"None",
"None",
10,
6,
"None",
],
[
"data/shakespeare_zh500.txt",
"data/shakespeare_en500.txt",
"linear",
"None",
"None",
"None",
10,
6,
"None",
],
[
"data/shakespeare_en500.txt",
"data/shakespeare_zh500.txt",
"linear",
"None",
"None",
"None",
10,
6,
"None",
],
[
"data/hlm-ch1-zh.txt",
"data/hlm-ch1-en.txt",
"linear",
"None",
"None",
"None",
10,
6,
"None",
],
[
"data/hlm-ch1-en.txt",
"data/hlm-ch1-zh.txt",
"linear",
"None",
"None",
"None",
10,
6,
"None",
],
[
"data/ps-cn.txt",
"data/ps-en.txt",
"linear",
"None",
"None",
"None",
10,
4,
"None",
],
[
"data/test-dual.txt",
"data/empty.txt",
"linear",
"None",
"None",
"None",
10,
6,
"None",
],
[
"data/英译中国现代散文选1(汉外对照丛书).txt",
"data/empty.txt",
"linear",
"None",
"None",
"None",
10,
6,
"None",
],
[
"data/test-zh-ja.txt",
"data/empty.txt",
"linear",
"None",
"None",
"None",
10,
6,
"None",
],
[
"data/xiyouji-ch1-zh.txt",
"data/xiyouji-ch1-de.txt",
"linear",
"None",
"None",
"None",
10,
6,
"None",
],
[
"data/demian-hesse-de.txt",
"data/demian-hesse-en.txt",
"linear",
"None",
"None",
"None",
10,
6,
"None",
],
[
"data/catcher-in-the-rye-shixianrong-zh.txt",
"data/catcher-in-the-rye-boll-de.txt",
"linear",
"None",
"None",
"None",
10,
6,
"None",
],
]
# trying to fix the problem
examples = [
[
"data/test_en.txt",
"data/test_zh.txt",
"linear",
"None",
"None",
"None",
10,
6,
"None",
],
]
# modi examples setup
out_df = gr.outputs.Dataframe(
headers=None,
max_rows=12, # 20
max_cols=2,
overflow_row_behaviour="paginate",
type="auto",
label="To be aligned",
)
out_df_aligned = gr.outputs.Dataframe(
headers=None,
# max_rows=12, # 20
max_cols=3,
overflow_row_behaviour="paginate",
type="auto",
label="aligned pairs",
)
out_html_aligned = gr.outputs.HTML(label="aligned")
out_file_dl = gr.outputs.File(
label="Click to download csv",
)
out_file_dl_excel = gr.outputs.File(
label="Click to download xlsx",
)
out_sents_dl = gr.outputs.File(
label="Click to download sents csv",
)
out_sents_dl_excel = gr.outputs.File(
label="Click to download sents xlsx",
)
# modi outputs 1, definitions
# modi outputs 2, need to modify gradio error_msg
outputs = [ # tot. 8 or 7
gr.outputs.HTML(label="to be aligned"),
out_file_dl,
out_file_dl_excel,
out_sents_dl,
out_sents_dl_excel,
# out_df_aligned, # out_html_aligned,
gr.outputs.HTML(),
gr.outputs.Image(label="plot"),
]
# outputs = ["dataframe", "plot", "plot"] # wont work
# outputs = ["dataframe"]
# outputs = ["dataframe", "dataframe", ]
server_port = 7860
with socket(AF_INET, SOCK_STREAM) as sock:
sock.settimeout(0.01) # 10ms
# try numb times before giving up
numb = 5
for _ in range(numb):
if sock.connect_ex(("127.0.0.1", server_port)) != 0: # port idle
break
server_port = server_port + randint(0, 50)
else:
raise SystemExit(f"Tried {numb} times to no avail, giving up...")
description = "WIP showcasing a blazing fast dualtext aligner, currrently supported language pairs: en-zh/zh-en for fast-track, other language pairs are handled by slow-track"
# moved to userguide.rst in docs
article = dedent(
"""
## NB
* `radiobee aligner` is a sibling of `bumblebee aligner`. To know more about these aligners, please join qq group `316287378`.
* Uploaded files should be in pure text format (txt, md, csv etc). `docx`, `pdf`, `srt`, `html` etc may be supported later on.
* Click "Clear" first for subsequent submits when uploading files.
* `tf_type` `idf_type` `dl_type` `norm`: Normally there is no need to touch these unless you know what you are doing.
* Suggested `esp` and `min_samples` values -- `esp` (minimum epsilon): 8-12, `min_samples`: 4-8.
- Smaller larger `esp` or `min_samples` will result in more aligned pairs but also more **false positives** (pairs
falsely identified as candidates). On the other hand,
larger smaller `esp` or `min_samples` values tend to miss
'good' pairs.
* If you need to have a better look at the image, you can right-click on the image and select copy-image-address and open a new tab in the browser with the copied image address.
* `Flag`: Should something go wrong, you can click Flag to save the output and inform the developer.
"""
).strip()
article = dedent(
""" <p style="text-align: center">readiobee docs:
<a href="https://radiobee.readthedocs.io/" target="_blank">readthedocs</a>
or in Chinese but rather short <a href="https://radiobee.readthedocs.io/en/latest/userguide-zh.html#" target="_blank">中文使用说明</a>
</p>
"""
).strip()
css_image = ".output_image, .input_image {height: 40rem !important; width: 100% !important;}"
# css = ".output_image, .input_image {height: 20rem !important; width: 100% !important;}"
css_input_file = ".input_file {height: 8rem !important; width: 100% !important;}"
css_output_file = ".output_file {height: 4rem !important; width: 100% !important;}"
logger.info("running at port %s", server_port)
_ = """
inputs = ...
outputs = ...
# properly
# define gradiobee to take inputs and spil out outputs
iface = gr.Interface(
fn=gradiobee,
inputs,
outputs,
)
# """
iface = gr.Interface(
# fn=greet,
# inputs="text",
# fn=process_upload,
# fn=process_2upoads,
# inputs=["file", "file"],
# outputs="text",
# outputs="html",
# fn=fn,
fn=gradiobee,
inputs=inputs,
outputs=outputs,
title=f"radiobee-dev {__version__} 🔠",
description=description,
article=article,
# examples=examples, # this somehow causes trouble on hf spaces
# examples_per_page=5,
# theme="darkgrass",
# theme="grass",
# layout="vertical", # horizontal unaligned
# allow_flagging="never", # "manual" "never" "auto"
# css=f"{css_image} {css_input_file} {css_output_file}",
)
iface.launch(
share=share,
debug=debug,
show_error=True,
# server_name=server_name,
# server_name="127.0.0.1",
server_port=server_port,
enable_queue=True,
# width=900, # 900
# cache_examples=False,
)
_ = """
ax = sns.heatmap(cmat, cmap="viridis_r")
ax.invert_yaxis()
ax.set_xlabel(fastlid(df.text1)[0])
ax.set_xlabel(fastlid(df.text2)[0])
# return df, plt
return plt.gca()
https://colab.research.google.com/drive/1Gz9624VeAQLT7wlETgjOjPVURzQckXI0#scrollTo=qibtTvwecgsL colab gradio-file-inputs-upload.ipynb
iface = gr.Interface(plot_text, "file", "image")
def is_port_in_use(port):
import socket
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
return s.connect_ex(('localhost', port)) == 0
socket.socket(socket.AF_INET, socket.SOCK_STREAM).connect_ex(('127.0.0.1', 7911))
---
css https://huggingface.co/spaces/nielsr/LayoutLMv2-FUNSD/blob/main/app.py#L83
css = ".output_image, .input_image {height: 40rem !important; width: 100% !important;}"
#css = "@media screen and (max-width: 600px) { .output_image, .input_image {height:20rem !important; width: 100% !important;} }"
# css = ".output_image, .input_image {height: 600px !important}"
mod = 'en2zh'
packname = packx.__name__
globals()[mod] = getattr(importlib.import_module(f"{packname}.{mod}"), mod)
"""
|