All Projects → cdqa-suite → cdQA-ui

cdqa-suite / cdQA-ui

Licence: Apache-2.0 License
⛔ [NOT MAINTAINED] A web interface for cdQA and other question answering systems.

Programming Languages

Vue
7211 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to cdQA-ui

FinBERT-QA
Financial Domain Question Answering with pre-trained BERT Language Model
Stars: ✭ 70 (+268.42%)
Mutual labels:  information-retrieval, question-answering, bert
Haystack
🔍 Haystack is an open source NLP framework that leverages Transformer models. It enables developers to implement production-ready neural search, question answering, semantic document search and summarization for a wide range of applications.
Stars: ✭ 3,409 (+17842.11%)
Mutual labels:  information-retrieval, question-answering, bert
text2text
Text2Text: Cross-lingual natural language processing and generation toolkit
Stars: ✭ 188 (+889.47%)
Mutual labels:  information-retrieval, question-answering, bert
cmrc2019
A Sentence Cloze Dataset for Chinese Machine Reading Comprehension (CMRC 2019)
Stars: ✭ 118 (+521.05%)
Mutual labels:  question-answering, reading-comprehension, bert
backprop
Backprop makes it simple to use, finetune, and deploy state-of-the-art ML models.
Stars: ✭ 229 (+1105.26%)
Mutual labels:  question-answering, bert
HAR
Code for WWW2019 paper "A Hierarchical Attention Retrieval Model for Healthcare Question Answering"
Stars: ✭ 22 (+15.79%)
Mutual labels:  information-retrieval, question-answering
Cross-Lingual-MRC
Cross-Lingual Machine Reading Comprehension (EMNLP 2019)
Stars: ✭ 66 (+247.37%)
Mutual labels:  reading-comprehension, bert
extractive rc by runtime mt
Code and datasets of "Multilingual Extractive Reading Comprehension by Runtime Machine Translation"
Stars: ✭ 36 (+89.47%)
Mutual labels:  question-answering, reading-comprehension
ProQA
Progressively Pretrained Dense Corpus Index for Open-Domain QA and Information Retrieval
Stars: ✭ 44 (+131.58%)
Mutual labels:  information-retrieval, question-answering
BERT-for-Chinese-Question-Answering
No description or website provided.
Stars: ✭ 75 (+294.74%)
Mutual labels:  question-answering, bert
co-attention
Pytorch implementation of "Dynamic Coattention Networks For Question Answering"
Stars: ✭ 54 (+184.21%)
Mutual labels:  question-answering, reading-comprehension
BERT-QE
Code and resources for the paper "BERT-QE: Contextualized Query Expansion for Document Re-ranking".
Stars: ✭ 43 (+126.32%)
Mutual labels:  information-retrieval, bert
exams-qa
A Multi-subject High School Examinations Dataset for Cross-lingual and Multilingual Question Answering
Stars: ✭ 25 (+31.58%)
Mutual labels:  question-answering, reading-comprehension
KitanaQA
KitanaQA: Adversarial training and data augmentation for neural question-answering models
Stars: ✭ 58 (+205.26%)
Mutual labels:  question-answering, bert
TriB-QA
吹逼我们是认真的
Stars: ✭ 45 (+136.84%)
Mutual labels:  question-answering, bert
explicit memory tracker
[ACL 2020] Explicit Memory Tracker with Coarse-to-Fine Reasoning for Conversational Machine Reading
Stars: ✭ 35 (+84.21%)
Mutual labels:  question-answering, reading-comprehension
PersianQA
Persian (Farsi) Question Answering Dataset (+ Models)
Stars: ✭ 114 (+500%)
Mutual labels:  question-answering, reading-comprehension
SQUAD2.Q-Augmented-Dataset
Augmented version of SQUAD 2.0 for Questions
Stars: ✭ 31 (+63.16%)
Mutual labels:  question-answering, bert
cherche
📑 Neural Search
Stars: ✭ 196 (+931.58%)
Mutual labels:  information-retrieval, question-answering
beir
A Heterogeneous Benchmark for Information Retrieval. Easy to use, evaluate your models across 15+ diverse IR datasets.
Stars: ✭ 738 (+3784.21%)
Mutual labels:  information-retrieval, bert

cdqa-ui

Build Status NPM Version NPM Downloads GitHub

A user interface for cdQA

Table of contents

Installation

npm install cdqa-ui

Import

import Vue from 'vue'
import CdqaUI from 'cdqa-ui'

Vue.use(CdqaUI)

cdqa-ui relies on bootstrap-vue, an external dependency that is not bundled with the component. Therefore you also need to import bootstrap-vue in your app entrypoint:

import Vue from 'vue'
import BootstrapVue from "bootstrap-vue"

Vue.use(BootstrapVue)

import "bootstrap/dist/css/bootstrap.css"
import "bootstrap-vue/dist/bootstrap-vue.css"

Usage

<CdqaUI api_endpoint_cpu="http://localhost:5000/api" :queries_examples="['What is Artificial Intelligence?', 'What is Blockchain?']"></CdqaUI>

Demo

Check our demo live at: https://cdqa-suite.github.io/cdQA-website

Properties

Name Type Default Description
api_endpoint_cpu string http://localhost:5000/api The url of your cdQA REST API on CPU.
api_endpoint_gpu string http://localhost:5000/api The url of your cdQA REST API on GPU.
queries_examples array ['What is artificial intelligence?', 'What is natural language processing?'] The list of example queries.

Development

Clone the repository

git clone https://github.com/cdqa-suite/cdQA-ui
cd cdQA-ui

Install package

npm install

Compiles and hot-reloads for development

npm run serve

Compiles and minifies for production

npm run build

This repo is based on vue-sfc-rollup, a minimal setup to produce npm-ready vue components. Releases are done automatically on master pushes (see travis.yml).

License

Apache-2.0

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].