本文主要是介绍解决Tacotron中的“ValueError: operands could not be broadcast together with shapes (1,1025) (0,)”,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
解决Tacotron中的“ValueError: operands could not be broadcast together with shapes (1,1025) (0,)”
今天在Tacotron数据预处理中,无脑使用python preprocess.py,结果报错如下:
ValueError: operands could not be broadcast together with shapes (1,1025) (0,)
一开始还以为是参数没有添加,后来再看preprocess.py中的参数,都设置好了默认参数,然后查看了数据是否为空,最后又检查了一次输出路径,都是存在的情况下,开始思考是不是python里的某个库没法使用或者版本不对,既然是报错
operands could not be broadcast together with shapes (1,1025) (0,)
说明肯定是numpy的版本不对(这已经不是第一次遇到这个问题了),于是上网查了一下,在这里找到了问题的答案,再次感谢大佬们!!!
引用自
https://ask.csdn.net/questions/3025063
这篇关于解决Tacotron中的“ValueError: operands could not be broadcast together with shapes (1,1025) (0,)”的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!