Show HN: A Natural Language Query Engine Without Machine Learning
blog.ayoungprogrammer.com
Show HN: A Natural Language Query Engine Without Machine Learning
1–10 of 22 posts
Re: Show HN: A Natural Language Query Engine Without Machine Learning
#2I think you might get better results in the first stage using the dependency parse from CoreNLP - rather than the phrasal parse. Online demo at http://corenlp.run
If you're willing to drop CoreNLP there's also https://demos.explosion.ai/displacy/ that's worth checking out.
Re: Show HN: A Natural Language Query Engine Without Machine Learning
#3This Is cool! Is it easy to convert a mediawiki to the graph store your system reads?
Re: Show HN: A Natural Language Query Engine Without Machine Learning
#4This Is cool! Is it easy to convert a mediawiki to the graph store your system reads?
Wikidata (the wiki used) is not a regular MediaWiki but host special pages with structured data. See https://www.wikidata.org
Re: Show HN: A Natural Language Query Engine Without Machine Learning
#5This is cool! I like how you've iterated on a central concept (NLP) with different codebases.
Tip: The link to the source is pointing to github pages, which hasn't been set up.
Re: Show HN: A Natural Language Query Engine Without Machine Learning
#6This is cool! I like how you've iterated on a central concept (NLP) with different codebases. Tip: The link to the source is pointing to github pages, which hasn't been set up.
Thanks! Fixed the link.
Re: Show HN: A Natural Language Query Engine Without Machine Learning
#7Partially related - has anyone worked on natural language queries with time expressions in it? Imagine analytics queries, where you want to count the number of events/unique users, given certain conditions, and in a certain time window. i'm particularly interested in the time aspect of it.
Re: Show HN: A Natural Language Query Engine Without Machine Learning
#8Have you studied Prolog? Its matching (logical unification) capability may give you some more ideas.
Re: Show HN: A Natural Language Query Engine Without Machine Learning
#9This is nice! Would it be possible to run the code with other language models? (Spanish, German, and any other CoreNLP language model)
Re: Show HN: A Natural Language Query Engine Without Machine Learning
#10This is nice! Would it be possible to run the code with other language models? (Spanish, German, and any other CoreNLP language model)
Yes it should be possible! You would need to add the grammar matching rules for those languages though.