diff --git a/README.md b/README.md index ca27c70..b423011 100644 --- a/README.md +++ b/README.md @@ -120,7 +120,7 @@ We use the same extractors provided by https://github.com/EricGuo5513/text-to-mo ## Generating and Animating 3D Motions (HumanML3D) -#### Translating motions into langauge (using test sets) +### Translating motions into langauge (using test sets) With Beam Search: ```sh python evaluate_m2t_transformer.py --name M2T_EL4_DL4_NH8_PS --gpu_id 2 --num_results 20 --n_enc_rs 4 --n_dec_layers 4 --proj_share_weight --ext beam_search @@ -131,13 +131,13 @@ With Sampling: python evaluate_m2t_transformer.py --name M2T_EL4_DL4_NH8_PS --gpu_id 2 --num_results 20 --n_enc_layers 4 --n_dec_layers 4 --proj_share_weight --sample --top_k 3 --ext top_3 ``` -#### Generating motions from texts (using test sets) +### Generating motions from texts (using test sets) ```sh python evaluate_t2m_seq2seq.py --name T2M_Seq2Seq_NML1_Ear_SME0_N --num_results 10 --repeat_times 3 --sample --ext sample ``` where *--repeat_time* gives how many sampling rounds are carried out for each description. This script will results in 3x10 animations under directory *./eval_results/t2m/T2M_Seq2Seq_NML1_Ear_SME0_N/sample/*. -#### Sampling results from customized descriptions +### Sampling results from customized descriptions ```sh python gen_script_t2m_seq2seq.py --name T2M_Seq2Seq_NML1_Ear_SME0_N --repeat_times 3 --sample --ext customized --text_file ./input.txt ```