haven-jeon / LegalQA

Korean LegalQA using SentenceKoBART

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LegalQA using SentenceKoBART and OpenAI ChatGPT

Implementation of legal QA system based on SentenceKoBART

1. Setup

# install git lfs , https://github.com/git-lfs/git-lfs/wiki/Installation
curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash
sudo apt install git-lfs
git clone https://github.com/haven-jeon/LegalQA.git
cd LegalQA
git lfs pull
# If the lfs quota is exceeded, please download it with the command below.
# https://drive.google.com/file/d/1DJFMknxT7OAAWYFV_WGW2UcCxmuf3cp_/view?usp=sharing
# mv SentenceKoBART.bin model/
# pip install --use-deprecated=legacy-resolver  -r requirements.txt 
pip install -r requirements.txt

2. Approximate KNN Search with AnnLite

2.1. Index

python app.py -t index --flow flows/index_annlite.yml

GPU-based indexing available as an option

  • device: cuda

2.2. Query

# test on bash
python app.py -t query --flow flows/query_annlite.yml
# test on REST API
python app.py -t query_restful --flow flows/query_annlite.yml

2.2.1. Retrieval Augmented Response with OpenAI ChatGPT

OPENAI_API_KEY=$OPENAI_KEY python app.py -t query --flow flows/query_annlite_openai.yml

3. Run Chat Demo

OPENAI_API_KEY=$OPENAI_KEY python app.py -t query_restful --flow flows/query_annlite_openai.yml
streamlit run chat.py
default.mp4

4. Presentation

5. Demo

  • Working!

6. Links

7. FAQ

7.1. Why this dataset?

Legal data is composed of technical terms, so it is difficult to search if you are not familiar with these terms. Because of these characteristics, I thought it was a good example to show the effectiveness of neural IR.

7.2. LFS quota is exceeded

You can download SentenceKoBART.bin from one of the two links below.

8. Citation

Model training, data crawling, and demo system were all supported by the AWS Hero program.

@misc{heewon2021,
author = {Heewon Jeon},
title = {LegalQA using SentenceKoBART},
publisher = {GitHub},
journal = {GitHub repository},
howpublished = {\url{https://github.com/haven-jeon/LegalQA}}

9. License

  • QA data data/legalqa.jsonlines is crawled in www.freelawfirm.co.kr based on robots.txt. Commercial use other than academic use is prohibited.
  • We are not responsible for any legal decisions we make based on the resources provided here.

About

Korean LegalQA using SentenceKoBART

License:Other


Languages

Language:Python 98.3%Language:Dockerfile 0.9%Language:Shell 0.8%