Spaces:
Build error
Build error
freemt
commited on
Commit
·
dc641b6
1
Parent(s):
7327eea
Update theme='grass'
Browse files- radiobee/__main__.py +3 -2
radiobee/__main__.py
CHANGED
@@ -381,10 +381,11 @@ if __name__ == "__main__":
|
|
381 |
"""
|
382 |
## NB
|
383 |
* Click "Clear" first for subsequent submits when uploading files.
|
384 |
-
* `tf_type` `
|
385 |
* Suggested `min_samples` and `esp` values -- `min_samples`: 4-8, `esp` (minimum epsilon): 8-12.
|
386 |
- Smaller `min_samples` or larger `esp` will result in more aligned pairs but also more **false positives** (pairs falsely identified as candidates). On the other hand, larger `min_samples` or smaller `esp` values tend to miss 'good' pairs.
|
387 |
* 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.
|
|
|
388 |
"""
|
389 |
)
|
390 |
css = ".output_image, .input_image {height: 40rem !important; width: 100% !important;}"
|
@@ -416,7 +417,7 @@ if __name__ == "__main__":
|
|
416 |
# height=150, # 500
|
417 |
width=900, # 900
|
418 |
allow_flagging=True,
|
419 |
-
flagging_options=["fatal", "bug", "brainstorm", "excelsior", "paragon"],
|
420 |
css=f"{css} {css_file}",
|
421 |
)
|
422 |
|
|
|
381 |
"""
|
382 |
## NB
|
383 |
* Click "Clear" first for subsequent submits when uploading files.
|
384 |
+
* `tf_type` `idf_type` `dl_type` `norm`: Normally there is no need to touch these unless you know what you are doing.
|
385 |
* Suggested `min_samples` and `esp` values -- `min_samples`: 4-8, `esp` (minimum epsilon): 8-12.
|
386 |
- Smaller `min_samples` or larger `esp` will result in more aligned pairs but also more **false positives** (pairs falsely identified as candidates). On the other hand, larger `min_samples` or smaller `esp` values tend to miss 'good' pairs.
|
387 |
* 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.
|
388 |
+
* `Flag`: Should something go wrong, you can click Flag to save the output and inform the developer.
|
389 |
"""
|
390 |
)
|
391 |
css = ".output_image, .input_image {height: 40rem !important; width: 100% !important;}"
|
|
|
417 |
# height=150, # 500
|
418 |
width=900, # 900
|
419 |
allow_flagging=True,
|
420 |
+
flagging_options=["fatal", "bug", "brainstorm", "excelsior", ], # "paragon"],
|
421 |
css=f"{css} {css_file}",
|
422 |
)
|
423 |
|