Spaces:
Sleeping
Sleeping
make module
Browse files- benchmarks/__init__.py +10 -0
benchmarks/__init__.py
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
Benchmark utilities and dataset loaders used by the demo UI.
|
| 3 |
+
|
| 4 |
+
Note: The `benchmarks/` folder is primarily for research/evaluation scripts, but the
|
| 5 |
+
Streamlit demo imports some loaders/metrics from here. Making this directory a
|
| 6 |
+
package (via `__init__.py`) ensures imports like `benchmarks.vidore_tatdqa_test`
|
| 7 |
+
work in Docker/Spaces environments.
|
| 8 |
+
"""
|
| 9 |
+
|
| 10 |
+
__all__ = []
|