Spaces:
Configuration error
Configuration error
Upload stratego/datasets/__init__.py with huggingface_hub
Browse files
stratego/datasets/__init__.py
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# stratego/datasets/__init__.py
|
| 2 |
+
"""
|
| 3 |
+
Hugging Face Datasets integration for Stratego game logs.
|
| 4 |
+
"""
|
| 5 |
+
|
| 6 |
+
from .builder import GameDatasetBuilder, build_dataset_from_logs
|
| 7 |
+
from .uploader import push_to_hub, auto_push_after_game
|
| 8 |
+
|
| 9 |
+
__all__ = [
|
| 10 |
+
"GameDatasetBuilder",
|
| 11 |
+
"build_dataset_from_logs",
|
| 12 |
+
"push_to_hub",
|
| 13 |
+
"auto_push_after_game",
|
| 14 |
+
]
|