add relative import
Browse files
cosmos1diffusiontext2world.py
CHANGED
|
@@ -15,7 +15,7 @@
|
|
| 15 |
|
| 16 |
from hydra.core.config_store import ConfigStore
|
| 17 |
|
| 18 |
-
from lazy_config_init import LazyDict
|
| 19 |
|
| 20 |
Cosmos_1_0_Diffusion_Text2World_7B: LazyDict = LazyDict(
|
| 21 |
dict(
|
|
|
|
| 15 |
|
| 16 |
from hydra.core.config_store import ConfigStore
|
| 17 |
|
| 18 |
+
from .lazy_config_init import LazyDict
|
| 19 |
|
| 20 |
Cosmos_1_0_Diffusion_Text2World_7B: LazyDict = LazyDict(
|
| 21 |
dict(
|
cosmos1diffusionvideo2world.py
CHANGED
|
@@ -15,9 +15,9 @@
|
|
| 15 |
|
| 16 |
from hydra.core.config_store import ConfigStore
|
| 17 |
|
| 18 |
-
from
|
| 19 |
-
from lazy_config_init import LazyCall as L
|
| 20 |
-
from lazy_config_init import LazyDict
|
| 21 |
|
| 22 |
Cosmos_1_0_Diffusion_Video2World_7B: LazyDict = LazyDict(
|
| 23 |
dict(
|
|
|
|
| 15 |
|
| 16 |
from hydra.core.config_store import ConfigStore
|
| 17 |
|
| 18 |
+
from .general_dit_video_conditioned import VideoExtendGeneralDIT
|
| 19 |
+
from .lazy_config_init import LazyCall as L
|
| 20 |
+
from .lazy_config_init import LazyDict
|
| 21 |
|
| 22 |
Cosmos_1_0_Diffusion_Video2World_7B: LazyDict = LazyDict(
|
| 23 |
dict(
|
cosmos1/models/diffusion/networks/general_dit_video_conditioned.py → general_dit_video_conditioned.py
RENAMED
|
@@ -19,9 +19,9 @@ import torch
|
|
| 19 |
from einops import rearrange
|
| 20 |
from torch import nn
|
| 21 |
|
| 22 |
-
from conditioner import DataType
|
| 23 |
-
from blocks import TimestepEmbedding, Timesteps
|
| 24 |
-
from general_dit import GeneralDIT
|
| 25 |
from .log import log
|
| 26 |
|
| 27 |
|
|
|
|
| 19 |
from einops import rearrange
|
| 20 |
from torch import nn
|
| 21 |
|
| 22 |
+
from .conditioner import DataType
|
| 23 |
+
from .blocks import TimestepEmbedding, Timesteps
|
| 24 |
+
from .general_dit import GeneralDIT
|
| 25 |
from .log import log
|
| 26 |
|
| 27 |
|