├── README.md ├── SUMMARY.md ├── advances ├── README.md ├── iccv23_papers.md └── tutorials.md ├── assets ├── StyleHEAT.png └── sadtalker.png ├── benchmarks ├── assets │ └── file_structure.png ├── readme.md ├── test.ipynb └── utils │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-39.pyc │ └── video_processing.cpython-39.pyc │ └── video_processing.py ├── memory.md └── notes ├── StyleHEAT note.md ├── example.md ├── moda.md ├── readme.md └── sadtalker.md /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jason-cs18/awesome-avatar/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jason-cs18/awesome-avatar/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /advances/README.md: -------------------------------------------------------------------------------- 1 | # advances 2 | 3 | -------------------------------------------------------------------------------- /advances/iccv23_papers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jason-cs18/awesome-avatar/HEAD/advances/iccv23_papers.md -------------------------------------------------------------------------------- /advances/tutorials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jason-cs18/awesome-avatar/HEAD/advances/tutorials.md -------------------------------------------------------------------------------- /assets/StyleHEAT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jason-cs18/awesome-avatar/HEAD/assets/StyleHEAT.png -------------------------------------------------------------------------------- /assets/sadtalker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jason-cs18/awesome-avatar/HEAD/assets/sadtalker.png -------------------------------------------------------------------------------- /benchmarks/assets/file_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jason-cs18/awesome-avatar/HEAD/benchmarks/assets/file_structure.png -------------------------------------------------------------------------------- /benchmarks/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jason-cs18/awesome-avatar/HEAD/benchmarks/readme.md -------------------------------------------------------------------------------- /benchmarks/test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jason-cs18/awesome-avatar/HEAD/benchmarks/test.ipynb -------------------------------------------------------------------------------- /benchmarks/utils/__init__.py: -------------------------------------------------------------------------------- 1 | from .video_processing import count_sentences -------------------------------------------------------------------------------- /benchmarks/utils/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jason-cs18/awesome-avatar/HEAD/benchmarks/utils/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /benchmarks/utils/__pycache__/video_processing.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jason-cs18/awesome-avatar/HEAD/benchmarks/utils/__pycache__/video_processing.cpython-39.pyc -------------------------------------------------------------------------------- /benchmarks/utils/video_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jason-cs18/awesome-avatar/HEAD/benchmarks/utils/video_processing.py -------------------------------------------------------------------------------- /memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jason-cs18/awesome-avatar/HEAD/memory.md -------------------------------------------------------------------------------- /notes/StyleHEAT note.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jason-cs18/awesome-avatar/HEAD/notes/StyleHEAT note.md -------------------------------------------------------------------------------- /notes/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jason-cs18/awesome-avatar/HEAD/notes/example.md -------------------------------------------------------------------------------- /notes/moda.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notes/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jason-cs18/awesome-avatar/HEAD/notes/readme.md -------------------------------------------------------------------------------- /notes/sadtalker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jason-cs18/awesome-avatar/HEAD/notes/sadtalker.md --------------------------------------------------------------------------------