gaurv007 commited on
Commit
47364d1
·
verified ·
1 Parent(s): 54f9c99

feat: add data layer __init__.py

Browse files
Files changed (1) hide show
  1. alpha_factory/data/__init__.py +17 -0
alpha_factory/data/__init__.py ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ Data layer — canonical BRAIN field registry, operator catalog, and group keys.
3
+ This is the pipeline's ground truth for what's available on the platform.
4
+ """
5
+ from .brain_fields import (
6
+ ALL_FIELDS, FIELD_INDEX, GOLDMINE_FIELDS, TIER1_MODEL77_FIELDS,
7
+ pick_field, get_backfill_days, get_sign_multiplier,
8
+ BrainField, SignConvention, DatasetTier,
9
+ )
10
+ from .brain_groups import ALT_GROUPS, PRODUCTION_GROUPS, pick_group, get_group_for_expression
11
+
12
+ __all__ = [
13
+ "ALL_FIELDS", "FIELD_INDEX", "GOLDMINE_FIELDS", "TIER1_MODEL77_FIELDS",
14
+ "pick_field", "get_backfill_days", "get_sign_multiplier",
15
+ "BrainField", "SignConvention", "DatasetTier",
16
+ "ALT_GROUPS", "PRODUCTION_GROUPS", "pick_group", "get_group_for_expression",
17
+ ]