Upload alpha_factory/deterministic/__init__.py with huggingface_hub
Browse files
alpha_factory/deterministic/__init__.py
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
Deterministic modules — no LLM required.
|
| 3 |
+
"""
|
| 4 |
+
from .lint import lint, quick_dedup_hash
|
| 5 |
+
from .theme_sampler import pick_theme, compute_gap_scores, PROVEN_ARCHETYPES
|
| 6 |
+
from .fitness import compute_fitness, would_pass_brain, regime_tag_years
|
| 7 |
+
|
| 8 |
+
__all__ = [
|
| 9 |
+
"lint", "quick_dedup_hash",
|
| 10 |
+
"pick_theme", "compute_gap_scores", "PROVEN_ARCHETYPES",
|
| 11 |
+
"compute_fitness", "would_pass_brain", "regime_tag_years",
|
| 12 |
+
]
|