gitextract_b0a1widz/ ├── .gitignore ├── README.md ├── code/ │ └── KGQA/ │ ├── KGQA_Based_On_medicine/ │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── apache_configuration/ │ │ ├── fuseki_conf.ttl │ │ ├── kgdrug.ttl │ │ └── rules.ttl │ ├── db.sqlite3 │ ├── kgqa/ │ │ ├── KB_query/ │ │ │ ├── dict/ │ │ │ │ ├── __init__.py │ │ │ │ ├── csv2txt.py │ │ │ │ ├── drug_name.txt │ │ │ │ ├── drug_pos_name.txt │ │ │ │ ├── jibing_name.txt │ │ │ │ ├── jibing_pos_name.txt │ │ │ │ ├── symptom_name.txt │ │ │ │ └── symptom_pos.txt │ │ │ ├── jena_sparql_endpoint.py │ │ │ ├── query_main.py │ │ │ ├── question2sparql.py │ │ │ ├── question_drug_template.py │ │ │ └── word_tagging.py │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations/ │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── template/ │ │ │ ├── css/ │ │ │ │ ├── animate.css │ │ │ │ ├── reset.css │ │ │ │ └── styles.css │ │ │ └── post.html │ │ ├── tests.py │ │ └── views.py │ ├── manage.py │ └── requirements.txt ├── cots/ │ └── refo-master/ │ ├── .travis.yml │ ├── LICENSE.txt │ ├── MANIFEST.in │ ├── README.md │ ├── README.txt │ ├── examples/ │ │ ├── path.py │ │ ├── poly_time.py │ │ ├── words.py │ │ └── xml_reader.py │ ├── refo/ │ │ ├── __init__.py │ │ ├── instructions.py │ │ ├── match.py │ │ ├── patterns.py │ │ └── virtualmachine.py │ ├── requirements.txt │ ├── setup.py │ ├── tests/ │ │ └── test_refo.py │ └── tox.ini └── doc/ ├── AIML1.0.1-用户手册.docx └── AIML2.0.docx