我正在研究SyntaxNet的context.pbtxt用法,我有一个问题。
我想在context.pbtxt文件中定义tagger和parser的自我功能,
但我找不到任何教程或文档来解释如何使用标记
用于定义context.pbtxt文件中的功能的语言。
例如,任何人都可以向我解释以下程序:
stack(3).word stack(2).word stack(1).word stack.word input.word input(1).word input(2).word input(3).word;input.digit input.hyphen;stack.suffix(length=2) input.suffix(length=2) input(1).suffix(length=2);stack.prefix(length=2) input.prefix(length=2) input(1).prefix(length=2)
有人可以给我一些提示来学习定义的功能吗?