File size: 831 Bytes
6dfcb0f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
from setuptools import setup, find_packages

setup(
    name="cwm",
    version="1.0",
    packages=find_packages(),
    description="Video modeling transformers package for MAE",
    author="Dan Bear, Kevin Figelis, Honglin Chen, Rahul Venakatesh, Wanhee Lee, Dan Yamins, Klemen Kotar",
    install_requires=[
        # 'scipy',
        # 'scikit-learn',
        # 'matplotlib',
        # 'h5py',
        # 'kornia',
        # 'future',
        # 'einops',
        # 'timm',
        # 'opencv-python',
        # 'decord',
        # 'iopath',
        # 'pandas',
        # 'IPython',
        # 'tensorboardx',
        # 'tensorboard',
        # 'positional_encodings',
        # 'scikit-image',
        # 'packaging',
        # 'wandb',
        # 'numpy==1.23.5',
        # 'torch==2.0.0',
        # 'torchvision==0.15.1'
    ],
)