3

我正在学习如何使用 Pyfst 创建传感器,并且我正在尝试可视化我创建的传感器。最终目标是能够将传感器写入点文件并在 Graphviz 中查看它们。

我拿了一个示例代码来看看如何可视化以下接受器。

a = fst.Acceptor()
a.add_arc(0, 1, 'x', 0.1)
a[1].final = -1
a.draw()

当我使用软件包附带的 draw() 时,出现错误:

File "/Users/.../tests.py", line 42, in <module>
a.draw()

File "_fst.pyx", line 816, in fst._fst.StdVectorFst.draw
(fst/_fst.cpp:15487)

File "/Users/.../venv-3.6/lib/python3.6/re.py", line 191, in sub
return _compile(pattern, flags).sub(repl, string, count)

TypeError: cannot use a string pattern on a bytes-like object

如果我尝试通过以下方式将上述接受器写入 .dot:

def fst_dot(dot_object, filename):
path, file = split(filename)
new_path = join(dot_files_folder_path, path)
if not os.path.exists(new_path):
    os.makedirs(new_path)
if hasattr(dot_object, 'dotFormat'):
    draw_string = dot_object.dotFormat()
else:
    draw_string = dot_object.draw()
open(join(dot_files_folder_path, filename + ".dot"), "w").write(draw_string)

然后我也收到以下错误:

File "/Users/...tests.py", line 43, in <module>
fst_dot(a, 'acceptor')

File "/Users/...tests.py", line 22, in fst_dot
draw_string = dot_object.draw()

File "_fst.pyx", line 816, in fst._fst.StdVectorFst.draw
(fst/_fst.cpp:15487)

File "/Users/.../venv-3.6/lib/python3.6/re.py", line 191, in sub
return _compile(pattern, flags).sub(repl, string, count)

TypeError: cannot use a string pattern on a bytes-like object

所以,这两个错误看起来都一样——draw() 存在某种问题。在 pyfst 站点上,它说 draw 用于换能器的点格式表示。

我不明白如何修复错误。任何帮助将不胜感激。

我正在使用 OSX 和 PyCharm。

4

2 回答 2

3

您可以尝试使用 Python2 看看是否有帮助。

但是,我认为您最好使用 OpenFST 1.5+ 中包含的 Python 绑定。该库还具有写入 GraphViz.dot文件的能力。这里有可用的文档:

http://www.openfst.org/twiki/bin/view/FST/PythonExtension

于 2017-01-20T04:02:00.257 回答
2

我推荐你fstdraw使用 openfst 命令。

a.write('tmp.fst')python之后。 $ fstdraw tmp.fst > tmp.dot在壳中。

编辑:

最后,我发现 UFAL 的分叉 pyfst 与 python3 配合得很好。 https://github.com/UFAL-DSG/pyfst

于 2017-04-11T07:24:53.280 回答