10

我有一个调试问题。

由于我在这里很新,请原谅可能出现的文字墙。

几个小时后,我终于elementtree做了我想做的事,但我无法输出我的结果,因为

tree.write("output3.xml")

print(ET.tostring(root))

给我

TypeError:无法序列化 0.029999999999999999(float64 类型)

我不知道你们需要什么来帮助我,所有的源代码都很长。错误信息也是如此。但这有点容易,所以我把它贴在这里......

提前注意:

  • 据我所见,Ctrl+FI 在我的数据中没有那个 0.029999999...
  • 我的数据中的所有数字都四舍五入到小数点后两位
  • 顺便说一句,四舍五入会改变什么吗?还是只是为了展示?
  • 我对此感到非常困惑,特别是因为似乎没有可通过谷歌搜索的类似案例,只有几乎但不是完全足够的案例。

-------------------------------------------------- ------------------------- TypeError Traceback (最近一次调用最后一次) in () ----> 1 tree.write("output3.xml ")

C:\Anaconda\lib\xml\etree\ElementTree.pyc in write(self, file_or_filename, encoding, xml_declaration, default_namespace, method) 818) 819 serialize = _serialize[method] --> 820 serialize(write, self._root, encoding, qnames, namespaces) 821 if file_or_filename is not file: 822 file.close()

C:\Anaconda\lib\xml\etree\ElementTree.pyc in _serialize_xml(write, elem, encoding, qnames, namespaces) 937 write(_escape_cdata(text, encoding)) 938 for e in elem: --> 939 _serialize_xml(write , e, encoding, qnames, None) 940 write("") 941 else:

C:\Anaconda\lib\xml\etree\ElementTree.pyc in _serialize_xml(write, elem, encoding, qnames, namespaces) 937 write(_escape_cdata(text, encoding)) 938 for e in elem: --> 939 _serialize_xml(write , e, encoding, qnames, None) 940 write("") 941 else:

C:\Anaconda\lib\xml\etree\ElementTree.pyc in _serialize_xml(write, elem, encoding, qnames, namespaces) 937 write(_escape_cdata(text, encoding)) 938 for e in elem: --> 939 _serialize_xml(write , e, encoding, qnames, None) 940 write("") 941 else:

C:\Anaconda\lib\xml\etree\ElementTree.pyc in _serialize_xml(write, elem, encoding, qnames, namespaces) 937 write(_escape_cdata(text, encoding)) 938 for e in elem: --> 939 _serialize_xml(write , e, encoding, qnames, None) 940 write("") 941 else:

C:\Anaconda\lib\xml\etree\ElementTree.pyc in _serialize_xml(write, elem, encoding, qnames, namespaces) 937 write(_escape_cdata(text, encoding)) 938 for e in elem: --> 939 _serialize_xml(write , e, encoding, qnames, None) 940 write("") 941 else:

C:\Anaconda\lib\xml\etree\ElementTree.pyc in _serialize_xml(write, elem, encoding, qnames, namespaces) 930 v = qnames[v.text] 931 else: --> 932 v = _escape_attrib(v, encoding ) 933 write(" %s=\"%s\"" % (qnames[k], v)) 934 if text or len(elem):

C:\Anaconda\lib\xml\etree\ElementTree.pyc in _escape_attrib(text, encoding) 1090 return text.encode(encoding, "xmlcharrefreplace") 1091 except (TypeError, AttributeError): -> 1092 _raise_serialization_error(text) 1093 1094 def _escape_attrib_html(文本,编码):

C:\Anaconda\lib\xml\etree\ElementTree.pyc in _raise_serialization_error(text) 1050 def _raise_serialization_error(text): 1051 raise TypeError( -> 1052 "cannot serialize %r (type %s)" % (text, type(文字).名称) 1053 ) 1054

TypeError:无法序列化 0.029999999999999999(float64 类型)

好的,首先先编辑。我将粘贴我想要实现的精华的屏幕截图。

手头的任务是使用 python 和 pandas 和elementtree更新 xml 文件。

该文件由文本转语音系统 MARY 输出,包含如何合成给定话语的信息。

该文件具有以下结构(简化)

<phrase>
<word>
<syllable = "t e s t">
<phone = "t" duration = "30" end = "230">
<phone = "e" duration = "90" end = "320" f0 = "(25,144)(50,145)(75,150)(100,149)">
...and so on...see screenshot for details...

这意味着对于单词“test”中的任何给定音素/声音,XML 包含声学信息,按以下顺序排列:声音类型、长度、时间端点、音高 (f0) 曲线。f0 曲线由元组组成(时间点@经过的时间百分比,音高(以赫兹为单位)@时间点)

从另一个程序 PRAAT 中,我获得了更新的计时和音高信息,存储在数据帧中,请参见其他屏幕截图。

我的 Python 解析 xml 并覆盖每个声音的声学信息。但随后无法输出。

答案中的浮动初学者链接使事情变得更加清晰。显然四舍五入根本没有帮助。

我可能没有浮点数并使用字符串,但奇怪的是我的数据框中的东西似乎是字符串,因为当我尝试对从那里提取的任何值应用 round() 函数时,它会抗议输入不是浮点数...

筛选:

是的。伟大的。需要更多的图像声誉。老鼠。所以只是链接。

http://puu.sh/bzQQr/6fed162db8.png

http://puu.sh/bzQNq/23490bfb63.png

4

1 回答 1

24

您应该将您的问题归结为一个简单的示例这可能会帮助您自己解决问题,但更重要的是,现在阅读它的任何人基本上都必须猜测您的意图,因为您没有展示您的代码、输入或预期输出的示例。

问题可能是您正在设置属性的值ElementTreeNumpy对象。ElementTree 库不知道该类型,也不会尝试将其静默转换为字符串。textfloat64float64

例如,您的代码中可能有这样的内容(我不知道您的代码是如何工作的,因为您没有显示它):

# the value 0.3 cannot be exactly represented in floating points
# read this for starters: https://docs.python.org/3/tutorial/floatingpoint.html
et.find(".//element").text = float64(0.3)

你应该用这个替换它:

et.find(".//element").text = str(float64(0.3))

Python 本身以及它的大多数标准库都对类型检查非常严格,并且不会自动从数字类型转换为字符串。

于 2014-09-15T02:05:00.380 回答