├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── contributing.md ├── images ├── README ├── img-001.png └── img-002.png └── mds ├── named-entity-recognition.md ├── rdf.md ├── reference-resolution.md └── relation-extraction.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriousran/awesome-qa/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriousran/awesome-qa/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriousran/awesome-qa/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriousran/awesome-qa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriousran/awesome-qa/HEAD/README.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriousran/awesome-qa/HEAD/contributing.md -------------------------------------------------------------------------------- /images/README: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /images/img-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriousran/awesome-qa/HEAD/images/img-001.png -------------------------------------------------------------------------------- /images/img-002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriousran/awesome-qa/HEAD/images/img-002.png -------------------------------------------------------------------------------- /mds/named-entity-recognition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriousran/awesome-qa/HEAD/mds/named-entity-recognition.md -------------------------------------------------------------------------------- /mds/rdf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriousran/awesome-qa/HEAD/mds/rdf.md -------------------------------------------------------------------------------- /mds/reference-resolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriousran/awesome-qa/HEAD/mds/reference-resolution.md -------------------------------------------------------------------------------- /mds/relation-extraction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seriousran/awesome-qa/HEAD/mds/relation-extraction.md --------------------------------------------------------------------------------