由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
CS版 - 请问一个关于nlp parser的问题
相关主题
搜索领域还有何改进的地方?yacc/bison的调试和分析工具? (转载)
相似网站搜索LR(1) paser generator 的效率问题
VLDB 2009 paper出来了有没有做编译的大牛
请问关于mpi的问题解释程序怎么写?
一个机器学习的问题有没有c 或是 c++ 的bnf 文件
How to Parsing function in Haskell?C++ GrandMaster, 从零写C++编译器的公开课,大牛们怎么看?
semantic 和 syntactic 究竟啥区别?[转载] 问个 pattern recognition 的人
[转载] 词法分析中的\[转载] Re: 问个 pattern recognition 的人
相关话题的讨论汇总
话题: syntactic话题: parser话题: parse话题: sentence话题: tags
进入CS版参与讨论
1 (共1页)
q*****i
发帖数: 30
1
我在paper里面说我用parser assign syntactic tag. 结果一个reviewer 就刁难我,
说 a parser does much more than assigning syntactic tags to sentences. It
normally outputs the syntactic structure of a sentence in the form of a
parse tree.
我想知道syntactic parser 就是为了生成parse tree 还是为了分析sentence
structure, 结果形成了一个parse tree。或者说这些syntactic tag 与parse tree的
关系。
我的理解是:a parser is designed to recognize the constituents in the
sentence and their relations, whose results would be a set of syntactic tags
assigned to the sentence
n*****m
发帖数: 73
2
The reviewer is right.

tags

【在 q*****i 的大作中提到】
: 我在paper里面说我用parser assign syntactic tag. 结果一个reviewer 就刁难我,
: 说 a parser does much more than assigning syntactic tags to sentences. It
: normally outputs the syntactic structure of a sentence in the form of a
: parse tree.
: 我想知道syntactic parser 就是为了生成parse tree 还是为了分析sentence
: structure, 结果形成了一个parse tree。或者说这些syntactic tag 与parse tree的
: 关系。
: 我的理解是:a parser is designed to recognize the constituents in the
: sentence and their relations, whose results would be a set of syntactic tags
: assigned to the sentence

s*x
发帖数: 3328
3
你说得不明白吧,你说assign a tag容易让人以为是词法分析,实际上语法分析消除歧
义之后就是一个树的结构了,之后的动作都是对树的机构作的。当然如果你用不到这个
结构只是assign a tag,我猜你只是要做些统计的话,那只是一个特殊情况而已。

tags

【在 q*****i 的大作中提到】
: 我在paper里面说我用parser assign syntactic tag. 结果一个reviewer 就刁难我,
: 说 a parser does much more than assigning syntactic tags to sentences. It
: normally outputs the syntactic structure of a sentence in the form of a
: parse tree.
: 我想知道syntactic parser 就是为了生成parse tree 还是为了分析sentence
: structure, 结果形成了一个parse tree。或者说这些syntactic tag 与parse tree的
: 关系。
: 我的理解是:a parser is designed to recognize the constituents in the
: sentence and their relations, whose results would be a set of syntactic tags
: assigned to the sentence

d*****u
发帖数: 17243
4
一般nlp上说的tagging都是标注词性等等,没有生成结构
parser显然要生成结构的
而且更高级的parser不但会parse已有的词
还会添加empty category等等

tags

【在 q*****i 的大作中提到】
: 我在paper里面说我用parser assign syntactic tag. 结果一个reviewer 就刁难我,
: 说 a parser does much more than assigning syntactic tags to sentences. It
: normally outputs the syntactic structure of a sentence in the form of a
: parse tree.
: 我想知道syntactic parser 就是为了生成parse tree 还是为了分析sentence
: structure, 结果形成了一个parse tree。或者说这些syntactic tag 与parse tree的
: 关系。
: 我的理解是:a parser is designed to recognize the constituents in the
: sentence and their relations, whose results would be a set of syntactic tags
: assigned to the sentence

l*******s
发帖数: 1258
5
感觉你和reviewer都对,只是不同的两个方面。
parser的算法就是看局子里各个词之间的关系,而最后parser输出表现的形式就是一堆
的tag。

tags
form

【在 q*****i 的大作中提到】
: 我在paper里面说我用parser assign syntactic tag. 结果一个reviewer 就刁难我,
: 说 a parser does much more than assigning syntactic tags to sentences. It
: normally outputs the syntactic structure of a sentence in the form of a
: parse tree.
: 我想知道syntactic parser 就是为了生成parse tree 还是为了分析sentence
: structure, 结果形成了一个parse tree。或者说这些syntactic tag 与parse tree的
: 关系。
: 我的理解是:a parser is designed to recognize the constituents in the
: sentence and their relations, whose results would be a set of syntactic tags
: assigned to the sentence

1 (共1页)
进入CS版参与讨论
相关主题
[转载] Re: 问个 pattern recognition 的人一个机器学习的问题
an algorithm questionHow to Parsing function in Haskell?
morrissemantic 和 syntactic 究竟啥区别?
YACC tables (yyact, yypact, yypgo ...) 的问题 (转载)[转载] 词法分析中的\
搜索领域还有何改进的地方?yacc/bison的调试和分析工具? (转载)
相似网站搜索LR(1) paser generator 的效率问题
VLDB 2009 paper出来了有没有做编译的大牛
请问关于mpi的问题解释程序怎么写?
相关话题的讨论汇总
话题: syntactic话题: parser话题: parse话题: sentence话题: tags