Watch a machine-learning system parse the grammatical structure of sentences
1–10 of 32 posts
Re: Watch a machine-learning system parse the grammatical structure of sentences
#2Re: Watch a machine-learning system parse the grammatical structure of sentences
#3It's cool that it parses on the fly. But unless it parses correctly I don't see how it actually serves a purpose other than just looking cool.
Re: Watch a machine-learning system parse the grammatical structure of sentences
#4Sorry machine, "farty" is an adjective, not a noun.
Re: Watch a machine-learning system parse the grammatical structure of sentences
#5Whilst an impressive demonstration, how is it an example of machine learning? It looks like lexical analysis to me.
Re: Watch a machine-learning system parse the grammatical structure of sentences
#6Re: Watch a machine-learning system parse the grammatical structure of sentences
#7Re: Watch a machine-learning system parse the grammatical structure of sentences
#8Seems to fall for a lot of easy traps. Garden path sentences ("The old man the boats" or "The horse raced past the barn fell") are parsed wrong, and it parses the two sentences/phrases "When he did that I laughed" and "When he said that I laughed" identically - by interpreting "that" as a preposition in both cases, which it isn't. It's cool that it parses on the fly. But unless it parses correctly I don't see how it…
Re: Watch a machine-learning system parse the grammatical structure of sentences
#9Whilst an impressive demonstration, how is it an example of machine learning? It looks like lexical analysis to me.
Same thoughts as mine. Seems like ML was just thrown in the title to get more hits.
Re: Watch a machine-learning system parse the grammatical structure of sentences
#10Spacy is a pretty good system. It's fast, way faster thank NLTK and the Stanford stuff and it's pretty accurate. Also it's licensing is pretty flexible. The only knock I have against it is the lack of bindings for languages other than Python, but whatever.