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: 16 days ago
JSON representation
Question-Answering Application with Django, BeautifulSoup, cdQA (Deep Learning)
- Host: GitHub
- URL: https://github.com/thepylot/Question-Answering-Application
- Owner: thepylot
- Created: 2020-03-04T12:10:19.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-06-20T18:54:33.000Z (over 4 years ago)
- Last Synced: 2024-09-05T13:13:43.598Z (2 months ago)
- Language: Python
- Size: 9.77 KB
- Stars: 5
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
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)