Upload alpha_factory/deterministic/__init__.py
Browse files
alpha_factory/deterministic/__init__.py
CHANGED
|
@@ -7,7 +7,9 @@ from .theme_sampler import (
|
|
| 7 |
THEME_FIELDS, THEME_TO_ARCHETYPE, THEME_TO_TAG,
|
| 8 |
get_theme_fields, get_theme_archetype, get_theme_tag,
|
| 9 |
)
|
| 10 |
-
from .fitness import compute_fitness, would_pass_brain
|
|
|
|
|
|
|
| 11 |
|
| 12 |
# Backward-compat alias: list of known archetype names
|
| 13 |
PROVEN_ARCHETYPES = list(THEME_TO_ARCHETYPE.values())
|
|
@@ -17,5 +19,6 @@ __all__ = [
|
|
| 17 |
"pick_theme", "compute_gap_scores", "PROVEN_ARCHETYPES",
|
| 18 |
"THEME_FIELDS", "THEME_TO_ARCHETYPE", "THEME_TO_TAG",
|
| 19 |
"get_theme_fields", "get_theme_archetype", "get_theme_tag",
|
| 20 |
-
"compute_fitness", "would_pass_brain",
|
|
|
|
| 21 |
]
|
|
|
|
| 7 |
THEME_FIELDS, THEME_TO_ARCHETYPE, THEME_TO_TAG,
|
| 8 |
get_theme_fields, get_theme_archetype, get_theme_tag,
|
| 9 |
)
|
| 10 |
+
from .fitness import compute_fitness, would_pass_brain
|
| 11 |
+
from .proven_templates import generate_batch_from_proven_templates
|
| 12 |
+
from .expression_mutator import generate_mutations
|
| 13 |
|
| 14 |
# Backward-compat alias: list of known archetype names
|
| 15 |
PROVEN_ARCHETYPES = list(THEME_TO_ARCHETYPE.values())
|
|
|
|
| 19 |
"pick_theme", "compute_gap_scores", "PROVEN_ARCHETYPES",
|
| 20 |
"THEME_FIELDS", "THEME_TO_ARCHETYPE", "THEME_TO_TAG",
|
| 21 |
"get_theme_fields", "get_theme_archetype", "get_theme_tag",
|
| 22 |
+
"compute_fitness", "would_pass_brain",
|
| 23 |
+
"generate_batch_from_proven_templates", "generate_mutations",
|
| 24 |
]
|