Spaces:
Runtime error
Runtime error
File size: 821 Bytes
b27232b 07b71bb b27232b 07b71bb b27232b |
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 |
"""
Optimization modules for DittoTalkingHead Phase 3
"""
from .resolution_optimization import FixedResolutionProcessor
from .gpu_optimization import GPUOptimizer, OptimizedInference
from .avatar_cache import AvatarCache, AvatarTokenManager
from .cold_start_optimization import ColdStartOptimizer
from .inference_cache import InferenceCache, CachedInference
from .parallel_processing import ParallelProcessor, PipelineProcessor
from .parallel_inference import ParallelInference, OptimizedInferenceWrapper
__all__ = [
'FixedResolutionProcessor',
'GPUOptimizer',
'OptimizedInference',
'AvatarCache',
'AvatarTokenManager',
'ColdStartOptimizer',
'InferenceCache',
'CachedInference',
'ParallelProcessor',
'PipelineProcessor',
'ParallelInference',
'OptimizedInferenceWrapper'
] |