SmoothNet
[ECCV 2022] Official implementation of the paper "SmoothNet: A Plug-and-Play Network for Refining Human Poses in Videos"
File Explorer
- aist_vibe_3D.yaml
- h36m_fcn_3D.yaml
- pw3d_spin_3D.yaml
- evaluate.py
- evaluate_config.py
- loss.py
- train_config.py
- trainer.py
- visualize_config.py
- __init__.py
- aist_dataset.py
- h36m_dataset.py
- jhmdb_dataset.py
- mpiinf3dhp_dataset.py
- mupots_dataset.py
- pw3d_dataset.py
- gaus1d_filter.py
- oneeuro_filter.py
- savgol_filer.py
- smoothnet.py
- smpl.py
- eval_metrics.py
- geometry_utils.py
- render.py
- utils.py
- visualize.py
- visualize_2d.py
- visualize_3d.py
- visualize_skeleton.py
- visualize_smpl.py
- install_conda.sh
- .gitignore
- eval_smoothnet.py
- LICENSE
- README.md
- requirements.txt
- train_smoothnet.py
- visualize_smoothnet.py
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
conda
View Details ▼
conda
Package, dependency, and environment management for any programming language.
Some subcommands such as `create` have their own usage documentation.
See also: `mamba`.
conda create {{[-n|--name]}} {{environment_name}} {{python=3.9 matplotlib}}
Create a new environment, installing named packages into it:
conda info {{[-e|--envs]}}
List all environments:
conda activate {{environment_name}}
Activate an environment:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
