What are some of the ways to convert NLP to SQL?

后端 未结 3 489
伪装坚强ぢ
伪装坚强ぢ 2021-02-06 13:43

Recently, have started working on the idea of conversational chatbot and have been thinking of different ways to convert Natural Language query to SQL. These are some of the li

相关标签:
3条回答
  • 2021-02-06 14:17

    The main challenge here is to fit end-user needs. Most of the end-users are not technically skilled enough and they don't know database schema.

    All open-sourced libraries mentioned here requires to use column names inside input requests, so end-user should design request as "give me count for column_name where column_name is lower than 120". This assumption is wrong because end-users usually don't care about database structure and column names. With open-source libraries, you can create another Structure Query Language layer on top of the usual SQL.

    I would recommend having a look at NLP libraries before building your service:

    BERT ==== https://github.com/hanxiao/bert-as-service

    Sentence Transformers ==== https://github.com/UKPLab/sentence-transformers

    VaderSentiment ==== https://github.com/cjhutto/vaderSentiment

    Also, I would recommend having a look at NLP to SQL software architecture and existing commercial software for Natural Language to SQL

    0 讨论(0)
  • 2021-02-06 14:25

    Check this open source Python framework (started in 2014):

    • https://pypi.org/project/quepy/
    • https://quepy.readthedocs.io/en/latest/

    Quepy is a framework to convert natural language to database queries. It can be easily customized to different kinds of questions in natural language and database queries. So, with little coding you can build your own system for natural language access to your database.

    0 讨论(0)
  • 2021-02-06 14:34

    check this demo from AllenNLP: https://demo.allennlp.org/atis-parser

    Which converts Natural Language text into SQL queries. They also have python library allennlp.

    Here is their github repo: https://github.com/allenai/allennlp

    For documentation regarding semantic_parsing:

    https://allenai.github.io/allennlp-docs/api/allennlp.data.dataset_readers.semantic_parsing.html

    0 讨论(0)
提交回复
热议问题