Spaces:
Configuration error
Configuration error
File size: 353 Bytes
5e9604d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | # stratego/datasets/__init__.py
"""
Hugging Face Datasets integration for Stratego game logs.
"""
from .builder import GameDatasetBuilder, build_dataset_from_logs
from .uploader import push_to_hub, auto_push_after_game
__all__ = [
"GameDatasetBuilder",
"build_dataset_from_logs",
"push_to_hub",
"auto_push_after_game",
]
|