DarshanScripts's picture
Upload stratego/datasets/__init__.py with huggingface_hub
5e9604d verified
raw
history blame contribute delete
353 Bytes
# 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",
]