当前位置:   article > 正文

使用openVoice项目时,出现UserWarning: The `max_choices` parameter is ignored when `multiselect` is False._gr.dropdown(multiselect=true,

gr.dropdown(multiselect=true,
环境:python3.9
项目:openVoice

原因:openvoice_app.py文件的 gradio 插件使用了gr.Dropdown函数中的max_choices参数,需要把multiselect设置为True

完整代码如下:

            style_gr = gr.Dropdown(
                label="Style",
                info="Select a style of output audio for the synthesised speech. (Chinese only support 'default' now)",
                choices=['default', 'whispering', 'cheerful', 'terrified', 'angry', 'sad', 'friendly'],
                max_choices=1,
                value="default",
                multiselect=True
            )
            ```
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/506651
推荐阅读
相关标签
  

闽ICP备14008679号