euiia commited on
Commit
1dab0e8
·
verified ·
1 Parent(s): 6f6d89f

Update engineers/deformes4D.py

Browse files
Files changed (1) hide show
  1. engineers/deformes4D.py +2 -6
engineers/deformes4D.py CHANGED
@@ -23,6 +23,7 @@ import gc
23
  import shutil
24
  from pathlib import Path
25
  from typing import List, Tuple, Generator, Dict, Any, Optional
 
26
 
27
  from managers.ltx_manager import ltx_manager_singleton
28
  from managers.latent_enhancer_manager import latent_enhancer_specialist_singleton
@@ -34,12 +35,7 @@ from tools.video_encode_tool import video_encode_tool_singleton
34
 
35
  logger = logging.getLogger(__name__)
36
 
37
- @dataclass
38
- class LatentConditioningItem:
39
- """Represents a conditioning anchor in the latent space for the Camera (Ψ)."""
40
- latent_tensor: torch.Tensor
41
- media_frame_number: int
42
- conditioning_strength: float
43
 
44
  class Deformes4DEngine:
45
  """
 
23
  import shutil
24
  from pathlib import Path
25
  from typing import List, Tuple, Generator, Dict, Any, Optional
26
+ from aduc_types import LatentConditioningItem
27
 
28
  from managers.ltx_manager import ltx_manager_singleton
29
  from managers.latent_enhancer_manager import latent_enhancer_specialist_singleton
 
35
 
36
  logger = logging.getLogger(__name__)
37
 
38
+
 
 
 
 
 
39
 
40
  class Deformes4DEngine:
41
  """