Spaces:
Runtime error
Runtime error
Update opensora/models/ae/__init__.py
Browse files
opensora/models/ae/__init__.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
-
from
|
| 2 |
-
from
|
| 3 |
-
from
|
| 4 |
VQVAEConfiguration,
|
| 5 |
VQVAEModel,
|
| 6 |
VQVAETrainer,
|
|
@@ -9,6 +9,7 @@ from opensora.models.ae.videobase import (
|
|
| 9 |
CausalVQVAETrainer
|
| 10 |
)
|
| 11 |
|
|
|
|
| 12 |
ae_stride_config = {}
|
| 13 |
ae_stride_config.update(imagebase_ae_stride)
|
| 14 |
ae_stride_config.update(videobase_ae_stride)
|
|
|
|
| 1 |
+
from .imagebase import imagebase_ae, imagebase_ae_stride, imagebase_ae_channel
|
| 2 |
+
from .videobase import videobase_ae, videobase_ae_stride, videobase_ae_channel
|
| 3 |
+
from .videobase import (
|
| 4 |
VQVAEConfiguration,
|
| 5 |
VQVAEModel,
|
| 6 |
VQVAETrainer,
|
|
|
|
| 9 |
CausalVQVAETrainer
|
| 10 |
)
|
| 11 |
|
| 12 |
+
|
| 13 |
ae_stride_config = {}
|
| 14 |
ae_stride_config.update(imagebase_ae_stride)
|
| 15 |
ae_stride_config.update(videobase_ae_stride)
|