Skip to content

Commit

Permalink
Change default name of the EMOTE model to EMOTE_v2. Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
radekd91 committed Dec 12, 2023
1 parent a2f5a0a commit 076e4ac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions inferno_apps/TalkingHead/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@
This is the official implementation of [EMOTE : Emotional Speech-Driven Animation with Copntent-Emotion Disentanglement](https://emote.is.tue.mpg.de/).
EMOTE takes speech audio and an emotion and intensity labels on the input and produces a talking head avatar that correctly articulates the words spoken in the audio while expressing the specified emotion.

## News
- (13th Dec. 2023) EMOTE v2 is now out! It is trained on a newer iteration of the data and should give better results overall. EMOTE v1 is still available. Please see the demo script for details.


## Installation

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def main():
parser.add_argument('--path_to_audio', type=str, default= str(get_path_to_assets() / "data/EMOTE_test_example_data/01_gday.wav"))
parser.add_argument('--output_folder', type=str, default="results", help="Output folder to save the results to.")
# parser.add_argument('--model_name', type=str, default='EMOTE', help='Name of the model to use.')
parser.add_argument('--model_name', type=str, default='EMOTEv2', help='Name of the model to use.')
parser.add_argument('--model_name', type=str, default='EMOTE_v2', help='Name of the model to use.')
parser.add_argument('--path_to_models', type=str, default=str(get_path_to_assets() / "TalkingHead/models"))
parser.add_argument('--save_video', type=bool, default=True, help="If true, output images will be saved")
parser.add_argument('--save_flame', type=bool, default=False, help="If true, output FLAME values for shape, expression, jaw pose will be saved")
Expand Down

0 comments on commit 076e4ac

Please sign in to comment.