-
Notifications
You must be signed in to change notification settings - Fork 19
Get Start
Alpha-Video edited this page May 6, 2020
·
1 revision
Run this command:
pip install alphavideoRun this command:
pip install alphavideoClone repository from github:
git clone https://github.com/ alphavideo
cd alphavideoSetup and install MVIdeoGallery:
pip install .Firstly, check the version of MVIdeoGallery.
import alphavideo
print(alphavideo.__version__)To ensure that MVIdeoGallery was installed correctly, we can verify the installation by running sample MVIdeoGallery code. Here we will construct a MOT model.
model = alphavideo.model.tubeTK(pretrain=False)
print(model)The output should be something similar to:
...(other structure)...
(TubeTK_cls): Conv3d(256, 1, kernel_size=(3, 3, 3), stride=(1, 1, 1), padding=(1, 1, 1))
(TubeTK_reg): Conv3d(256, 14, kernel_size=(3, 3, 3), stride=(1, 1, 1), padding=(1, 1, 1))
(TubeTK_centerness): Conv3d(256, 1, kernel_size=(3, 3, 3), stride=(1, 1, 1), padding=(1, 1, 1))
(scales): ModuleList(
(0): Scale()
(1): Scale()
(2): Scale()
(3): Scale()
(4): Scale()
)
)
)