File size: 712 Bytes
e69b72a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
"""Reproducible multi-stage training experiments (curricula) for STRATA."""

from strata.experiments.curriculum import (
    Curriculum,
    ResolvedStage,
    Stage,
    build_stage_command,
    latest_checkpoint,
    load_curriculum,
    plan_actions,
    resolve_stages,
)
from strata.experiments.model_registry import (
    ModelRegistry,
    ModelRegistryEntry,
    load_model_registry,
    validate_model_registry,
)

__all__ = [
    "Curriculum",
    "ModelRegistry",
    "ModelRegistryEntry",
    "ResolvedStage",
    "Stage",
    "build_stage_command",
    "latest_checkpoint",
    "load_model_registry",
    "load_curriculum",
    "plan_actions",
    "resolve_stages",
    "validate_model_registry",
]