DarshanScripts commited on
Commit
5e9604d
·
verified ·
1 Parent(s): 1dd3e7b

Upload stratego/datasets/__init__.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. stratego/datasets/__init__.py +14 -0
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
+ ]