Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/thepylot/Question-Answering-Application

Question-Answering Application with Django, BeautifulSoup, cdQA (Deep Learning)
https://github.com/thepylot/Question-Answering-Application

Last synced: 3 months ago
JSON representation

Question-Answering Application with Django, BeautifulSoup, cdQA (Deep Learning)

Lists

README

        

# Question-Answering-Application
Question-Answering Application with Django, BeautifulSoup, cdQA (Deep Learning)

## Getting Started

This project works on **Python 3+** and Django 2+.

Install dependencies:

```
python3 -m pip3 install -r requirements.txt
```

Download pre-trained models from cdQA and include into your project:

```
from cdqa.utils.download import download_model
download_model(model='bert-squad_1.1', dir='./models')
```
for more details visit: [How to create your own Question-Answering system easily with python](https://towardsdatascience.com/how-to-create-your-own-question-answering-system-easily-with-python-2ef8abc8eb5)