Skip to content

Commit 6e8c8a0

Browse files
committed
Minor refactor
1 parent f3aa77e commit 6e8c8a0

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Current infernal projects:
2525
- [TalkingHead](inferno_apps/TalkingHead)
2626
- official release of [EMOTE: Emotional Speech- Driven Animation with C ontent- Emotion Disentanglement](https://emote.is.tue.mpg.de/index.html)
2727
- tools to run, train or finetune speech-driven 3D avatars
28-
- [FaceReconstruction](inferno_apps/EMOCA)
28+
- [FaceReconstruction](inferno_apps/FaceReconstruction)
2929
- contains EMICA - a combination of [DECA](https://deca.is.tue.mpg.de/), [EMOCA](https://emoca.is.tue.mpg.de/), [SPECTRE](https://filby89.github.io/spectre/) and [MICA](https://zielon.github.io/mica/) which produces excellent results
3030
- tools to run, train or fine-tune state-of-the-art in-the-wild face reconstruction
3131
- [MotionPrior](inferno_apps/MotionPrior)

inferno_apps/TalkingHead/data_processing/download_processed_mead.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ echo "Unzipping the detected ladmarks..."
7474
unzip -q landmarks.zip
7575
echo "Unzipping the recognized emotions..."
7676
unzip -q emotions.zip
77-
# echo "Unzipping the reconstructions used in the EMOTE paper"
78-
# unzip -q reconstruction_v0.zip
77+
echo "Unzipping the reconstructions used in the EMOTE paper"
78+
unzip -q reconstruction_v0.zip
7979
echo "Unzipping the newer version of the reconstructions..."
8080
unzip -q reconstruction_v1.zip
8181

inferno_apps/TalkingHead/utils/load.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ def load_model(path_to_models,
3737
cfg.learning.losses = {}
3838
cfg.learning.metrics = {}
3939

40-
faceformer = load_faceformer(cfg, mode,)
41-
return faceformer, cfg
40+
talkinghead_model = load_talking_head(cfg, mode,)
41+
return talkinghead_model, cfg
4242

4343

44-
def load_faceformer(
44+
def load_talking_head(
4545
cfg,
4646
mode,
4747
relative_to_path=None,

0 commit comments

Comments
 (0)