File size: 649 Bytes
796f99b
 
824bf31
796f99b
 
 
 
824bf31
 
796f99b
 
 
 
 
 
 
 
 
 
 
 
 
824bf31
 
796f99b
 
 
 
 
 
 
 
 
 
 
824bf31
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
35
36
"""
ML Pipeline Module

This module provides machine learning capabilities including:
- Model training pipeline
- Model versioning
- A/B testing framework
"""

from src.ml.training_pipeline import (
    MLTrainingPipeline,
    get_training_pipeline
)

from src.ml.ab_testing import (
    ABTestFramework,
    ABTestStatus,
    TrafficAllocationStrategy,
    ab_testing,
    get_ab_testing
)


__all__ = [
    # Training Pipeline
    "MLTrainingPipeline",
    "training_pipeline",
    "get_training_pipeline",
    
    # A/B Testing
    "ABTestFramework",
    "ABTestStatus", 
    "TrafficAllocationStrategy",
    "ab_testing",
    "get_ab_testing"
]