Moved diffdec out
Browse files
cosmos1/models/autoregressive/diffusion_decoder/network.py → ar_diffusion_decoder_network.py
RENAMED
@@ -20,8 +20,8 @@ from einops import rearrange
|
|
20 |
from torch import nn
|
21 |
from torchvision import transforms
|
22 |
|
23 |
-
from blocks import PatchEmbed
|
24 |
-
from general_dit import GeneralDIT
|
25 |
|
26 |
|
27 |
class DiffusionDecoderGeneralDIT(GeneralDIT):
|
|
|
20 |
from torch import nn
|
21 |
from torchvision import transforms
|
22 |
|
23 |
+
from .blocks import PatchEmbed
|
24 |
+
from .general_dit import GeneralDIT
|
25 |
|
26 |
|
27 |
class DiffusionDecoderGeneralDIT(GeneralDIT):
|
cosmos1/models/autoregressive/diffusion_decoder/config/inference/cosmos_diffusiondecoder_7b.py → cosmos_diffusiondecoder_7b.py
RENAMED
@@ -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 |
num_frames = 57
|
23 |
Cosmos_DiffusionDecoder_7B_INFERENCE_ONLY: LazyDict = LazyDict(
|
|
|
15 |
|
16 |
from hydra.core.config_store import ConfigStore
|
17 |
|
18 |
+
from .ar_diffusion_decoder_network import DiffusionDecoderGeneralDIT
|
19 |
+
from .lazy_config_init import LazyCall as L
|
20 |
+
from .lazy_config_init import LazyDict
|
21 |
|
22 |
num_frames = 57
|
23 |
Cosmos_DiffusionDecoder_7B_INFERENCE_ONLY: LazyDict = LazyDict(
|