zhong-al commited on
Commit ·
4f41c8c
1
Parent(s): 1a4f7a3
Get rid of helper dir
Browse files- helpers/head.py → head.py +0 -0
- helpers/__init__.py +0 -0
- helpers/norm.py → norm.py +0 -0
- helpers/resnet.py → resnet.py +0 -0
- helpers/stem.py → stem.py +0 -0
- x3d.py +4 -4
helpers/head.py → head.py
RENAMED
|
File without changes
|
helpers/__init__.py
DELETED
|
File without changes
|
helpers/norm.py → norm.py
RENAMED
|
File without changes
|
helpers/resnet.py → resnet.py
RENAMED
|
File without changes
|
helpers/stem.py → stem.py
RENAMED
|
File without changes
|
x3d.py
CHANGED
|
@@ -7,10 +7,10 @@ from torch import nn
|
|
| 7 |
from torch.distributed.algorithms.ddp_comm_hooks import default as comm_hooks_default
|
| 8 |
from fvcore.nn.weight_init import c2_msra_fill, c2_xavier_fill
|
| 9 |
|
| 10 |
-
from .
|
| 11 |
-
from .
|
| 12 |
-
from .
|
| 13 |
-
from .
|
| 14 |
|
| 15 |
# round width
|
| 16 |
|
|
|
|
| 7 |
from torch.distributed.algorithms.ddp_comm_hooks import default as comm_hooks_default
|
| 8 |
from fvcore.nn.weight_init import c2_msra_fill, c2_xavier_fill
|
| 9 |
|
| 10 |
+
from .norm import get_norm
|
| 11 |
+
from .stem import VideoModelStem
|
| 12 |
+
from .resnet import ResStage
|
| 13 |
+
from .head import X3DHead
|
| 14 |
|
| 15 |
# round width
|
| 16 |
|