Lurunchik commited on
Commit
85756d9
1 Parent(s): e8292ed

add Readme

Browse files
Files changed (1) hide show
  1. README.md +44 -1
README.md CHANGED
@@ -1,3 +1,46 @@
1
  ---
2
- license: mit
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
+
5
+ tags:
6
+ - text-classification
7
+
8
  ---
9
+ # Non Factoid Question Category classification in English
10
+ ## NFQA model
11
+
12
+ Repository: [https://github.com/Lurunchik/NF-CATS](https://github.com/Lurunchik/NF-CATS)
13
+
14
+
15
+ Model trained with NFQA dataset. Base model is [roberta-base-squad2](https://huggingface.co/deepset/roberta-base-squad2), a RoBERTa-based model for the task of Question Answering, fine-tuned using the SQuAD2.0 dataset.
16
+
17
+ Uses `NOT-A-QUESTION`, `FACTOID`, `DEBATE`, `EVIDENCE-BASED`, `INSTRUCTION`, `REASON`, `EXPERIENCE`, `COMPARISON` labels.
18
+
19
+ ## License
20
+
21
+ `nf-cats` is an open-source library for non-commercial use and scientific research purposes only.
22
+
23
+
24
+ ## Citation
25
+
26
+ If you use `NDQA-cats` in your work, please cite [this paper](https://dl.acm.org/doi/10.1145/3477495.3531926)
27
+
28
+ ```
29
+ @misc{bolotova2022nfcats,
30
+ author = {Bolotova, Valeriia and Blinov, Vladislav and Scholer, Falk and Croft, W. Bruce and Sanderson, Mark},
31
+ title = {A Non-Factoid Question-Answering Taxonomy},
32
+ year = {2022},
33
+ isbn = {9781450387323},
34
+ publisher = {Association for Computing Machinery},
35
+ address = {New York, NY, USA},
36
+ url = {https://doi.org/10.1145/3477495.3531926},
37
+ doi = {10.1145/3477495.3531926},
38
+ booktitle = {Proceedings of the 45th International ACM SIGIR Conference on Research and Development in Information Retrieval},
39
+ pages = {1196–1207},
40
+ numpages = {12},
41
+ keywords = {question taxonomy, non-factoid question-answering, editorial study, dataset analysis},
42
+ location = {Madrid, Spain},
43
+ series = {SIGIR '22}
44
+ }
45
+ ```
46
+ Enjoy! 🤗