create a conda environment.
conda create -n xxx python==3.8.5
Then you can create the same environment as ours with the following command:
pip install -r requirements.txt # install all requirements
The code will do it for you!
Code will download Alex and move it into:
models/weights/v0.1/alex.pth
The code will do it for you!
Code will download i3D model pretrained on Kinetics-400 Use
models/fvd/convert_tf_pretrained.py
to makei3d_pretrained_400.pt
You can download these datasets such as RWTH-2014,RWTH-2014T and AUTSL.
How the data was processed:
- Download AUTSL dataset to
/path/to/AUTSL
:\- Convert 128x128 images to HDF5 format:
`python datasets/sign_language_convert.py --sl_dir 'datasets/videos' --split 'train' --out_dir 'datasets/signLanguages/train' --image_size 128 --force_h5 False