Skip to content

Commit

Permalink
Update ctm_inference.py
Browse files Browse the repository at this point in the history
  • Loading branch information
koichi-saito-sony authored Aug 29, 2024
1 parent c3edf59 commit 6ccd44d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ctm_inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def parse_args():
)
parser.add_argument(
"--sampler", type=str, default='determinisitc',
help="Inference sampling methods. You can choose ['determinisitc' (gamma=0), 'cm_multistep' (gamma=1), 'gamma_multistep']."
help="Inference sampling methods. You can choose ['determinisitc' (gamma=0), 'cm_multistep' (gamma=1), 'gamma_multistep', 'onestep']."
)
parser.add_argument(
"--sampling_gamma", type=float, default=0.9,
Expand Down Expand Up @@ -212,4 +212,4 @@ def main():
sf.write("{}/{}.wav".format(output_dir, filename), wav, samplerate=args.sampling_rate)

if __name__ == "__main__":
main()
main()

0 comments on commit 6ccd44d

Please sign in to comment.