├── .dockerignore ├── .gitignore ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Makefile ├── Makefile.common ├── PATENTS ├── README.md ├── high_level.png ├── lucida ├── Makefile ├── README.md ├── asyncthrift │ ├── .gitignore │ └── fake │ │ ├── .gitignore │ │ ├── auto.sh │ │ ├── fakecmd_cpp │ │ ├── FakeCMDServer.cpp │ │ └── Makefile │ │ ├── fakecmd_py │ │ ├── FakeCMDClient.py │ │ ├── FakeCMDServer.py │ │ ├── Makefile │ │ └── requirements.txt │ │ ├── fakeimm │ │ ├── FakeIMMHandler.cpp │ │ ├── FakeIMMHandler.h │ │ ├── FakeIMMServer.cpp │ │ └── Makefile │ │ └── fakeqa │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── build.xml │ │ ├── lib │ │ └── thrift │ │ │ ├── libthrift-0.9.2.jar │ │ │ ├── log4j-1.2.14.jar │ │ │ ├── slf4j-api-1.5.8.jar │ │ │ └── slf4j-log4j12-1.5.8.jar │ │ └── src │ │ └── lucida │ │ ├── handler │ │ └── QAServiceHandler.java │ │ ├── main │ │ └── QADaemon.java │ │ └── thrift │ │ ├── LucidaService.java │ │ ├── QueryInput.java │ │ └── QuerySpec.java ├── botframework-interface │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── deps │ │ ├── install_ngrok.sh │ │ ├── install_node.sh │ │ └── install_phantomjs.sh │ ├── interface.js │ ├── package.json │ ├── proxy_configuration.png │ ├── set_endpoint.js │ └── start_interface.sh ├── calendar │ ├── .gitignore │ ├── CalendarClient │ │ ├── CalendarClient.java │ │ ├── compile-Calendar-client.sh │ │ ├── lib │ │ │ ├── libthrift-0.9.3.jar │ │ │ ├── slf4j-api-1.7.13.jar │ │ │ └── slf4j-simple-1.7.13.jar │ │ └── start-Calendar-client.sh │ ├── Makefile │ ├── README.md │ ├── build.gradle │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── src │ │ └── main │ │ └── java │ │ └── calendar │ │ ├── CAServiceHandler.java │ │ ├── CalendarDaemon.java │ │ └── TextProcessor.java ├── commandcenter │ ├── .gitignore │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── apache │ │ ├── apache.wsgi │ │ ├── conf │ │ │ ├── 000-default.conf │ │ │ └── 000-default_https.conf │ │ ├── install_apache.sh │ │ └── logs │ │ │ └── .gitignore │ ├── app.py │ ├── clear_db.sh │ ├── controllers │ │ ├── AccessManagement.py │ │ ├── Config.py │ │ ├── ConfigChecker.py │ │ ├── Create.py │ │ ├── Database.py │ │ ├── Decision.py │ │ ├── Graph.py │ │ ├── Infer.py │ │ ├── Learn.py │ │ ├── LoginForm.py │ │ ├── Main.py │ │ ├── Memcached.py │ │ ├── Parser.py │ │ ├── QueryClassifier.py │ │ ├── RegistrationForm.py │ │ ├── Service.py │ │ ├── ThriftClient.py │ │ ├── User.py │ │ ├── Utilities.py │ │ ├── WebSocket.py │ │ ├── __init__.py │ │ └── dcm │ │ │ ├── Decision.py │ │ │ ├── IMMDCM.py │ │ │ ├── WEDCM.py │ │ │ └── __init__.py │ ├── data │ │ ├── class_CA.txt │ │ ├── class_DIG.txt │ │ ├── class_FACE.txt │ │ ├── class_IMC.txt │ │ ├── class_IMM.txt │ │ ├── class_IMM_DCM_QA_WE.txt │ │ ├── class_IMM_QA.txt │ │ ├── class_MS.txt │ │ ├── class_QA.txt │ │ ├── class_WE.txt │ │ └── class_WE_DCM.txt │ ├── gen_certs.sh │ ├── static │ │ ├── css │ │ │ ├── asr.css │ │ │ ├── bootstrap.min.css │ │ │ ├── sticky-footer.css │ │ │ └── thumbnail.css │ │ ├── image │ │ │ ├── djinn.png │ │ │ ├── lucida.ico │ │ │ ├── lucida.jpg │ │ │ ├── microphone.png │ │ │ ├── microphone_off.png │ │ │ ├── pause.png │ │ │ ├── pause2.png │ │ │ ├── speech_bubble.png │ │ │ ├── speech_bubble_page.png │ │ │ ├── speech_bubble_page_r.png │ │ │ ├── speech_bubble_reverse.png │ │ │ ├── user.png │ │ │ ├── volume_off.png │ │ │ └── volume_on.png │ │ └── js │ │ │ ├── bootstrap.min.js │ │ │ ├── calendar.js │ │ │ ├── dictate.js │ │ │ ├── jquery-1.10.2.min.js │ │ │ ├── mob.js │ │ │ ├── recorder.js │ │ │ ├── recorderWorker.js │ │ │ ├── resultSpeaker.js │ │ │ ├── speech-streamer.js │ │ │ └── speex.min.js │ └── templates │ │ ├── base.html │ │ ├── contact.html │ │ ├── create.html │ │ ├── index.html │ │ ├── infer.html │ │ ├── learn.html │ │ ├── login.html │ │ ├── profile.html │ │ └── signup.html ├── config.properties ├── djinntonic │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── dig │ │ ├── DIGHandler.cpp │ │ ├── DIGHandler.h │ │ ├── DIGServer.cpp │ │ ├── Makefile │ │ ├── Makefile.config │ │ ├── Parser.h │ │ ├── configs │ │ │ └── dig.prototxt │ │ ├── input │ │ │ ├── 0.jpg │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── 8.jpg │ │ │ ├── 9.jpg │ │ │ ├── johannpic.jpg │ │ │ └── png │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ └── test │ │ │ ├── DIGClient.cpp │ │ │ ├── Makefile │ │ │ ├── test0.jpg │ │ │ ├── test1.jpg │ │ │ └── test2.jpg │ ├── face │ │ ├── FACEHandler.cpp │ │ ├── FACEHandler.h │ │ ├── FACEServer.cpp │ │ ├── Makefile │ │ ├── Makefile.config │ │ ├── Parser.h │ │ ├── configs │ │ │ └── face.prototxt │ │ ├── face-classes.txt │ │ ├── input │ │ │ ├── angelina-jolie-03-152.jpg │ │ │ ├── beyonce-knowles-09.jpg │ │ │ ├── cameron-diaz-11-152.jpg │ │ │ ├── daniel-craig-20-152.jpg │ │ │ ├── johannpic.jpg │ │ │ ├── tom-cruise-78.jpg │ │ │ ├── uma-thurman-79.jpg │ │ │ └── zac-efron-83.jpg │ │ └── test │ │ │ ├── FACEClient.cpp │ │ │ ├── Makefile │ │ │ ├── test0.jpg │ │ │ ├── test1.jpg │ │ │ └── test2.jpg │ ├── imc │ │ ├── IMCHandler.cpp │ │ ├── IMCHandler.h │ │ ├── IMCServer.cpp │ │ ├── Makefile │ │ ├── Makefile.config │ │ ├── Parser.h │ │ ├── configs │ │ │ └── imc.prototxt │ │ ├── imc-classes.txt │ │ ├── input │ │ │ ├── bear.jpg │ │ │ ├── beer-227.jpg │ │ │ ├── cat-281-227.jpg │ │ │ ├── dog-208-227.jpg │ │ │ ├── johannpic.jpg │ │ │ ├── rabbits-227-227.jpg │ │ │ └── tp-999-227.jpg │ │ ├── make_imc.sh │ │ └── test │ │ │ ├── IMCClient.cpp │ │ │ ├── Makefile │ │ │ ├── test0.jpg │ │ │ ├── test1.jpg │ │ │ └── test2.jpg │ ├── models │ │ └── .gitignore │ └── tools │ │ ├── common.hpp │ │ ├── install-caffe.sh │ │ └── install-protobuf.sh ├── imagematching │ ├── Makefile │ ├── README.md │ └── opencv_imm │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── README.md │ │ ├── server │ │ ├── IMMHandler.cpp │ │ ├── IMMHandler.h │ │ ├── IMMServer.cpp │ │ ├── Image.cpp │ │ ├── Image.h │ │ ├── Makefile │ │ └── Parser.h │ │ └── test │ │ ├── IMMClient.cpp │ │ ├── Makefile │ │ ├── Parser.h │ │ ├── test0.jpg │ │ ├── test1.jpg │ │ ├── test2.jpg │ │ ├── test3.jpg │ │ ├── test4.jpg │ │ ├── test5.jpg │ │ ├── test6.jpg │ │ └── test_db │ │ ├── aya-sofya.jpg │ │ ├── big-ben.jpg │ │ ├── brandenburg-gate.jpg │ │ ├── eiffel-tower.jpg │ │ ├── empire-state-building.jpg │ │ ├── golden-gate.jpg │ │ ├── great-wall-of-china.jpg │ │ ├── pyramids-egypt.jpg │ │ ├── roman-colosseum.jpg │ │ ├── statue-of-liberty.jpg │ │ ├── sydney-opera-house.jpg │ │ ├── taj-mahal.jpg │ │ └── tower-pisa.jpg ├── lucidaservice.thrift ├── lucidatypes.thrift ├── musicservice │ ├── .gitignore │ ├── Makefile │ ├── MusicConfig.py │ ├── README.md │ ├── client │ │ └── client.py │ ├── helper.py │ ├── pygn │ │ ├── Pygn.py │ │ └── __init__.py │ └── server │ │ └── server.py ├── questionanswering │ ├── .gitignore │ ├── Makefile │ ├── OpenEphyra │ │ ├── .gitignore │ │ ├── CHANGES │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── build.xml │ │ ├── conf │ │ │ ├── info.ephyra.nlp.StanfordParser.properties │ │ │ ├── info.ephyra.questionanalysis.atype.FocusFinder.properties │ │ │ ├── info.ephyra.questionanalysis.atype.QuestionClassifierFactory.properties │ │ │ ├── info.ephyra.questionanalysis.atype.WordNetAnswerTypeMapping.properties │ │ │ ├── info.ephyra.questionanalysis.atype.classifier.HybridQuestionClassifier.properties │ │ │ ├── info.ephyra.questionanalysis.atype.classifier.RuleBasedQuestionClassifier.properties │ │ │ ├── info.ephyra.questionanalysis.atype.classifier.TrainedQuestionClassifier.properties │ │ │ ├── info.ephyra.questionanalysis.atype.extractor.FeatureExtractor.properties │ │ │ ├── info.ephyra.questionanalysis.atype.extractor.FeatureExtractorFactory.properties │ │ │ ├── info.ephyra.questionanalysis.atype.minorthird.hierarchical.HierarchicalClassifierTrainer.properties │ │ │ └── log4j.properties │ │ ├── javadoc.xml │ │ ├── lib │ │ │ ├── db │ │ │ │ └── mongo-java-driver-3.2.2.jar │ │ │ ├── learn │ │ │ │ └── jsoup-1.8.3.jar │ │ │ ├── ml │ │ │ │ ├── maxent.jar │ │ │ │ ├── maxent.license │ │ │ │ ├── maxent.version │ │ │ │ ├── minorthird.jar │ │ │ │ ├── minorthird.license │ │ │ │ └── minorthird.version │ │ │ ├── nlp │ │ │ │ ├── jwnl.jar │ │ │ │ ├── jwnl.license │ │ │ │ ├── jwnl.version │ │ │ │ ├── lingpipe.jar │ │ │ │ ├── lingpipe.license │ │ │ │ ├── lingpipe.version │ │ │ │ ├── opennlp-tools.jar │ │ │ │ ├── opennlp-tools.license │ │ │ │ ├── opennlp-tools.version │ │ │ │ ├── plingstemmer.jar │ │ │ │ ├── plingstemmer.license │ │ │ │ ├── plingstemmer.version │ │ │ │ ├── snowball.jar │ │ │ │ ├── snowball.license │ │ │ │ ├── snowball.version │ │ │ │ ├── stanford-ner.jar │ │ │ │ ├── stanford-ner.license │ │ │ │ ├── stanford-ner.version │ │ │ │ ├── stanford-parser.jar │ │ │ │ ├── stanford-parser.license │ │ │ │ ├── stanford-parser.version │ │ │ │ ├── stanford-postagger.jar │ │ │ │ ├── stanford-postagger.license │ │ │ │ └── stanford-postagger.version │ │ │ ├── qa │ │ │ │ ├── javelin.jar │ │ │ │ └── javelin.version │ │ │ ├── search │ │ │ │ ├── bing-search-java-sdk.jar │ │ │ │ ├── bing-search-java-sdk.license │ │ │ │ ├── bing-search-java-sdk.version │ │ │ │ ├── googleapi.jar │ │ │ │ ├── googleapi.license │ │ │ │ ├── googleapi.version │ │ │ │ ├── indri.jar │ │ │ │ ├── indri.jar.old │ │ │ │ ├── indri.license │ │ │ │ ├── indri.version │ │ │ │ ├── libindri_jni.jnilib │ │ │ │ ├── libindri_jni.so │ │ │ │ ├── yahoosearch.jar │ │ │ │ ├── yahoosearch.license │ │ │ │ └── yahoosearch.version │ │ │ ├── thrift │ │ │ │ ├── libthrift-0.9.2.jar │ │ │ │ ├── log4j-1.2.14.jar │ │ │ │ ├── slf4j-api-1.5.8.jar │ │ │ │ └── slf4j-log4j12-1.5.8.jar │ │ │ └── util │ │ │ │ ├── commons-logging.jar │ │ │ │ ├── commons-logging.license │ │ │ │ ├── commons-logging.version │ │ │ │ ├── gson.jar │ │ │ │ ├── gson.license │ │ │ │ ├── gson.version │ │ │ │ ├── htmlparser.jar │ │ │ │ ├── htmlparser.license │ │ │ │ ├── htmlparser.version │ │ │ │ ├── jetty-all.jar │ │ │ │ ├── log4j.jar │ │ │ │ ├── log4j.license │ │ │ │ ├── log4j.version │ │ │ │ ├── servlet-api.jar │ │ │ │ ├── trove.jar │ │ │ │ ├── trove.license │ │ │ │ └── trove.version │ │ ├── res │ │ │ ├── answertypes │ │ │ │ ├── atype_rules_EPH.xml │ │ │ │ ├── focus_tree_templates.txt │ │ │ │ ├── patterns │ │ │ │ │ └── answertypepatterns │ │ │ │ ├── trainingdata │ │ │ │ │ ├── TREC13.xml │ │ │ │ │ ├── TREC15.xml │ │ │ │ │ ├── trec13_EPH.train │ │ │ │ │ ├── trec15_EPH.train │ │ │ │ │ ├── trec8-12+14-15_EPH.train │ │ │ │ │ ├── trec8-12+14.train │ │ │ │ │ ├── trec8-12+14_EPH.train │ │ │ │ │ ├── trec8-14_EPH.train │ │ │ │ │ └── trec8-15_EPH.train │ │ │ │ ├── trec8-15_EPH.classifier │ │ │ │ ├── typesystem │ │ │ │ │ ├── TREC-to-EPHYRA.map │ │ │ │ │ ├── ephyra.types │ │ │ │ │ └── propernametypes.types │ │ │ │ └── wordnet_atype_map_EPH.txt │ │ │ ├── definitional │ │ │ │ └── webreinforcement │ │ │ │ │ └── wikipediaMissTerms │ │ │ ├── indices │ │ │ │ ├── conjunctions │ │ │ │ ├── functionwords │ │ │ │ ├── functionwords_nonumbers │ │ │ │ ├── irregularverbs │ │ │ │ ├── irregularverbs_short │ │ │ │ ├── prepositions │ │ │ │ └── wordfrequencies │ │ │ ├── knowledgeannotation │ │ │ │ ├── GlobalWeather │ │ │ │ ├── Wikipedia │ │ │ │ └── WorldFactbook │ │ │ ├── nlp │ │ │ │ ├── netagger │ │ │ │ │ ├── lists │ │ │ │ │ │ ├── academicTitle.lst │ │ │ │ │ │ ├── actor.lst │ │ │ │ │ │ ├── airport.lst │ │ │ │ │ │ ├── animal.lst │ │ │ │ │ │ ├── anthem.lst │ │ │ │ │ │ ├── author.lst │ │ │ │ │ │ ├── award.lst │ │ │ │ │ │ ├── bacteria.lst │ │ │ │ │ │ ├── bird.lst │ │ │ │ │ │ ├── birthstone.lst │ │ │ │ │ │ ├── bodyPart.lst │ │ │ │ │ │ ├── book.lst │ │ │ │ │ │ ├── canal.lst │ │ │ │ │ │ ├── capital.lst │ │ │ │ │ │ ├── causeOfDeath.lst │ │ │ │ │ │ ├── chemicalElement.lst │ │ │ │ │ │ ├── color.lst │ │ │ │ │ │ ├── competition.lst │ │ │ │ │ │ ├── conflict.lst │ │ │ │ │ │ ├── continent.lst │ │ │ │ │ │ ├── country.lst │ │ │ │ │ │ ├── crime.lst │ │ │ │ │ │ ├── currency.lst │ │ │ │ │ │ ├── daytime.lst │ │ │ │ │ │ ├── director.lst │ │ │ │ │ │ ├── disease.lst │ │ │ │ │ │ ├── drug.lst │ │ │ │ │ │ ├── educationalInstitution.lst │ │ │ │ │ │ ├── ethnicGroup.lst │ │ │ │ │ │ ├── festival.lst │ │ │ │ │ │ ├── film.lst │ │ │ │ │ │ ├── filmType.lst │ │ │ │ │ │ ├── firstName.lst │ │ │ │ │ │ ├── flower.lst │ │ │ │ │ │ ├── fruit.lst │ │ │ │ │ │ ├── hemisphere.lst │ │ │ │ │ │ ├── hour.lst │ │ │ │ │ │ ├── island.lst │ │ │ │ │ │ ├── lake.lst │ │ │ │ │ │ ├── language.lst │ │ │ │ │ │ ├── material.lst │ │ │ │ │ │ ├── mathematician.lst │ │ │ │ │ │ ├── medicalTreatment.lst │ │ │ │ │ │ ├── medicinal.lst │ │ │ │ │ │ ├── metal.lst │ │ │ │ │ │ ├── militaryRank.lst │ │ │ │ │ │ ├── mineral.lst │ │ │ │ │ │ ├── ministry.lst │ │ │ │ │ │ ├── month.lst │ │ │ │ │ │ ├── mountain.lst │ │ │ │ │ │ ├── mountainRange.lst │ │ │ │ │ │ ├── musicType.lst │ │ │ │ │ │ ├── musical.lst │ │ │ │ │ │ ├── musicalInstrument.lst │ │ │ │ │ │ ├── narcotic.lst │ │ │ │ │ │ ├── nationalPark.lst │ │ │ │ │ │ ├── nationality.lst │ │ │ │ │ │ ├── newspaper.lst │ │ │ │ │ │ ├── nobleTitle.lst │ │ │ │ │ │ ├── ocean.lst │ │ │ │ │ │ ├── opera.lst │ │ │ │ │ │ ├── organization.lst │ │ │ │ │ │ ├── pathogen.lst │ │ │ │ │ │ ├── peninsula.lst │ │ │ │ │ │ ├── planet.lst │ │ │ │ │ │ ├── plant.lst │ │ │ │ │ │ ├── playwright.lst │ │ │ │ │ │ ├── policeRank.lst │ │ │ │ │ │ ├── politicalParty.lst │ │ │ │ │ │ ├── profession.lst │ │ │ │ │ │ ├── province.lst │ │ │ │ │ │ ├── radioStation.lst │ │ │ │ │ │ ├── relation.lst │ │ │ │ │ │ ├── religion.lst │ │ │ │ │ │ ├── river.lst │ │ │ │ │ │ ├── scientist.lst │ │ │ │ │ │ ├── sea.lst │ │ │ │ │ │ ├── season.lst │ │ │ │ │ │ ├── show.lst │ │ │ │ │ │ ├── showType.lst │ │ │ │ │ │ ├── socialTitle.lst │ │ │ │ │ │ ├── sport.lst │ │ │ │ │ │ ├── stadium.lst │ │ │ │ │ │ ├── state.lst │ │ │ │ │ │ ├── stone.lst │ │ │ │ │ │ ├── style.lst │ │ │ │ │ │ ├── team.lst │ │ │ │ │ │ ├── therapy.lst │ │ │ │ │ │ ├── timezone.lst │ │ │ │ │ │ ├── todo │ │ │ │ │ │ │ ├── ORGANIZATION │ │ │ │ │ │ │ ├── PERSON │ │ │ │ │ │ │ ├── PLACE │ │ │ │ │ │ │ ├── building.lst │ │ │ │ │ │ │ ├── cdg.lst │ │ │ │ │ │ │ ├── charities.lst │ │ │ │ │ │ │ ├── city.lst │ │ │ │ │ │ │ ├── city_cap.lst │ │ │ │ │ │ │ ├── city_old.lst │ │ │ │ │ │ │ ├── company.lst │ │ │ │ │ │ │ ├── company_cap.lst │ │ │ │ │ │ │ ├── country_adj.lst │ │ │ │ │ │ │ ├── country_cap.lst │ │ │ │ │ │ │ ├── currency_prefix.lst │ │ │ │ │ │ │ ├── currency_unit.lst │ │ │ │ │ │ │ ├── date_key.lst │ │ │ │ │ │ │ ├── date_post.lst │ │ │ │ │ │ │ ├── date_pre.lst │ │ │ │ │ │ │ ├── date_unit.lst │ │ │ │ │ │ │ ├── datespan.lst │ │ │ │ │ │ │ ├── day.lst │ │ │ │ │ │ │ ├── duration.lst │ │ │ │ │ │ │ ├── govern_key.lst │ │ │ │ │ │ │ ├── government.lst │ │ │ │ │ │ │ ├── jobtitles.lst │ │ │ │ │ │ │ ├── loc_key.lst │ │ │ │ │ │ │ ├── loc_prekey_lower.lst │ │ │ │ │ │ │ ├── minute.lst │ │ │ │ │ │ │ ├── new_cdg.lst │ │ │ │ │ │ │ ├── non_company.lst │ │ │ │ │ │ │ ├── number.lst │ │ │ │ │ │ │ ├── ordinal.lst │ │ │ │ │ │ │ ├── org_base.lst │ │ │ │ │ │ │ ├── org_ending.lst │ │ │ │ │ │ │ ├── org_key.lst │ │ │ │ │ │ │ ├── org_key_cap.lst │ │ │ │ │ │ │ ├── organization.lst │ │ │ │ │ │ │ ├── organizationType.lst │ │ │ │ │ │ │ ├── person_ambig.lst │ │ │ │ │ │ │ ├── person_ambig2.lst │ │ │ │ │ │ │ ├── person_ambig_lower.lst │ │ │ │ │ │ │ ├── person_ending.lst │ │ │ │ │ │ │ ├── person_female.lst │ │ │ │ │ │ │ ├── person_female_cap.lst │ │ │ │ │ │ │ ├── person_female_lower.lst │ │ │ │ │ │ │ ├── person_first.lst │ │ │ │ │ │ │ ├── person_male.lst │ │ │ │ │ │ │ ├── person_male_cap.lst │ │ │ │ │ │ │ ├── person_male_lower.lst │ │ │ │ │ │ │ ├── person_relig.lst │ │ │ │ │ │ │ ├── phone_prefix.lst │ │ │ │ │ │ │ ├── province_aa.lst │ │ │ │ │ │ │ ├── province_ab.lst │ │ │ │ │ │ │ ├── region.lst │ │ │ │ │ │ │ ├── region_cap.lst │ │ │ │ │ │ │ ├── region_uk.lst │ │ │ │ │ │ │ ├── street.lst │ │ │ │ │ │ │ ├── surname_prefix.lst │ │ │ │ │ │ │ ├── time_ampm.lst │ │ │ │ │ │ │ ├── time_unit.lst │ │ │ │ │ │ │ ├── title_female.lst │ │ │ │ │ │ │ ├── title_lower.lst │ │ │ │ │ │ │ ├── title_lowercase.lst │ │ │ │ │ │ │ ├── title_male.lst │ │ │ │ │ │ │ └── year.lst │ │ │ │ │ │ ├── tvChannel.lst │ │ │ │ │ │ ├── usPresident.lst │ │ │ │ │ │ ├── vaccine.lst │ │ │ │ │ │ ├── virus.lst │ │ │ │ │ │ ├── water.lst │ │ │ │ │ │ └── zodiacSign.lst │ │ │ │ │ ├── patterns.lst │ │ │ │ │ └── stanford │ │ │ │ │ │ └── ner-eng-ie.crf-3-all2006-distsim.ser.gz │ │ │ │ ├── phrasechunker │ │ │ │ │ └── opennlp │ │ │ │ │ │ └── EnglishChunk.bin.gz │ │ │ │ ├── postagger │ │ │ │ │ └── opennlp │ │ │ │ │ │ ├── tag.bin.gz │ │ │ │ │ │ └── tagdict │ │ │ │ ├── sentencedetector │ │ │ │ │ └── opennlp │ │ │ │ │ │ └── EnglishSD.bin.gz │ │ │ │ ├── syntacticparser │ │ │ │ │ └── stanford │ │ │ │ │ │ └── englishPCFG.ser.gz │ │ │ │ └── tokenizer │ │ │ │ │ └── opennlp │ │ │ │ │ └── EnglishTok.bin.gz │ │ │ ├── ontologies │ │ │ │ ├── cns │ │ │ │ │ ├── alternations.xml │ │ │ │ │ ├── costs.xml │ │ │ │ │ └── ontology.xml │ │ │ │ └── wordnet │ │ │ │ │ ├── adj.exc │ │ │ │ │ ├── adv.exc │ │ │ │ │ ├── data.adj │ │ │ │ │ ├── data.adv │ │ │ │ │ ├── data.noun │ │ │ │ │ ├── data.verb │ │ │ │ │ ├── file_properties.xml │ │ │ │ │ ├── index.adj │ │ │ │ │ ├── index.adv │ │ │ │ │ ├── index.noun │ │ │ │ │ ├── index.sense │ │ │ │ │ ├── index.verb │ │ │ │ │ ├── noun.exc │ │ │ │ │ ├── verb.exc │ │ │ │ │ ├── wordnet.license │ │ │ │ │ └── wordnet.version │ │ │ ├── patternlearning │ │ │ │ ├── answerpatterns │ │ │ │ │ ├── ABBREVIATION │ │ │ │ │ ├── ACTOR │ │ │ │ │ ├── AGE │ │ │ │ │ ├── ANCESTOR │ │ │ │ │ ├── AUTHOR │ │ │ │ │ ├── AWARD │ │ │ │ │ ├── CAPITAL │ │ │ │ │ ├── CAUSE │ │ │ │ │ ├── CAUSEOFDEATH │ │ │ │ │ ├── COACH │ │ │ │ │ ├── COMPETITOR │ │ │ │ │ ├── CREATOR │ │ │ │ │ ├── DATE │ │ │ │ │ ├── DATEOFBIRTH │ │ │ │ │ ├── DATEOFCREATION │ │ │ │ │ ├── DATEOFDEATH │ │ │ │ │ ├── DATEOFDISCOVERY │ │ │ │ │ ├── DATEOFEND │ │ │ │ │ ├── DATEOFFOUNDATION │ │ │ │ │ ├── DATEOFINAUGURATION │ │ │ │ │ ├── DATEOFINVENTION │ │ │ │ │ ├── DATEOFLIVING │ │ │ │ │ ├── DATEOFMARRIAGE │ │ │ │ │ ├── DATEOFRETIREMENT │ │ │ │ │ ├── DATEOFSTART │ │ │ │ │ ├── DATEOFSTARTOFOPERATION │ │ │ │ │ ├── DATEOFWINNING │ │ │ │ │ ├── DEFINITION │ │ │ │ │ ├── DISCOVERER │ │ │ │ │ ├── DISCOVERY │ │ │ │ │ ├── DISTANCE │ │ │ │ │ ├── DURATION │ │ │ │ │ ├── ETHNICGROUP │ │ │ │ │ ├── FATHER │ │ │ │ │ ├── FOOD │ │ │ │ │ ├── FOUNDATION │ │ │ │ │ ├── FOUNDER │ │ │ │ │ ├── FUNCTION │ │ │ │ │ ├── FUNDER │ │ │ │ │ ├── FUNDING │ │ │ │ │ ├── GRADUATE │ │ │ │ │ ├── HABITAT │ │ │ │ │ ├── HEIGHT │ │ │ │ │ ├── IDENTITY │ │ │ │ │ ├── INSTRUMENT │ │ │ │ │ ├── INVENTOR │ │ │ │ │ ├── KILLER │ │ │ │ │ ├── LANGUAGE │ │ │ │ │ ├── LEADER │ │ │ │ │ ├── LEADERSHIP │ │ │ │ │ ├── LENGTH │ │ │ │ │ ├── LIFESPAN │ │ │ │ │ ├── LONGFORM │ │ │ │ │ ├── MEDICINE │ │ │ │ │ ├── MEMBER │ │ │ │ │ ├── MEMBERSHIP │ │ │ │ │ ├── MONEY │ │ │ │ │ ├── MOTHER │ │ │ │ │ ├── MOVIE │ │ │ │ │ ├── NAME │ │ │ │ │ ├── NAMER │ │ │ │ │ ├── NATIONALITY │ │ │ │ │ ├── NUMBER │ │ │ │ │ ├── NUMBEROFCHILDREN │ │ │ │ │ ├── NUMBEROFMEMBER │ │ │ │ │ ├── NUMBEROFVICTIMS │ │ │ │ │ ├── NUMBEROFVICTORIES │ │ │ │ │ ├── NUMBEROFVISITORS │ │ │ │ │ ├── OPPONENT │ │ │ │ │ ├── ORIGIN │ │ │ │ │ ├── OWNER │ │ │ │ │ ├── PLACE │ │ │ │ │ ├── PLACEOFBIRTH │ │ │ │ │ ├── PLACEOFDEATH │ │ │ │ │ ├── PLACEOFFOUNDATION │ │ │ │ │ ├── PLACEOFFUNERAL │ │ │ │ │ ├── PLACEOFLIVING │ │ │ │ │ ├── PLACEOFOCCURRENCE │ │ │ │ │ ├── PLACEOFORIGIN │ │ │ │ │ ├── POPULATION │ │ │ │ │ ├── PRODUCT │ │ │ │ │ ├── PROFESSION │ │ │ │ │ ├── PROVIDER │ │ │ │ │ ├── PUBLICATION │ │ │ │ │ ├── RESOURCE │ │ │ │ │ ├── SCHOOL │ │ │ │ │ ├── SIZE │ │ │ │ │ ├── SPECIALTY │ │ │ │ │ ├── SPECIES │ │ │ │ │ ├── SPEED │ │ │ │ │ ├── SPOUSE │ │ │ │ │ ├── SYMPTOM │ │ │ │ │ ├── SYNONYM │ │ │ │ │ ├── VALUE │ │ │ │ │ ├── WEIGHT │ │ │ │ │ ├── WIDTH │ │ │ │ │ └── WINNER │ │ │ │ ├── interpretations │ │ │ │ │ ├── additional │ │ │ │ │ │ ├── CAPITAL │ │ │ │ │ │ ├── CAUSEOFDEATH │ │ │ │ │ │ ├── DATEOFBIRTH │ │ │ │ │ │ ├── DATEOFDEATH │ │ │ │ │ │ ├── KILLER │ │ │ │ │ │ ├── PLACE │ │ │ │ │ │ └── PLACEOFBIRTH │ │ │ │ │ └── todo │ │ │ │ │ │ ├── AGE │ │ │ │ │ │ ├── ANCESTOR │ │ │ │ │ │ ├── CAUSE │ │ │ │ │ │ ├── COACH │ │ │ │ │ │ ├── COMPETITOR │ │ │ │ │ │ ├── CREATOR │ │ │ │ │ │ ├── DATE │ │ │ │ │ │ ├── DATEOFCREATION │ │ │ │ │ │ ├── DATEOFDISCOVERY │ │ │ │ │ │ ├── DATEOFEND │ │ │ │ │ │ ├── DATEOFFOUNDATION │ │ │ │ │ │ ├── DATEOFINAUGURATION │ │ │ │ │ │ ├── DATEOFINVENTION │ │ │ │ │ │ ├── DATEOFLIVING │ │ │ │ │ │ ├── DATEOFMARRIAGE │ │ │ │ │ │ ├── DATEOFRETIREMENT │ │ │ │ │ │ ├── DATEOFSTART │ │ │ │ │ │ ├── DATEOFSTARTOFOPERATION │ │ │ │ │ │ ├── DATEOFWINNING │ │ │ │ │ │ ├── DEFINITION │ │ │ │ │ │ ├── DISCOVERER │ │ │ │ │ │ ├── DISCOVERY │ │ │ │ │ │ ├── DISTANCE │ │ │ │ │ │ ├── DURATION │ │ │ │ │ │ ├── ETHNICGROUP │ │ │ │ │ │ ├── FATHER │ │ │ │ │ │ ├── FOOD │ │ │ │ │ │ ├── FOUNDATION │ │ │ │ │ │ ├── FOUNDER │ │ │ │ │ │ ├── FUNCTION │ │ │ │ │ │ ├── FUNDER │ │ │ │ │ │ ├── FUNDING │ │ │ │ │ │ ├── GRADUATE │ │ │ │ │ │ ├── HABITAT │ │ │ │ │ │ ├── HEIGHT │ │ │ │ │ │ ├── IDENTITY │ │ │ │ │ │ ├── INCOME │ │ │ │ │ │ ├── INSTRUMENT │ │ │ │ │ │ ├── INVENTOR │ │ │ │ │ │ ├── LEADER │ │ │ │ │ │ ├── LEADERSHIP │ │ │ │ │ │ ├── LENGTH │ │ │ │ │ │ ├── LIFESPAN │ │ │ │ │ │ ├── MEDICINE │ │ │ │ │ │ ├── MONEY │ │ │ │ │ │ ├── MOTHER │ │ │ │ │ │ ├── NAME │ │ │ │ │ │ ├── NAMER │ │ │ │ │ │ ├── NUMBER │ │ │ │ │ │ ├── NUMBEROFCHILDREN │ │ │ │ │ │ ├── NUMBEROFMEMBER │ │ │ │ │ │ ├── NUMBEROFVICTIMS │ │ │ │ │ │ ├── NUMBEROFVICTORIES │ │ │ │ │ │ ├── NUMBEROFVISITORS │ │ │ │ │ │ ├── OPPONENT │ │ │ │ │ │ ├── ORIGIN │ │ │ │ │ │ ├── OWNER │ │ │ │ │ │ ├── PLACEOFFOUNDATION │ │ │ │ │ │ ├── PLACEOFFUNERAL │ │ │ │ │ │ ├── PLACEOFLIVING │ │ │ │ │ │ ├── PLACEOFOCCURRENCE │ │ │ │ │ │ ├── PLACEOFORIGIN │ │ │ │ │ │ ├── POPULATION │ │ │ │ │ │ ├── PRODUCT │ │ │ │ │ │ ├── PROFESSION │ │ │ │ │ │ ├── PROVIDER │ │ │ │ │ │ ├── PUBLICATION │ │ │ │ │ │ ├── RESOURCE │ │ │ │ │ │ ├── SCHOOL │ │ │ │ │ │ ├── SIZE │ │ │ │ │ │ ├── SPECIALTY │ │ │ │ │ │ ├── SPECIES │ │ │ │ │ │ ├── SPEED │ │ │ │ │ │ ├── SPOUSE │ │ │ │ │ │ ├── SYMPTOM │ │ │ │ │ │ ├── SYNONYM │ │ │ │ │ │ ├── TEMPERATURE │ │ │ │ │ │ ├── VALUE │ │ │ │ │ │ ├── WEIGHT │ │ │ │ │ │ └── WIDTH │ │ │ │ ├── interpretations_assess │ │ │ │ │ ├── ABBREVIATION │ │ │ │ │ ├── ACTOR │ │ │ │ │ ├── AUTHOR │ │ │ │ │ ├── AWARD │ │ │ │ │ ├── CAPITAL │ │ │ │ │ ├── CAUSEOFDEATH │ │ │ │ │ ├── DATEOFBIRTH │ │ │ │ │ ├── DATEOFDEATH │ │ │ │ │ ├── KILLER │ │ │ │ │ ├── LANGUAGE │ │ │ │ │ ├── LONGFORM │ │ │ │ │ ├── MEMBER │ │ │ │ │ ├── MEMBERSHIP │ │ │ │ │ ├── MOVIE │ │ │ │ │ ├── NATIONALITY │ │ │ │ │ ├── PLACE │ │ │ │ │ ├── PLACEOFBIRTH │ │ │ │ │ ├── PLACEOFDEATH │ │ │ │ │ └── WINNER │ │ │ │ ├── interpretations_extract │ │ │ │ │ ├── ABBREVIATION │ │ │ │ │ ├── ACTOR │ │ │ │ │ ├── AUTHOR │ │ │ │ │ ├── AWARD │ │ │ │ │ ├── CAPITAL │ │ │ │ │ ├── CAUSEOFDEATH │ │ │ │ │ ├── DATEOFBIRTH │ │ │ │ │ ├── DATEOFDEATH │ │ │ │ │ ├── KILLER │ │ │ │ │ ├── LANGUAGE │ │ │ │ │ ├── LONGFORM │ │ │ │ │ ├── MEMBER │ │ │ │ │ ├── MEMBERSHIP │ │ │ │ │ ├── MOVIE │ │ │ │ │ ├── NATIONALITY │ │ │ │ │ ├── PLACE │ │ │ │ │ ├── PLACEOFBIRTH │ │ │ │ │ ├── PLACEOFDEATH │ │ │ │ │ └── WINNER │ │ │ │ └── questionpatterns │ │ │ │ │ ├── ABBREVIATION │ │ │ │ │ ├── ACTOR │ │ │ │ │ ├── AGE │ │ │ │ │ ├── ANCESTOR │ │ │ │ │ ├── AUTHOR │ │ │ │ │ ├── AWARD │ │ │ │ │ ├── CAPITAL │ │ │ │ │ ├── CAUSE │ │ │ │ │ ├── CAUSEOFDEATH │ │ │ │ │ ├── COACH │ │ │ │ │ ├── COMPETITOR │ │ │ │ │ ├── CONSEQUENCE │ │ │ │ │ ├── CREATOR │ │ │ │ │ ├── DATE │ │ │ │ │ ├── DATEOFBIRTH │ │ │ │ │ ├── DATEOFCREATION │ │ │ │ │ ├── DATEOFDEATH │ │ │ │ │ ├── DATEOFDISCOVERY │ │ │ │ │ ├── DATEOFEND │ │ │ │ │ ├── DATEOFFOUNDATION │ │ │ │ │ ├── DATEOFINAUGURATION │ │ │ │ │ ├── DATEOFINVENTION │ │ │ │ │ ├── DATEOFLIVING │ │ │ │ │ ├── DATEOFMARRIAGE │ │ │ │ │ ├── DATEOFRETIREMENT │ │ │ │ │ ├── DATEOFSTART │ │ │ │ │ ├── DATEOFSTARTOFOPERATION │ │ │ │ │ ├── DATEOFWINNING │ │ │ │ │ ├── DEFINITION │ │ │ │ │ ├── DISCOVERER │ │ │ │ │ ├── DISCOVERY │ │ │ │ │ ├── DISTANCE │ │ │ │ │ ├── DURATION │ │ │ │ │ ├── ETHNICGROUP │ │ │ │ │ ├── FATHER │ │ │ │ │ ├── FOOD │ │ │ │ │ ├── FOUNDATION │ │ │ │ │ ├── FOUNDER │ │ │ │ │ ├── FUNCTION │ │ │ │ │ ├── FUNDER │ │ │ │ │ ├── FUNDING │ │ │ │ │ ├── GRADUATE │ │ │ │ │ ├── HABITAT │ │ │ │ │ ├── HEIGHT │ │ │ │ │ ├── IDENTITY │ │ │ │ │ ├── INCOME │ │ │ │ │ ├── INSTRUMENT │ │ │ │ │ ├── INVENTOR │ │ │ │ │ ├── KILLER │ │ │ │ │ ├── LANGUAGE │ │ │ │ │ ├── LEADER │ │ │ │ │ ├── LEADERSHIP │ │ │ │ │ ├── LENGTH │ │ │ │ │ ├── LIFESPAN │ │ │ │ │ ├── LONGFORM │ │ │ │ │ ├── MEDICINE │ │ │ │ │ ├── MEMBER │ │ │ │ │ ├── MEMBERSHIP │ │ │ │ │ ├── MONEY │ │ │ │ │ ├── MOTHER │ │ │ │ │ ├── MOVIE │ │ │ │ │ ├── NAME │ │ │ │ │ ├── NAMER │ │ │ │ │ ├── NATIONALITY │ │ │ │ │ ├── NUMBER │ │ │ │ │ ├── NUMBEROFCHILDREN │ │ │ │ │ ├── NUMBEROFMEMBER │ │ │ │ │ ├── NUMBEROFVICTIMS │ │ │ │ │ ├── NUMBEROFVICTORIES │ │ │ │ │ ├── NUMBEROFVISITORS │ │ │ │ │ ├── OPPONENT │ │ │ │ │ ├── ORIGIN │ │ │ │ │ ├── OWNER │ │ │ │ │ ├── PLACE │ │ │ │ │ ├── PLACEOFBIRTH │ │ │ │ │ ├── PLACEOFDEATH │ │ │ │ │ ├── PLACEOFFOUNDATION │ │ │ │ │ ├── PLACEOFFUNERAL │ │ │ │ │ ├── PLACEOFLIVING │ │ │ │ │ ├── PLACEOFOCCURRENCE │ │ │ │ │ ├── PLACEOFOPERATION │ │ │ │ │ ├── PLACEOFORIGIN │ │ │ │ │ ├── POPULATION │ │ │ │ │ ├── PRODUCT │ │ │ │ │ ├── PROFESSION │ │ │ │ │ ├── PROVIDER │ │ │ │ │ ├── PUBLICATION │ │ │ │ │ ├── RESOURCE │ │ │ │ │ ├── SCHOOL │ │ │ │ │ ├── SIZE │ │ │ │ │ ├── SPECIALTY │ │ │ │ │ ├── SPECIES │ │ │ │ │ ├── SPEED │ │ │ │ │ ├── SPOUSE │ │ │ │ │ ├── SYMPTOM │ │ │ │ │ ├── SYNONYM │ │ │ │ │ ├── TEMPERATURE │ │ │ │ │ ├── VALUE │ │ │ │ │ ├── WEIGHT │ │ │ │ │ ├── WIDTH │ │ │ │ │ └── WINNER │ │ │ ├── reformulations │ │ │ │ ├── all │ │ │ │ │ ├── how │ │ │ │ │ ├── how__is_are_was_were │ │ │ │ │ ├── name │ │ │ │ │ ├── what_which │ │ │ │ │ ├── what_which__is_are_was_were │ │ │ │ │ ├── when │ │ │ │ │ ├── when__is_are_was_were │ │ │ │ │ ├── where │ │ │ │ │ ├── where__is_are_was_were │ │ │ │ │ ├── who │ │ │ │ │ ├── who__is_are_was_were │ │ │ │ │ ├── why │ │ │ │ │ └── why__is_are_was_were │ │ │ │ ├── name │ │ │ │ ├── what_which │ │ │ │ ├── what_which__is_are_was_were │ │ │ │ ├── when │ │ │ │ ├── when__is_are_was_were │ │ │ │ ├── where │ │ │ │ ├── where__is_are_was_were │ │ │ │ ├── who │ │ │ │ └── who__is_are_was_were │ │ │ ├── scorenormalization │ │ │ │ └── classifiers │ │ │ │ │ └── AdaBoost70_Score+Extractors_TREC10+TREC11+TREC12+TREC13+TREC14+TREC15+TREC8+TREC9.serialized │ │ │ └── testdata │ │ │ │ └── trec │ │ │ │ ├── trec.description │ │ │ │ ├── trec10answers │ │ │ │ ├── trec10answers_list │ │ │ │ ├── trec10patterns │ │ │ │ ├── trec10questions │ │ │ │ ├── trec10questions_list │ │ │ │ ├── trec11answers_list │ │ │ │ ├── trec11patterns │ │ │ │ ├── trec11questions │ │ │ │ ├── trec11questions_list │ │ │ │ ├── trec12answers_definition │ │ │ │ ├── trec12answers_list │ │ │ │ ├── trec12patterns │ │ │ │ ├── trec12patterns+docs │ │ │ │ ├── trec12questions │ │ │ │ ├── trec13answers_list │ │ │ │ ├── trec13answers_other │ │ │ │ ├── trec13patterns+docs_factoid │ │ │ │ ├── trec13patterns_factoid │ │ │ │ ├── trec13patterns_list │ │ │ │ ├── trec13patters+docs_list │ │ │ │ ├── trec13questions.xml │ │ │ │ ├── trec13targettypes │ │ │ │ ├── trec14answers_list │ │ │ │ ├── trec14answers_other │ │ │ │ ├── trec14answers_relationship │ │ │ │ ├── trec14patterns+docs_factoid │ │ │ │ ├── trec14patterns+docs_list │ │ │ │ ├── trec14patterns_factoid │ │ │ │ ├── trec14patterns_list │ │ │ │ ├── trec14questions.xml │ │ │ │ ├── trec14questions_relationship │ │ │ │ ├── trec14targettypes │ │ │ │ ├── trec15answers_ciqa │ │ │ │ ├── trec15answers_ciqa_pyramid │ │ │ │ ├── trec15answers_list │ │ │ │ ├── trec15answers_other │ │ │ │ ├── trec15answers_other_pyramid │ │ │ │ ├── trec15patterns+docs_factoid │ │ │ │ ├── trec15patterns+docs_list │ │ │ │ ├── trec15patterns_factoid │ │ │ │ ├── trec15patterns_list │ │ │ │ ├── trec15questions.xml │ │ │ │ ├── trec15questions_ciqa.xml │ │ │ │ ├── trec15targettypes │ │ │ │ ├── trec16answers_ciqa │ │ │ │ ├── trec16answers_ciqa_pyramid │ │ │ │ ├── trec16answers_other_pyramid │ │ │ │ ├── trec16questions.xml │ │ │ │ ├── trec16questions_ciqa.xml │ │ │ │ ├── trec16targettypes │ │ │ │ ├── trec8answers │ │ │ │ ├── trec8development │ │ │ │ ├── trec8patterns │ │ │ │ ├── trec8questions │ │ │ │ ├── trec9answers │ │ │ │ ├── trec9patterns │ │ │ │ ├── trec9questions │ │ │ │ └── trec9variants │ │ ├── scripts │ │ │ ├── EphyraTREC13To16.sh │ │ │ ├── EphyraTREC8To11.sh │ │ │ ├── OpenEphyra.bat │ │ │ ├── OpenEphyra.sh │ │ │ └── OpenEphyraCorpus.sh │ │ ├── src │ │ │ ├── info │ │ │ │ └── ephyra │ │ │ │ │ ├── OpenEphyra.java │ │ │ │ │ ├── OpenEphyraServer.java │ │ │ │ │ ├── answerselection │ │ │ │ │ ├── AnswerPattern.java │ │ │ │ │ ├── AnswerSelection.java │ │ │ │ │ ├── definitional │ │ │ │ │ │ └── Dossier.java │ │ │ │ │ └── filters │ │ │ │ │ │ ├── AdaptiveNumberOfKeywordsFilter.java │ │ │ │ │ │ ├── AnswerPatternFilter.java │ │ │ │ │ │ ├── AnswerProjectionFilter.java │ │ │ │ │ │ ├── AnswerTypeFilter.java │ │ │ │ │ │ ├── CacheResultsFilter.java │ │ │ │ │ │ ├── CombineScoresFilter.java │ │ │ │ │ │ ├── CutKeywordsFilter.java │ │ │ │ │ │ ├── CutStatementProviderFilter.java │ │ │ │ │ │ ├── DeserializationFilter.java │ │ │ │ │ │ ├── DirectSpeechFilter.java │ │ │ │ │ │ ├── DuplicateFilter.java │ │ │ │ │ │ ├── DuplicateSnippetFilter.java │ │ │ │ │ │ ├── FactoidSubsetFilter.java │ │ │ │ │ │ ├── FactoidsFromPredicatesFilter.java │ │ │ │ │ │ ├── Filter.java │ │ │ │ │ │ ├── FunctionWordsFilter.java │ │ │ │ │ │ ├── GoogleTermImportanceFilter.java │ │ │ │ │ │ ├── HitPositionFilter.java │ │ │ │ │ │ ├── HitPositionSorterFilter.java │ │ │ │ │ │ ├── NormalizedScoreSorterFilter.java │ │ │ │ │ │ ├── NounPhraseFilter.java │ │ │ │ │ │ ├── NuggetEvaluationFilter.java │ │ │ │ │ │ ├── NumberOfKeywordsFilter.java │ │ │ │ │ │ ├── OverlapAnalysisFilter.java │ │ │ │ │ │ ├── PredicateExtractionFilter.java │ │ │ │ │ │ ├── PreferNamedEntitiesFilter.java │ │ │ │ │ │ ├── ProperNameFilter.java │ │ │ │ │ │ ├── QueryScoreFilter.java │ │ │ │ │ │ ├── QuestionKeywordsFilter.java │ │ │ │ │ │ ├── ResultLengthFilter.java │ │ │ │ │ │ ├── ResultLengthSorterFilter.java │ │ │ │ │ │ ├── ReverseScoreSorterFilter.java │ │ │ │ │ │ ├── ScoreCombinationFilter.java │ │ │ │ │ │ ├── ScoreNormalizationFilter.java │ │ │ │ │ │ ├── ScoreResetterFilter.java │ │ │ │ │ │ ├── ScoreSorterFilter.java │ │ │ │ │ │ ├── SentenceExtractionFilter.java │ │ │ │ │ │ ├── SentenceSplitterFilter.java │ │ │ │ │ │ ├── SerializationFilter.java │ │ │ │ │ │ ├── StopwordFilter.java │ │ │ │ │ │ ├── SubclauseSplitterFilter.java │ │ │ │ │ │ ├── TermFilter.java │ │ │ │ │ │ ├── TermImportanceFilter.java │ │ │ │ │ │ ├── TripletFilter.java │ │ │ │ │ │ ├── TruncationFilter.java │ │ │ │ │ │ ├── UnnecessaryCharactersFilter.java │ │ │ │ │ │ ├── WebDocumentFetcherFilter.java │ │ │ │ │ │ ├── WebTermImportanceFilter.java │ │ │ │ │ │ ├── WikipediaGoogleTermImportanceFilter.java │ │ │ │ │ │ ├── WikipediaTermImportanceFilter.java │ │ │ │ │ │ └── YahooTermImportanceFilter.java │ │ │ │ │ ├── indexing │ │ │ │ │ ├── AQUAINT2Preprocessor.java │ │ │ │ │ ├── AQUAINTPreprocessor.java │ │ │ │ │ └── Blog06Preprocessor.java │ │ │ │ │ ├── io │ │ │ │ │ ├── Logger.java │ │ │ │ │ └── MsgPrinter.java │ │ │ │ │ ├── nlp │ │ │ │ │ ├── LingPipe.java │ │ │ │ │ ├── NETagger.java │ │ │ │ │ ├── OpenNLP.java │ │ │ │ │ ├── RegExMatcher.java │ │ │ │ │ ├── SentenceExtractor.java │ │ │ │ │ ├── SnowballStemmer.java │ │ │ │ │ ├── StanfordNeTagger.java │ │ │ │ │ ├── StanfordParser.java │ │ │ │ │ ├── StanfordPosTagger.java │ │ │ │ │ ├── VerbFormConverter.java │ │ │ │ │ ├── compile-snowball.sh │ │ │ │ │ ├── indices │ │ │ │ │ │ ├── FunctionWords.java │ │ │ │ │ │ ├── IrregularVerbs.java │ │ │ │ │ │ ├── Prepositions.java │ │ │ │ │ │ └── WordFrequencies.java │ │ │ │ │ └── semantics │ │ │ │ │ │ ├── ASSERT.java │ │ │ │ │ │ ├── Predicate.java │ │ │ │ │ │ └── ontologies │ │ │ │ │ │ ├── DomainOntology.java │ │ │ │ │ │ ├── Ontology.java │ │ │ │ │ │ └── WordNet.java │ │ │ │ │ ├── patternlearning │ │ │ │ │ ├── PatternExtractor.java │ │ │ │ │ └── PatternLearner.java │ │ │ │ │ ├── querygeneration │ │ │ │ │ ├── Query.java │ │ │ │ │ ├── QueryGeneration.java │ │ │ │ │ ├── QuestionReformulation.java │ │ │ │ │ ├── QuestionReformulator.java │ │ │ │ │ └── generators │ │ │ │ │ │ ├── BagOfTermsG.java │ │ │ │ │ │ ├── BagOfWordsG.java │ │ │ │ │ │ ├── PredicateG.java │ │ │ │ │ │ ├── QueryGenerator.java │ │ │ │ │ │ ├── QuestionInterpretationG.java │ │ │ │ │ │ └── QuestionReformulationG.java │ │ │ │ │ ├── questionanalysis │ │ │ │ │ ├── AnalyzedQuestion.java │ │ │ │ │ ├── AnswerTypeTester.java │ │ │ │ │ ├── KeywordExtractor.java │ │ │ │ │ ├── PredicateExtractor.java │ │ │ │ │ ├── QuestionAnalysis.java │ │ │ │ │ ├── QuestionInterpretation.java │ │ │ │ │ ├── QuestionInterpreter.java │ │ │ │ │ ├── QuestionNormalizer.java │ │ │ │ │ ├── QuestionPattern.java │ │ │ │ │ ├── Term.java │ │ │ │ │ ├── TermExpander.java │ │ │ │ │ ├── TermExtractor.java │ │ │ │ │ └── atype │ │ │ │ │ │ ├── AnswerType.java │ │ │ │ │ │ ├── AnswerTypesComparison.java │ │ │ │ │ │ ├── FocusFinder.java │ │ │ │ │ │ ├── QuestionClassifier.java │ │ │ │ │ │ ├── QuestionClassifierFactory.java │ │ │ │ │ │ ├── WordNetAnswerTypeMapping.java │ │ │ │ │ │ ├── classifier │ │ │ │ │ │ ├── HybridQuestionClassifier.java │ │ │ │ │ │ ├── Rule.java │ │ │ │ │ │ ├── RuleBasedQuestionClassifier.java │ │ │ │ │ │ ├── RuleElement.java │ │ │ │ │ │ └── TrainedQuestionClassifier.java │ │ │ │ │ │ ├── extractor │ │ │ │ │ │ ├── EnglishFeatureExtractor.java │ │ │ │ │ │ ├── FeatureExtractor.java │ │ │ │ │ │ └── FeatureExtractorFactory.java │ │ │ │ │ │ └── minorthird │ │ │ │ │ │ └── hierarchical │ │ │ │ │ │ ├── DummyClassifier.java │ │ │ │ │ │ ├── DummyClassifierLearner.java │ │ │ │ │ │ ├── Experimenter.java │ │ │ │ │ │ ├── HierarchicalClassifier.java │ │ │ │ │ │ ├── HierarchicalClassifierLearner.java │ │ │ │ │ │ └── HierarchicalClassifierTrainer.java │ │ │ │ │ ├── search │ │ │ │ │ ├── Result.java │ │ │ │ │ ├── Search.java │ │ │ │ │ └── searchers │ │ │ │ │ │ ├── BingKM.java │ │ │ │ │ │ ├── GoogleKM.java │ │ │ │ │ │ ├── IndriDocumentKM.java │ │ │ │ │ │ ├── IndriKM.java │ │ │ │ │ │ ├── KnowledgeAnnotator.java │ │ │ │ │ │ ├── KnowledgeMiner.java │ │ │ │ │ │ ├── Searcher.java │ │ │ │ │ │ ├── WikipediaKA.java │ │ │ │ │ │ ├── WorldFactbookKA.java │ │ │ │ │ │ └── YahooKM.java │ │ │ │ │ ├── trec │ │ │ │ │ ├── CorefResolver.java │ │ │ │ │ ├── EphyraTREC13To16.java │ │ │ │ │ ├── EphyraTREC8To11.java │ │ │ │ │ ├── OpenEphyraCorpus.java │ │ │ │ │ ├── TREC13To16Parser.java │ │ │ │ │ ├── TREC8To12Parser.java │ │ │ │ │ ├── TRECAnswer.java │ │ │ │ │ ├── TRECNugget.java │ │ │ │ │ ├── TRECPattern.java │ │ │ │ │ ├── TRECQuestion.java │ │ │ │ │ ├── TRECTarget.java │ │ │ │ │ └── TargetPreprocessor.java │ │ │ │ │ └── util │ │ │ │ │ ├── ArrayUtils.java │ │ │ │ │ ├── Clock.java │ │ │ │ │ ├── Dictionary.java │ │ │ │ │ ├── FileCache.java │ │ │ │ │ ├── FileUtils.java │ │ │ │ │ ├── HTMLConverter.java │ │ │ │ │ ├── HashDictionary.java │ │ │ │ │ ├── PageRankParser.java │ │ │ │ │ ├── Properties.java │ │ │ │ │ ├── RegexConverter.java │ │ │ │ │ ├── StringUtils.java │ │ │ │ │ └── TimerThread.java │ │ │ └── lucida │ │ │ │ ├── handler │ │ │ │ ├── KnowledgeBase.java │ │ │ │ └── QAServiceHandler.java │ │ │ │ ├── main │ │ │ │ └── QADaemon.java │ │ │ │ └── test │ │ │ │ └── QAClient.java │ │ ├── start_server.sh │ │ └── start_test.sh │ └── README.md ├── speechrecognition │ ├── Makefile │ ├── README.md │ └── kaldi_gstreamer_asr │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── estonian_worker.yaml │ │ ├── etc │ │ └── english-supervisord.conf │ │ ├── install_idlak.sh │ │ ├── install_kaldi.sh │ │ ├── install_kaldi_tts.sh │ │ ├── kaldigstserver │ │ ├── __init__.py │ │ ├── client.py │ │ ├── commandcenter.thrift │ │ ├── common.py │ │ ├── decoder.py │ │ ├── decoder2.py │ │ ├── decoder2_test.py │ │ ├── decoder_test.py │ │ ├── master_server.py │ │ ├── settings.py │ │ ├── test-buffer.py │ │ └── worker.py │ │ ├── sample_english_nnet2.yaml │ │ ├── sample_full_post_processor.py │ │ ├── sample_worker.yaml │ │ ├── simple_start.sh │ │ ├── start.sh │ │ ├── static │ │ └── status.html │ │ ├── stop.sh │ │ └── test │ │ ├── data │ │ └── bill_gates-TED.mp3 │ │ └── models │ │ ├── download-fisher-nnet2.sh │ │ └── download-tedlium-nnet2.sh └── weather │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── WeatherConfig.py │ ├── client │ └── WeatherClient.py │ └── server │ └── WeatherServer.py ├── service_graph_0.png ├── tools ├── .gitignore ├── Dockerfile ├── Makefile ├── README.md ├── apt_deps.sh ├── check_mongodb.cpp ├── check_opencv.cpp ├── check_thrift.thrift ├── clean.sh ├── deploy │ ├── .gitignore │ ├── README.md │ ├── asrmaster-controller-https.yaml │ ├── asrmaster-controller.yaml │ ├── asrmaster-service.yaml │ ├── asrworker-controller-https.yaml │ ├── asrworker-controller.yaml │ ├── ca-controller.yaml │ ├── ca-service.yaml │ ├── cluster_up_linux.sh │ ├── cluster_up_osx.sh │ ├── dig-controller.yaml │ ├── dig-service.yaml │ ├── face-controller.yaml │ ├── face-service.yaml │ ├── imc-controller.yaml │ ├── imc-service.yaml │ ├── img │ │ ├── .gitignore │ │ ├── 1.jpg │ │ ├── 10.jpg │ │ ├── 11.jpg │ │ ├── 12.jpg │ │ ├── 13.jpg │ │ ├── 14.jpg │ │ ├── 15.jpg │ │ ├── 16.jpg │ │ ├── 17.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ └── 9.jpg │ ├── imm-controller.yaml │ ├── imm-service.yaml │ ├── instructions.ipynb │ ├── memcached-controller.yaml │ ├── memcached-service.yaml │ ├── mongo-controller.yaml │ ├── mongo-service.yaml │ ├── ms-controller.yaml │ ├── ms-service.yaml │ ├── qa-controller.yaml │ ├── qa-service.yaml │ ├── start_services.sh │ ├── we-controller.yaml │ ├── we-service.yaml │ ├── web-controller-https.yaml │ ├── web-controller.yaml │ ├── web-service-https.yaml │ └── web-service.yaml ├── download_wiki_index.sh ├── full_lucida.conf ├── install_fbthrift.sh ├── install_java.sh ├── install_mongodb.sh ├── install_opencv.sh ├── install_python.sh ├── install_thrift.sh ├── mongodb.service ├── python_requirements.txt └── start_all_tmux.sh ├── tutorial.pdf └── tutorial.pptx /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | kuberlucida.tar 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/Makefile.common -------------------------------------------------------------------------------- /PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/PATENTS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/README.md -------------------------------------------------------------------------------- /high_level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/high_level.png -------------------------------------------------------------------------------- /lucida/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/Makefile -------------------------------------------------------------------------------- /lucida/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/README.md -------------------------------------------------------------------------------- /lucida/asyncthrift/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/asyncthrift/.gitignore -------------------------------------------------------------------------------- /lucida/asyncthrift/fake/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/asyncthrift/fake/.gitignore -------------------------------------------------------------------------------- /lucida/asyncthrift/fake/auto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/asyncthrift/fake/auto.sh -------------------------------------------------------------------------------- /lucida/asyncthrift/fake/fakecmd_cpp/FakeCMDServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/asyncthrift/fake/fakecmd_cpp/FakeCMDServer.cpp -------------------------------------------------------------------------------- /lucida/asyncthrift/fake/fakecmd_cpp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/asyncthrift/fake/fakecmd_cpp/Makefile -------------------------------------------------------------------------------- /lucida/asyncthrift/fake/fakecmd_py/FakeCMDClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/asyncthrift/fake/fakecmd_py/FakeCMDClient.py -------------------------------------------------------------------------------- /lucida/asyncthrift/fake/fakecmd_py/FakeCMDServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/asyncthrift/fake/fakecmd_py/FakeCMDServer.py -------------------------------------------------------------------------------- /lucida/asyncthrift/fake/fakecmd_py/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/asyncthrift/fake/fakecmd_py/Makefile -------------------------------------------------------------------------------- /lucida/asyncthrift/fake/fakecmd_py/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/asyncthrift/fake/fakecmd_py/requirements.txt -------------------------------------------------------------------------------- /lucida/asyncthrift/fake/fakeimm/FakeIMMHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/asyncthrift/fake/fakeimm/FakeIMMHandler.cpp -------------------------------------------------------------------------------- /lucida/asyncthrift/fake/fakeimm/FakeIMMHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/asyncthrift/fake/fakeimm/FakeIMMHandler.h -------------------------------------------------------------------------------- /lucida/asyncthrift/fake/fakeimm/FakeIMMServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/asyncthrift/fake/fakeimm/FakeIMMServer.cpp -------------------------------------------------------------------------------- /lucida/asyncthrift/fake/fakeimm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/asyncthrift/fake/fakeimm/Makefile -------------------------------------------------------------------------------- /lucida/asyncthrift/fake/fakeqa/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /lucida/asyncthrift/fake/fakeqa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/asyncthrift/fake/fakeqa/Makefile -------------------------------------------------------------------------------- /lucida/asyncthrift/fake/fakeqa/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/asyncthrift/fake/fakeqa/build.xml -------------------------------------------------------------------------------- /lucida/asyncthrift/fake/fakeqa/lib/thrift/libthrift-0.9.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/asyncthrift/fake/fakeqa/lib/thrift/libthrift-0.9.2.jar -------------------------------------------------------------------------------- /lucida/asyncthrift/fake/fakeqa/lib/thrift/log4j-1.2.14.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/asyncthrift/fake/fakeqa/lib/thrift/log4j-1.2.14.jar -------------------------------------------------------------------------------- /lucida/asyncthrift/fake/fakeqa/lib/thrift/slf4j-api-1.5.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/asyncthrift/fake/fakeqa/lib/thrift/slf4j-api-1.5.8.jar -------------------------------------------------------------------------------- /lucida/asyncthrift/fake/fakeqa/lib/thrift/slf4j-log4j12-1.5.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/asyncthrift/fake/fakeqa/lib/thrift/slf4j-log4j12-1.5.8.jar -------------------------------------------------------------------------------- /lucida/asyncthrift/fake/fakeqa/src/lucida/handler/QAServiceHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/asyncthrift/fake/fakeqa/src/lucida/handler/QAServiceHandler.java -------------------------------------------------------------------------------- /lucida/asyncthrift/fake/fakeqa/src/lucida/main/QADaemon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/asyncthrift/fake/fakeqa/src/lucida/main/QADaemon.java -------------------------------------------------------------------------------- /lucida/asyncthrift/fake/fakeqa/src/lucida/thrift/LucidaService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/asyncthrift/fake/fakeqa/src/lucida/thrift/LucidaService.java -------------------------------------------------------------------------------- /lucida/asyncthrift/fake/fakeqa/src/lucida/thrift/QueryInput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/asyncthrift/fake/fakeqa/src/lucida/thrift/QueryInput.java -------------------------------------------------------------------------------- /lucida/asyncthrift/fake/fakeqa/src/lucida/thrift/QuerySpec.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/asyncthrift/fake/fakeqa/src/lucida/thrift/QuerySpec.java -------------------------------------------------------------------------------- /lucida/botframework-interface/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/botframework-interface/.gitignore -------------------------------------------------------------------------------- /lucida/botframework-interface/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/botframework-interface/Makefile -------------------------------------------------------------------------------- /lucida/botframework-interface/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/botframework-interface/README.md -------------------------------------------------------------------------------- /lucida/botframework-interface/deps/install_ngrok.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/botframework-interface/deps/install_ngrok.sh -------------------------------------------------------------------------------- /lucida/botframework-interface/deps/install_node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/botframework-interface/deps/install_node.sh -------------------------------------------------------------------------------- /lucida/botframework-interface/deps/install_phantomjs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/botframework-interface/deps/install_phantomjs.sh -------------------------------------------------------------------------------- /lucida/botframework-interface/interface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/botframework-interface/interface.js -------------------------------------------------------------------------------- /lucida/botframework-interface/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/botframework-interface/package.json -------------------------------------------------------------------------------- /lucida/botframework-interface/proxy_configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/botframework-interface/proxy_configuration.png -------------------------------------------------------------------------------- /lucida/botframework-interface/set_endpoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/botframework-interface/set_endpoint.js -------------------------------------------------------------------------------- /lucida/botframework-interface/start_interface.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/botframework-interface/start_interface.sh -------------------------------------------------------------------------------- /lucida/calendar/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/calendar/.gitignore -------------------------------------------------------------------------------- /lucida/calendar/CalendarClient/CalendarClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/calendar/CalendarClient/CalendarClient.java -------------------------------------------------------------------------------- /lucida/calendar/CalendarClient/compile-Calendar-client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/calendar/CalendarClient/compile-Calendar-client.sh -------------------------------------------------------------------------------- /lucida/calendar/CalendarClient/lib/libthrift-0.9.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/calendar/CalendarClient/lib/libthrift-0.9.3.jar -------------------------------------------------------------------------------- /lucida/calendar/CalendarClient/lib/slf4j-api-1.7.13.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/calendar/CalendarClient/lib/slf4j-api-1.7.13.jar -------------------------------------------------------------------------------- /lucida/calendar/CalendarClient/lib/slf4j-simple-1.7.13.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/calendar/CalendarClient/lib/slf4j-simple-1.7.13.jar -------------------------------------------------------------------------------- /lucida/calendar/CalendarClient/start-Calendar-client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/calendar/CalendarClient/start-Calendar-client.sh -------------------------------------------------------------------------------- /lucida/calendar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/calendar/Makefile -------------------------------------------------------------------------------- /lucida/calendar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/calendar/README.md -------------------------------------------------------------------------------- /lucida/calendar/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/calendar/build.gradle -------------------------------------------------------------------------------- /lucida/calendar/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/calendar/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /lucida/calendar/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/calendar/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /lucida/calendar/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/calendar/gradlew -------------------------------------------------------------------------------- /lucida/calendar/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/calendar/gradlew.bat -------------------------------------------------------------------------------- /lucida/calendar/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/calendar/settings.gradle -------------------------------------------------------------------------------- /lucida/calendar/src/main/java/calendar/CAServiceHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/calendar/src/main/java/calendar/CAServiceHandler.java -------------------------------------------------------------------------------- /lucida/calendar/src/main/java/calendar/CalendarDaemon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/calendar/src/main/java/calendar/CalendarDaemon.java -------------------------------------------------------------------------------- /lucida/calendar/src/main/java/calendar/TextProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/calendar/src/main/java/calendar/TextProcessor.java -------------------------------------------------------------------------------- /lucida/commandcenter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/.gitignore -------------------------------------------------------------------------------- /lucida/commandcenter/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/Dockerfile -------------------------------------------------------------------------------- /lucida/commandcenter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/Makefile -------------------------------------------------------------------------------- /lucida/commandcenter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/README.md -------------------------------------------------------------------------------- /lucida/commandcenter/apache/apache.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/apache/apache.wsgi -------------------------------------------------------------------------------- /lucida/commandcenter/apache/conf/000-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/apache/conf/000-default.conf -------------------------------------------------------------------------------- /lucida/commandcenter/apache/conf/000-default_https.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/apache/conf/000-default_https.conf -------------------------------------------------------------------------------- /lucida/commandcenter/apache/install_apache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/apache/install_apache.sh -------------------------------------------------------------------------------- /lucida/commandcenter/apache/logs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/apache/logs/.gitignore -------------------------------------------------------------------------------- /lucida/commandcenter/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/app.py -------------------------------------------------------------------------------- /lucida/commandcenter/clear_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/clear_db.sh -------------------------------------------------------------------------------- /lucida/commandcenter/controllers/AccessManagement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/controllers/AccessManagement.py -------------------------------------------------------------------------------- /lucida/commandcenter/controllers/Config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/controllers/Config.py -------------------------------------------------------------------------------- /lucida/commandcenter/controllers/ConfigChecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/controllers/ConfigChecker.py -------------------------------------------------------------------------------- /lucida/commandcenter/controllers/Create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/controllers/Create.py -------------------------------------------------------------------------------- /lucida/commandcenter/controllers/Database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/controllers/Database.py -------------------------------------------------------------------------------- /lucida/commandcenter/controllers/Decision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/controllers/Decision.py -------------------------------------------------------------------------------- /lucida/commandcenter/controllers/Graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/controllers/Graph.py -------------------------------------------------------------------------------- /lucida/commandcenter/controllers/Infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/controllers/Infer.py -------------------------------------------------------------------------------- /lucida/commandcenter/controllers/Learn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/controllers/Learn.py -------------------------------------------------------------------------------- /lucida/commandcenter/controllers/LoginForm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/controllers/LoginForm.py -------------------------------------------------------------------------------- /lucida/commandcenter/controllers/Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/controllers/Main.py -------------------------------------------------------------------------------- /lucida/commandcenter/controllers/Memcached.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/controllers/Memcached.py -------------------------------------------------------------------------------- /lucida/commandcenter/controllers/Parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/controllers/Parser.py -------------------------------------------------------------------------------- /lucida/commandcenter/controllers/QueryClassifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/controllers/QueryClassifier.py -------------------------------------------------------------------------------- /lucida/commandcenter/controllers/RegistrationForm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/controllers/RegistrationForm.py -------------------------------------------------------------------------------- /lucida/commandcenter/controllers/Service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/controllers/Service.py -------------------------------------------------------------------------------- /lucida/commandcenter/controllers/ThriftClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/controllers/ThriftClient.py -------------------------------------------------------------------------------- /lucida/commandcenter/controllers/User.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/controllers/User.py -------------------------------------------------------------------------------- /lucida/commandcenter/controllers/Utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/controllers/Utilities.py -------------------------------------------------------------------------------- /lucida/commandcenter/controllers/WebSocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/controllers/WebSocket.py -------------------------------------------------------------------------------- /lucida/commandcenter/controllers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/controllers/__init__.py -------------------------------------------------------------------------------- /lucida/commandcenter/controllers/dcm/Decision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/controllers/dcm/Decision.py -------------------------------------------------------------------------------- /lucida/commandcenter/controllers/dcm/IMMDCM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/controllers/dcm/IMMDCM.py -------------------------------------------------------------------------------- /lucida/commandcenter/controllers/dcm/WEDCM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/controllers/dcm/WEDCM.py -------------------------------------------------------------------------------- /lucida/commandcenter/controllers/dcm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/controllers/dcm/__init__.py -------------------------------------------------------------------------------- /lucida/commandcenter/data/class_CA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/data/class_CA.txt -------------------------------------------------------------------------------- /lucida/commandcenter/data/class_DIG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/data/class_DIG.txt -------------------------------------------------------------------------------- /lucida/commandcenter/data/class_FACE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/data/class_FACE.txt -------------------------------------------------------------------------------- /lucida/commandcenter/data/class_IMC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/data/class_IMC.txt -------------------------------------------------------------------------------- /lucida/commandcenter/data/class_IMM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/data/class_IMM.txt -------------------------------------------------------------------------------- /lucida/commandcenter/data/class_IMM_DCM_QA_WE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/data/class_IMM_DCM_QA_WE.txt -------------------------------------------------------------------------------- /lucida/commandcenter/data/class_IMM_QA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/data/class_IMM_QA.txt -------------------------------------------------------------------------------- /lucida/commandcenter/data/class_MS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/data/class_MS.txt -------------------------------------------------------------------------------- /lucida/commandcenter/data/class_QA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/data/class_QA.txt -------------------------------------------------------------------------------- /lucida/commandcenter/data/class_WE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/data/class_WE.txt -------------------------------------------------------------------------------- /lucida/commandcenter/data/class_WE_DCM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/data/class_WE_DCM.txt -------------------------------------------------------------------------------- /lucida/commandcenter/gen_certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/gen_certs.sh -------------------------------------------------------------------------------- /lucida/commandcenter/static/css/asr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/static/css/asr.css -------------------------------------------------------------------------------- /lucida/commandcenter/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /lucida/commandcenter/static/css/sticky-footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/static/css/sticky-footer.css -------------------------------------------------------------------------------- /lucida/commandcenter/static/css/thumbnail.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/static/css/thumbnail.css -------------------------------------------------------------------------------- /lucida/commandcenter/static/image/djinn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/static/image/djinn.png -------------------------------------------------------------------------------- /lucida/commandcenter/static/image/lucida.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/static/image/lucida.ico -------------------------------------------------------------------------------- /lucida/commandcenter/static/image/lucida.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/static/image/lucida.jpg -------------------------------------------------------------------------------- /lucida/commandcenter/static/image/microphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/static/image/microphone.png -------------------------------------------------------------------------------- /lucida/commandcenter/static/image/microphone_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/static/image/microphone_off.png -------------------------------------------------------------------------------- /lucida/commandcenter/static/image/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/static/image/pause.png -------------------------------------------------------------------------------- /lucida/commandcenter/static/image/pause2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/static/image/pause2.png -------------------------------------------------------------------------------- /lucida/commandcenter/static/image/speech_bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/static/image/speech_bubble.png -------------------------------------------------------------------------------- /lucida/commandcenter/static/image/speech_bubble_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/static/image/speech_bubble_page.png -------------------------------------------------------------------------------- /lucida/commandcenter/static/image/speech_bubble_page_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/static/image/speech_bubble_page_r.png -------------------------------------------------------------------------------- /lucida/commandcenter/static/image/speech_bubble_reverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/static/image/speech_bubble_reverse.png -------------------------------------------------------------------------------- /lucida/commandcenter/static/image/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/static/image/user.png -------------------------------------------------------------------------------- /lucida/commandcenter/static/image/volume_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/static/image/volume_off.png -------------------------------------------------------------------------------- /lucida/commandcenter/static/image/volume_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/static/image/volume_on.png -------------------------------------------------------------------------------- /lucida/commandcenter/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /lucida/commandcenter/static/js/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/static/js/calendar.js -------------------------------------------------------------------------------- /lucida/commandcenter/static/js/dictate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/static/js/dictate.js -------------------------------------------------------------------------------- /lucida/commandcenter/static/js/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/static/js/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /lucida/commandcenter/static/js/mob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/static/js/mob.js -------------------------------------------------------------------------------- /lucida/commandcenter/static/js/recorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/static/js/recorder.js -------------------------------------------------------------------------------- /lucida/commandcenter/static/js/recorderWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/static/js/recorderWorker.js -------------------------------------------------------------------------------- /lucida/commandcenter/static/js/resultSpeaker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/static/js/resultSpeaker.js -------------------------------------------------------------------------------- /lucida/commandcenter/static/js/speech-streamer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/static/js/speech-streamer.js -------------------------------------------------------------------------------- /lucida/commandcenter/static/js/speex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/static/js/speex.min.js -------------------------------------------------------------------------------- /lucida/commandcenter/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/templates/base.html -------------------------------------------------------------------------------- /lucida/commandcenter/templates/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/templates/contact.html -------------------------------------------------------------------------------- /lucida/commandcenter/templates/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/templates/create.html -------------------------------------------------------------------------------- /lucida/commandcenter/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/templates/index.html -------------------------------------------------------------------------------- /lucida/commandcenter/templates/infer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/templates/infer.html -------------------------------------------------------------------------------- /lucida/commandcenter/templates/learn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/templates/learn.html -------------------------------------------------------------------------------- /lucida/commandcenter/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/templates/login.html -------------------------------------------------------------------------------- /lucida/commandcenter/templates/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/templates/profile.html -------------------------------------------------------------------------------- /lucida/commandcenter/templates/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/commandcenter/templates/signup.html -------------------------------------------------------------------------------- /lucida/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/config.properties -------------------------------------------------------------------------------- /lucida/djinntonic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/.gitignore -------------------------------------------------------------------------------- /lucida/djinntonic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/Makefile -------------------------------------------------------------------------------- /lucida/djinntonic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/README.md -------------------------------------------------------------------------------- /lucida/djinntonic/dig/DIGHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/dig/DIGHandler.cpp -------------------------------------------------------------------------------- /lucida/djinntonic/dig/DIGHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/dig/DIGHandler.h -------------------------------------------------------------------------------- /lucida/djinntonic/dig/DIGServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/dig/DIGServer.cpp -------------------------------------------------------------------------------- /lucida/djinntonic/dig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/dig/Makefile -------------------------------------------------------------------------------- /lucida/djinntonic/dig/Makefile.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/dig/Makefile.config -------------------------------------------------------------------------------- /lucida/djinntonic/dig/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/dig/Parser.h -------------------------------------------------------------------------------- /lucida/djinntonic/dig/configs/dig.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/dig/configs/dig.prototxt -------------------------------------------------------------------------------- /lucida/djinntonic/dig/input/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/dig/input/0.jpg -------------------------------------------------------------------------------- /lucida/djinntonic/dig/input/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/dig/input/1.jpg -------------------------------------------------------------------------------- /lucida/djinntonic/dig/input/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/dig/input/2.jpg -------------------------------------------------------------------------------- /lucida/djinntonic/dig/input/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/dig/input/3.jpg -------------------------------------------------------------------------------- /lucida/djinntonic/dig/input/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/dig/input/4.jpg -------------------------------------------------------------------------------- /lucida/djinntonic/dig/input/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/dig/input/5.jpg -------------------------------------------------------------------------------- /lucida/djinntonic/dig/input/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/dig/input/6.jpg -------------------------------------------------------------------------------- /lucida/djinntonic/dig/input/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/dig/input/7.jpg -------------------------------------------------------------------------------- /lucida/djinntonic/dig/input/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/dig/input/8.jpg -------------------------------------------------------------------------------- /lucida/djinntonic/dig/input/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/dig/input/9.jpg -------------------------------------------------------------------------------- /lucida/djinntonic/dig/input/johannpic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/dig/input/johannpic.jpg -------------------------------------------------------------------------------- /lucida/djinntonic/dig/input/png/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/dig/input/png/0.png -------------------------------------------------------------------------------- /lucida/djinntonic/dig/input/png/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/dig/input/png/1.png -------------------------------------------------------------------------------- /lucida/djinntonic/dig/input/png/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/dig/input/png/2.png -------------------------------------------------------------------------------- /lucida/djinntonic/dig/input/png/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/dig/input/png/3.png -------------------------------------------------------------------------------- /lucida/djinntonic/dig/input/png/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/dig/input/png/4.png -------------------------------------------------------------------------------- /lucida/djinntonic/dig/input/png/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/dig/input/png/5.png -------------------------------------------------------------------------------- /lucida/djinntonic/dig/input/png/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/dig/input/png/6.png -------------------------------------------------------------------------------- /lucida/djinntonic/dig/input/png/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/dig/input/png/7.png -------------------------------------------------------------------------------- /lucida/djinntonic/dig/input/png/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/dig/input/png/8.png -------------------------------------------------------------------------------- /lucida/djinntonic/dig/input/png/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/dig/input/png/9.png -------------------------------------------------------------------------------- /lucida/djinntonic/dig/test/DIGClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/dig/test/DIGClient.cpp -------------------------------------------------------------------------------- /lucida/djinntonic/dig/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/dig/test/Makefile -------------------------------------------------------------------------------- /lucida/djinntonic/dig/test/test0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/dig/test/test0.jpg -------------------------------------------------------------------------------- /lucida/djinntonic/dig/test/test1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/dig/test/test1.jpg -------------------------------------------------------------------------------- /lucida/djinntonic/dig/test/test2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/dig/test/test2.jpg -------------------------------------------------------------------------------- /lucida/djinntonic/face/FACEHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/face/FACEHandler.cpp -------------------------------------------------------------------------------- /lucida/djinntonic/face/FACEHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/face/FACEHandler.h -------------------------------------------------------------------------------- /lucida/djinntonic/face/FACEServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/face/FACEServer.cpp -------------------------------------------------------------------------------- /lucida/djinntonic/face/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/face/Makefile -------------------------------------------------------------------------------- /lucida/djinntonic/face/Makefile.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/face/Makefile.config -------------------------------------------------------------------------------- /lucida/djinntonic/face/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/face/Parser.h -------------------------------------------------------------------------------- /lucida/djinntonic/face/configs/face.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/face/configs/face.prototxt -------------------------------------------------------------------------------- /lucida/djinntonic/face/face-classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/face/face-classes.txt -------------------------------------------------------------------------------- /lucida/djinntonic/face/input/angelina-jolie-03-152.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/face/input/angelina-jolie-03-152.jpg -------------------------------------------------------------------------------- /lucida/djinntonic/face/input/beyonce-knowles-09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/face/input/beyonce-knowles-09.jpg -------------------------------------------------------------------------------- /lucida/djinntonic/face/input/cameron-diaz-11-152.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/face/input/cameron-diaz-11-152.jpg -------------------------------------------------------------------------------- /lucida/djinntonic/face/input/daniel-craig-20-152.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/face/input/daniel-craig-20-152.jpg -------------------------------------------------------------------------------- /lucida/djinntonic/face/input/johannpic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/face/input/johannpic.jpg -------------------------------------------------------------------------------- /lucida/djinntonic/face/input/tom-cruise-78.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/face/input/tom-cruise-78.jpg -------------------------------------------------------------------------------- /lucida/djinntonic/face/input/uma-thurman-79.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/face/input/uma-thurman-79.jpg -------------------------------------------------------------------------------- /lucida/djinntonic/face/input/zac-efron-83.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/face/input/zac-efron-83.jpg -------------------------------------------------------------------------------- /lucida/djinntonic/face/test/FACEClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/face/test/FACEClient.cpp -------------------------------------------------------------------------------- /lucida/djinntonic/face/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/face/test/Makefile -------------------------------------------------------------------------------- /lucida/djinntonic/face/test/test0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/face/test/test0.jpg -------------------------------------------------------------------------------- /lucida/djinntonic/face/test/test1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/face/test/test1.jpg -------------------------------------------------------------------------------- /lucida/djinntonic/face/test/test2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/face/test/test2.jpg -------------------------------------------------------------------------------- /lucida/djinntonic/imc/IMCHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/imc/IMCHandler.cpp -------------------------------------------------------------------------------- /lucida/djinntonic/imc/IMCHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/imc/IMCHandler.h -------------------------------------------------------------------------------- /lucida/djinntonic/imc/IMCServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/imc/IMCServer.cpp -------------------------------------------------------------------------------- /lucida/djinntonic/imc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/imc/Makefile -------------------------------------------------------------------------------- /lucida/djinntonic/imc/Makefile.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/imc/Makefile.config -------------------------------------------------------------------------------- /lucida/djinntonic/imc/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/imc/Parser.h -------------------------------------------------------------------------------- /lucida/djinntonic/imc/configs/imc.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/imc/configs/imc.prototxt -------------------------------------------------------------------------------- /lucida/djinntonic/imc/imc-classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/imc/imc-classes.txt -------------------------------------------------------------------------------- /lucida/djinntonic/imc/input/bear.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/imc/input/bear.jpg -------------------------------------------------------------------------------- /lucida/djinntonic/imc/input/beer-227.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/imc/input/beer-227.jpg -------------------------------------------------------------------------------- /lucida/djinntonic/imc/input/cat-281-227.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/imc/input/cat-281-227.jpg -------------------------------------------------------------------------------- /lucida/djinntonic/imc/input/dog-208-227.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/imc/input/dog-208-227.jpg -------------------------------------------------------------------------------- /lucida/djinntonic/imc/input/johannpic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/imc/input/johannpic.jpg -------------------------------------------------------------------------------- /lucida/djinntonic/imc/input/rabbits-227-227.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/imc/input/rabbits-227-227.jpg -------------------------------------------------------------------------------- /lucida/djinntonic/imc/input/tp-999-227.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/imc/input/tp-999-227.jpg -------------------------------------------------------------------------------- /lucida/djinntonic/imc/make_imc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/imc/make_imc.sh -------------------------------------------------------------------------------- /lucida/djinntonic/imc/test/IMCClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/imc/test/IMCClient.cpp -------------------------------------------------------------------------------- /lucida/djinntonic/imc/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/imc/test/Makefile -------------------------------------------------------------------------------- /lucida/djinntonic/imc/test/test0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/imc/test/test0.jpg -------------------------------------------------------------------------------- /lucida/djinntonic/imc/test/test1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/imc/test/test1.jpg -------------------------------------------------------------------------------- /lucida/djinntonic/imc/test/test2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/imc/test/test2.jpg -------------------------------------------------------------------------------- /lucida/djinntonic/models/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /lucida/djinntonic/tools/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/tools/common.hpp -------------------------------------------------------------------------------- /lucida/djinntonic/tools/install-caffe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/tools/install-caffe.sh -------------------------------------------------------------------------------- /lucida/djinntonic/tools/install-protobuf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/djinntonic/tools/install-protobuf.sh -------------------------------------------------------------------------------- /lucida/imagematching/Makefile: -------------------------------------------------------------------------------- 1 | SUBDIRS=opencv_imm 2 | include ../../Makefile.common 3 | -------------------------------------------------------------------------------- /lucida/imagematching/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/imagematching/README.md -------------------------------------------------------------------------------- /lucida/imagematching/opencv_imm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/imagematching/opencv_imm/.gitignore -------------------------------------------------------------------------------- /lucida/imagematching/opencv_imm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/imagematching/opencv_imm/Dockerfile -------------------------------------------------------------------------------- /lucida/imagematching/opencv_imm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/imagematching/opencv_imm/Makefile -------------------------------------------------------------------------------- /lucida/imagematching/opencv_imm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/imagematching/opencv_imm/README.md -------------------------------------------------------------------------------- /lucida/imagematching/opencv_imm/server/IMMHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/imagematching/opencv_imm/server/IMMHandler.cpp -------------------------------------------------------------------------------- /lucida/imagematching/opencv_imm/server/IMMHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/imagematching/opencv_imm/server/IMMHandler.h -------------------------------------------------------------------------------- /lucida/imagematching/opencv_imm/server/IMMServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/imagematching/opencv_imm/server/IMMServer.cpp -------------------------------------------------------------------------------- /lucida/imagematching/opencv_imm/server/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/imagematching/opencv_imm/server/Image.cpp -------------------------------------------------------------------------------- /lucida/imagematching/opencv_imm/server/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/imagematching/opencv_imm/server/Image.h -------------------------------------------------------------------------------- /lucida/imagematching/opencv_imm/server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/imagematching/opencv_imm/server/Makefile -------------------------------------------------------------------------------- /lucida/imagematching/opencv_imm/server/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/imagematching/opencv_imm/server/Parser.h -------------------------------------------------------------------------------- /lucida/imagematching/opencv_imm/test/IMMClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/imagematching/opencv_imm/test/IMMClient.cpp -------------------------------------------------------------------------------- /lucida/imagematching/opencv_imm/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/imagematching/opencv_imm/test/Makefile -------------------------------------------------------------------------------- /lucida/imagematching/opencv_imm/test/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/imagematching/opencv_imm/test/Parser.h -------------------------------------------------------------------------------- /lucida/imagematching/opencv_imm/test/test0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/imagematching/opencv_imm/test/test0.jpg -------------------------------------------------------------------------------- /lucida/imagematching/opencv_imm/test/test1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/imagematching/opencv_imm/test/test1.jpg -------------------------------------------------------------------------------- /lucida/imagematching/opencv_imm/test/test2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/imagematching/opencv_imm/test/test2.jpg -------------------------------------------------------------------------------- /lucida/imagematching/opencv_imm/test/test3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/imagematching/opencv_imm/test/test3.jpg -------------------------------------------------------------------------------- /lucida/imagematching/opencv_imm/test/test4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/imagematching/opencv_imm/test/test4.jpg -------------------------------------------------------------------------------- /lucida/imagematching/opencv_imm/test/test5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/imagematching/opencv_imm/test/test5.jpg -------------------------------------------------------------------------------- /lucida/imagematching/opencv_imm/test/test6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/imagematching/opencv_imm/test/test6.jpg -------------------------------------------------------------------------------- /lucida/imagematching/opencv_imm/test/test_db/aya-sofya.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/imagematching/opencv_imm/test/test_db/aya-sofya.jpg -------------------------------------------------------------------------------- /lucida/imagematching/opencv_imm/test/test_db/big-ben.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/imagematching/opencv_imm/test/test_db/big-ben.jpg -------------------------------------------------------------------------------- /lucida/imagematching/opencv_imm/test/test_db/brandenburg-gate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/imagematching/opencv_imm/test/test_db/brandenburg-gate.jpg -------------------------------------------------------------------------------- /lucida/imagematching/opencv_imm/test/test_db/eiffel-tower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/imagematching/opencv_imm/test/test_db/eiffel-tower.jpg -------------------------------------------------------------------------------- /lucida/imagematching/opencv_imm/test/test_db/empire-state-building.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/imagematching/opencv_imm/test/test_db/empire-state-building.jpg -------------------------------------------------------------------------------- /lucida/imagematching/opencv_imm/test/test_db/golden-gate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/imagematching/opencv_imm/test/test_db/golden-gate.jpg -------------------------------------------------------------------------------- /lucida/imagematching/opencv_imm/test/test_db/great-wall-of-china.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/imagematching/opencv_imm/test/test_db/great-wall-of-china.jpg -------------------------------------------------------------------------------- /lucida/imagematching/opencv_imm/test/test_db/pyramids-egypt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/imagematching/opencv_imm/test/test_db/pyramids-egypt.jpg -------------------------------------------------------------------------------- /lucida/imagematching/opencv_imm/test/test_db/roman-colosseum.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/imagematching/opencv_imm/test/test_db/roman-colosseum.jpg -------------------------------------------------------------------------------- /lucida/imagematching/opencv_imm/test/test_db/statue-of-liberty.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/imagematching/opencv_imm/test/test_db/statue-of-liberty.jpg -------------------------------------------------------------------------------- /lucida/imagematching/opencv_imm/test/test_db/sydney-opera-house.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/imagematching/opencv_imm/test/test_db/sydney-opera-house.jpg -------------------------------------------------------------------------------- /lucida/imagematching/opencv_imm/test/test_db/taj-mahal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/imagematching/opencv_imm/test/test_db/taj-mahal.jpg -------------------------------------------------------------------------------- /lucida/imagematching/opencv_imm/test/test_db/tower-pisa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/imagematching/opencv_imm/test/test_db/tower-pisa.jpg -------------------------------------------------------------------------------- /lucida/lucidaservice.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/lucidaservice.thrift -------------------------------------------------------------------------------- /lucida/lucidatypes.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/lucidatypes.thrift -------------------------------------------------------------------------------- /lucida/musicservice/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/musicservice/.gitignore -------------------------------------------------------------------------------- /lucida/musicservice/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/musicservice/Makefile -------------------------------------------------------------------------------- /lucida/musicservice/MusicConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/musicservice/MusicConfig.py -------------------------------------------------------------------------------- /lucida/musicservice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/musicservice/README.md -------------------------------------------------------------------------------- /lucida/musicservice/client/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/musicservice/client/client.py -------------------------------------------------------------------------------- /lucida/musicservice/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/musicservice/helper.py -------------------------------------------------------------------------------- /lucida/musicservice/pygn/Pygn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/musicservice/pygn/Pygn.py -------------------------------------------------------------------------------- /lucida/musicservice/pygn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lucida/musicservice/server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/musicservice/server/server.py -------------------------------------------------------------------------------- /lucida/questionanswering/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | .classpath 3 | .project -------------------------------------------------------------------------------- /lucida/questionanswering/Makefile: -------------------------------------------------------------------------------- 1 | SUBDIRS=OpenEphyra 2 | include ../../Makefile.common -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/.gitignore -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/CHANGES -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/Dockerfile -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/LICENSE -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/Makefile -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/README.md -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/build.xml -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/conf/info.ephyra.nlp.StanfordParser.properties: -------------------------------------------------------------------------------- 1 | modelFile = res/nlp/syntacticparser/stanford/englishPCFG.ser.gz 2 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/conf/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/conf/log4j.properties -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/javadoc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/javadoc.xml -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/db/mongo-java-driver-3.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/db/mongo-java-driver-3.2.2.jar -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/learn/jsoup-1.8.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/learn/jsoup-1.8.3.jar -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/ml/maxent.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/ml/maxent.jar -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/ml/maxent.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/ml/maxent.license -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/ml/maxent.version: -------------------------------------------------------------------------------- 1 | Maxent 2.4.0 2 | 3 | Used by opennlp-tools.jar 4 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/ml/minorthird.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/ml/minorthird.jar -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/ml/minorthird.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/ml/minorthird.license -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/ml/minorthird.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/ml/minorthird.version -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/nlp/jwnl.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/nlp/jwnl.jar -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/nlp/jwnl.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/nlp/jwnl.license -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/nlp/jwnl.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/nlp/jwnl.version -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/nlp/lingpipe.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/nlp/lingpipe.jar -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/nlp/lingpipe.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/nlp/lingpipe.license -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/nlp/lingpipe.version: -------------------------------------------------------------------------------- 1 | LingPipe 3.3.0 2 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/nlp/opennlp-tools.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/nlp/opennlp-tools.jar -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/nlp/opennlp-tools.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/nlp/opennlp-tools.license -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/nlp/opennlp-tools.version: -------------------------------------------------------------------------------- 1 | OpenNLP Tools 1.3.0 2 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/nlp/plingstemmer.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/nlp/plingstemmer.jar -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/nlp/plingstemmer.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/nlp/plingstemmer.license -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/nlp/plingstemmer.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/nlp/plingstemmer.version -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/nlp/snowball.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/nlp/snowball.jar -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/nlp/snowball.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/nlp/snowball.license -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/nlp/snowball.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/nlp/snowball.version -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/nlp/stanford-ner.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/nlp/stanford-ner.jar -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/nlp/stanford-ner.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/nlp/stanford-ner.license -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/nlp/stanford-ner.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/nlp/stanford-ner.version -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/nlp/stanford-parser.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/nlp/stanford-parser.jar -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/nlp/stanford-parser.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/nlp/stanford-parser.license -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/nlp/stanford-parser.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/nlp/stanford-parser.version -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/nlp/stanford-postagger.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/nlp/stanford-postagger.jar -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/nlp/stanford-postagger.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/nlp/stanford-postagger.license -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/nlp/stanford-postagger.version: -------------------------------------------------------------------------------- 1 | Stanford POS Tagger 2006-05-21 2 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/qa/javelin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/qa/javelin.jar -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/qa/javelin.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/qa/javelin.version -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/search/bing-search-java-sdk.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/search/bing-search-java-sdk.jar -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/search/bing-search-java-sdk.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/search/bing-search-java-sdk.license -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/search/bing-search-java-sdk.version: -------------------------------------------------------------------------------- 1 | Bing Search Java SDK 2.0.176 2 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/search/googleapi.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/search/googleapi.jar -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/search/googleapi.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/search/googleapi.license -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/search/googleapi.version: -------------------------------------------------------------------------------- 1 | Google SOAP Search API Beta (deprecated) 2 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/search/indri.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/search/indri.jar -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/search/indri.jar.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/search/indri.jar.old -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/search/indri.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/search/indri.license -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/search/indri.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/search/indri.version -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/search/libindri_jni.jnilib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/search/libindri_jni.jnilib -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/search/libindri_jni.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/search/libindri_jni.so -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/search/yahoosearch.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/search/yahoosearch.jar -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/search/yahoosearch.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/search/yahoosearch.license -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/search/yahoosearch.version: -------------------------------------------------------------------------------- 1 | Yahoo! Search Web Services SDK 2.12 2 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/thrift/libthrift-0.9.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/thrift/libthrift-0.9.2.jar -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/thrift/log4j-1.2.14.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/thrift/log4j-1.2.14.jar -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/thrift/slf4j-api-1.5.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/thrift/slf4j-api-1.5.8.jar -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/thrift/slf4j-log4j12-1.5.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/thrift/slf4j-log4j12-1.5.8.jar -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/util/commons-logging.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/util/commons-logging.jar -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/util/commons-logging.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/util/commons-logging.license -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/util/commons-logging.version: -------------------------------------------------------------------------------- 1 | Commons Logging 1.1.1 2 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/util/gson.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/util/gson.jar -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/util/gson.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/util/gson.license -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/util/gson.version: -------------------------------------------------------------------------------- 1 | Google Gson 1.4 2 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/util/htmlparser.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/util/htmlparser.jar -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/util/htmlparser.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/util/htmlparser.license -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/util/htmlparser.version: -------------------------------------------------------------------------------- 1 | HTML Parser 1.6 20060610 2 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/util/jetty-all.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/util/jetty-all.jar -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/util/log4j.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/util/log4j.jar -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/util/log4j.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/util/log4j.license -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/util/log4j.version: -------------------------------------------------------------------------------- 1 | Apache log4j 1.2.15 2 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/util/servlet-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/util/servlet-api.jar -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/util/trove.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/util/trove.jar -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/util/trove.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/lib/util/trove.license -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/lib/util/trove.version: -------------------------------------------------------------------------------- 1 | Trove 1.0.2 2 | 3 | Used by opennlp-tools.jar 4 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/answertypes/atype_rules_EPH.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/answertypes/atype_rules_EPH.xml -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/answertypes/focus_tree_templates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/answertypes/focus_tree_templates.txt -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/answertypes/trainingdata/TREC13.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/answertypes/trainingdata/TREC13.xml -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/answertypes/trainingdata/TREC15.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/answertypes/trainingdata/TREC15.xml -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/answertypes/trec8-15_EPH.classifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/answertypes/trec8-15_EPH.classifier -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/answertypes/typesystem/ephyra.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/answertypes/typesystem/ephyra.types -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/answertypes/wordnet_atype_map_EPH.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/answertypes/wordnet_atype_map_EPH.txt -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/indices/conjunctions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/indices/conjunctions -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/indices/functionwords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/indices/functionwords -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/indices/functionwords_nonumbers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/indices/functionwords_nonumbers -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/indices/irregularverbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/indices/irregularverbs -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/indices/irregularverbs_short: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/indices/irregularverbs_short -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/indices/prepositions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/indices/prepositions -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/indices/wordfrequencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/indices/wordfrequencies -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/knowledgeannotation/GlobalWeather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/knowledgeannotation/GlobalWeather -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/knowledgeannotation/Wikipedia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/knowledgeannotation/Wikipedia -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/knowledgeannotation/WorldFactbook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/knowledgeannotation/WorldFactbook -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/academicTitle.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/academicTitle.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/actor.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/actor.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/airport.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/airport.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/animal.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/animal.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/anthem.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/anthem.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/author.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/author.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/award.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/award.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/bacteria.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/bacteria.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/bird.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/bird.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/birthstone.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/birthstone.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/bodyPart.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/bodyPart.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/book.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/book.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/canal.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/canal.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/capital.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/capital.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/causeOfDeath.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/causeOfDeath.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/color.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/color.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/competition.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/competition.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/conflict.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/conflict.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/continent.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/continent.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/country.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/country.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/crime.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/crime.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/currency.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/currency.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/daytime.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/daytime.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/director.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/director.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/disease.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/disease.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/drug.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/drug.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/ethnicGroup.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/ethnicGroup.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/festival.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/festival.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/film.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/film.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/filmType.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/filmType.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/firstName.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/firstName.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/flower.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/flower.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/fruit.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/fruit.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/hemisphere.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/hemisphere.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/hour.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/hour.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/island.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/island.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/lake.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/lake.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/language.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/language.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/material.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/material.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/mathematician.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/mathematician.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/medicinal.lst: -------------------------------------------------------------------------------- 1 | aspirin 2 | ASS 3 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/metal.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/metal.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/militaryRank.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/militaryRank.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/mineral.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/mineral.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/ministry.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/ministry.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/month.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/month.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/mountain.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/mountain.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/mountainRange.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/mountainRange.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/musicType.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/musicType.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/musical.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/musical.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/narcotic.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/narcotic.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/nationalPark.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/nationalPark.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/nationality.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/nationality.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/newspaper.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/newspaper.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/nobleTitle.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/nobleTitle.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/ocean.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/ocean.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/opera.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/opera.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/organization.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/organization.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/pathogen.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/pathogen.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/peninsula.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/peninsula.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/planet.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/planet.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/plant.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/plant.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/playwright.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/playwright.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/policeRank.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/policeRank.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/politicalParty.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/politicalParty.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/profession.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/profession.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/province.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/province.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/radioStation.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/radioStation.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/relation.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/relation.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/religion.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/religion.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/river.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/river.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/scientist.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/scientist.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/sea.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/sea.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/season.lst: -------------------------------------------------------------------------------- 1 | spring 2 | summer 3 | autumn 4 | fall 5 | winter 6 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/show.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/show.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/showType.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/showType.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/socialTitle.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/socialTitle.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/sport.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/sport.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/stadium.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/stadium.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/state.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/state.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/stone.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/stone.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/style.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/style.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/team.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/team.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/therapy.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/therapy.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/timezone.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/timezone.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/ORGANIZATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/ORGANIZATION -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/PERSON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/PERSON -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/PLACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/PLACE -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/building.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/building.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/cdg.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/cdg.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/charities.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/charities.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/city.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/city.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/city_cap.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/city_cap.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/city_old.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/city_old.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/company.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/company.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/date_key.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/date_key.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/date_post.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/date_post.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/date_pre.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/date_pre.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/date_unit.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/date_unit.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/datespan.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/datespan.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/day.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/day.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/duration.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/duration.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/jobtitles.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/jobtitles.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/loc_key.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/loc_key.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/minute.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/minute.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/new_cdg.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/new_cdg.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/number.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/number.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/ordinal.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/ordinal.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/org_base.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/org_base.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/org_key.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/org_key.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/person_ambig.lst: -------------------------------------------------------------------------------- 1 | Will 2 | Silver 3 | Dame 4 | Jan -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/person_ambig2.lst: -------------------------------------------------------------------------------- 1 | Brittany 2 | May 3 | June 4 | April 5 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/region.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/region.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/region_uk.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/region_uk.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/street.lst: -------------------------------------------------------------------------------- 1 | Avenue 2 | Crescent 3 | Hill 4 | Lane 5 | Rise 6 | Road 7 | Street 8 | Way 9 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/time_ampm.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/time_ampm.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/time_unit.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/time_unit.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/year.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/todo/year.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/tvChannel.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/tvChannel.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/usPresident.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/usPresident.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/vaccine.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/vaccine.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/virus.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/virus.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/water.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/water.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/zodiacSign.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/lists/zodiacSign.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/netagger/patterns.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/netagger/patterns.lst -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/postagger/opennlp/tag.bin.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/postagger/opennlp/tag.bin.gz -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/nlp/postagger/opennlp/tagdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/nlp/postagger/opennlp/tagdict -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/ontologies/cns/alternations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/ontologies/cns/alternations.xml -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/ontologies/cns/costs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/ontologies/cns/costs.xml -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/ontologies/cns/ontology.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/ontologies/cns/ontology.xml -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/ontologies/wordnet/adj.exc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/ontologies/wordnet/adj.exc -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/ontologies/wordnet/adv.exc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/ontologies/wordnet/adv.exc -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/ontologies/wordnet/data.adj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/ontologies/wordnet/data.adj -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/ontologies/wordnet/data.adv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/ontologies/wordnet/data.adv -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/ontologies/wordnet/data.noun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/ontologies/wordnet/data.noun -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/ontologies/wordnet/data.verb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/ontologies/wordnet/data.verb -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/ontologies/wordnet/index.adj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/ontologies/wordnet/index.adj -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/ontologies/wordnet/index.adv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/ontologies/wordnet/index.adv -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/ontologies/wordnet/index.noun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/ontologies/wordnet/index.noun -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/ontologies/wordnet/index.sense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/ontologies/wordnet/index.sense -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/ontologies/wordnet/index.verb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/ontologies/wordnet/index.verb -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/ontologies/wordnet/noun.exc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/ontologies/wordnet/noun.exc -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/ontologies/wordnet/verb.exc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/ontologies/wordnet/verb.exc -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/ontologies/wordnet/wordnet.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/ontologies/wordnet/wordnet.license -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/ontologies/wordnet/wordnet.version: -------------------------------------------------------------------------------- 1 | WordNet 3.0 2 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/patternlearning/answerpatterns/ACTOR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/patternlearning/answerpatterns/ACTOR -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/patternlearning/answerpatterns/AGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/patternlearning/answerpatterns/AGE -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/patternlearning/answerpatterns/AUTHOR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/patternlearning/answerpatterns/AUTHOR -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/patternlearning/answerpatterns/DATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/patternlearning/answerpatterns/DATE -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/patternlearning/answerpatterns/FATHER: -------------------------------------------------------------------------------- 1 | #passages: 1290 2 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/patternlearning/answerpatterns/FOOD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/patternlearning/answerpatterns/FOOD -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/patternlearning/answerpatterns/NAME: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/patternlearning/answerpatterns/NAME -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/patternlearning/answerpatterns/SIZE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/patternlearning/answerpatterns/SIZE -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/patternlearning/answerpatterns/VALUE: -------------------------------------------------------------------------------- 1 | #passages: 575 2 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/patternlearning/interpretations/additional/CAPITAL: -------------------------------------------------------------------------------- 1 | California#Sacramento# 2 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/patternlearning/interpretations/additional/DATEOFBIRTH: -------------------------------------------------------------------------------- 1 | Lenin#1870# 2 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/patternlearning/interpretations/additional/DATEOFDEATH: -------------------------------------------------------------------------------- 1 | Lenin#1924# 2 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/patternlearning/interpretations/todo/COMPETITOR: -------------------------------------------------------------------------------- 1 | Sammy Sosa#McGwire# 2 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/patternlearning/interpretations/todo/DATEOFDISCOVERY: -------------------------------------------------------------------------------- 1 | Hale Bopp#July 1995# 2 | Kirch's Comet#1680# 3 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/patternlearning/interpretations/todo/DATEOFRETIREMENT: -------------------------------------------------------------------------------- 1 | Khmer Rouge#1979# 2 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/patternlearning/interpretations/todo/DATEOFSTARTOFOPERATION: -------------------------------------------------------------------------------- 1 | Amtrak#1971# 2 | CNN#June 1980# 3 | chunnel#1994# 4 | louvre museum#1793# 5 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/patternlearning/interpretations/todo/DATEOFWINNING: -------------------------------------------------------------------------------- 1 | Michael Schumacher#2000# 2 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/patternlearning/interpretations/todo/ETHNICGROUP: -------------------------------------------------------------------------------- 1 | Sacajawea#Shoshone# 2 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/patternlearning/interpretations/todo/FATHER: -------------------------------------------------------------------------------- 1 | Kim Jong Il#Kim Il-sung# 2 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/patternlearning/interpretations/todo/LENGTH: -------------------------------------------------------------------------------- 1 | // low recall 2 | Chunnel#31 miles# 3 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/patternlearning/interpretations/todo/MOTHER: -------------------------------------------------------------------------------- 1 | Jesus of Nazareth#virgin Mary# 2 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/patternlearning/interpretations/todo/NAMER: -------------------------------------------------------------------------------- 1 | // low recall 2 | Mount St. Helens#Captain George Vancouver# 3 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/patternlearning/interpretations/todo/NUMBEROFCHILDREN: -------------------------------------------------------------------------------- 1 | Bill Cosby#5 children# 2 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/patternlearning/interpretations/todo/NUMBEROFMEMBER: -------------------------------------------------------------------------------- 1 | OPEC#11# 2 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/patternlearning/interpretations/todo/NUMBEROFVICTORIES: -------------------------------------------------------------------------------- 1 | Rocky Marciano#49# 2 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/patternlearning/interpretations/todo/NUMBEROFVISITORS: -------------------------------------------------------------------------------- 1 | Louvre#annual#five million# 2 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/patternlearning/interpretations/todo/PLACEOFFOUNDATION: -------------------------------------------------------------------------------- 1 | Black Panthers#Oakland# 2 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/patternlearning/interpretations/todo/PLACEOFFUNERAL: -------------------------------------------------------------------------------- 1 | // low recall 2 | Jean Harlow#Forest Lawn Memorial Park# 3 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/patternlearning/interpretations/todo/VALUE: -------------------------------------------------------------------------------- 1 | one ton of cement#$30#\$30 2 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/patternlearning/interpretations/todo/WEIGHT: -------------------------------------------------------------------------------- 1 | // low recall 2 | elephant#5.5 tons# 3 | -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/patternlearning/questionpatterns/NUMBEROFCHILDREN: -------------------------------------------------------------------------------- 1 | how many children do have -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/patternlearning/questionpatterns/WEIGHT: -------------------------------------------------------------------------------- 1 | how heavy is -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/reformulations/all/how: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/reformulations/all/how -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/reformulations/all/name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/reformulations/all/name -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/reformulations/all/what_which: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/reformulations/all/what_which -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/reformulations/all/when: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/reformulations/all/when -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/reformulations/all/where: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/reformulations/all/where -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/reformulations/all/who: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/reformulations/all/who -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/reformulations/all/why: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/reformulations/all/why -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/reformulations/name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/reformulations/name -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/reformulations/what_which: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/reformulations/what_which -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/reformulations/when: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/reformulations/when -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/reformulations/where: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/reformulations/where -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/reformulations/who: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/reformulations/who -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/reformulations/who__is_are_was_were: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/reformulations/who__is_are_was_were -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec.description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec.description -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec10answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec10answers -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec10answers_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec10answers_list -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec10patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec10patterns -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec10questions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec10questions -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec10questions_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec10questions_list -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec11answers_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec11answers_list -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec11patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec11patterns -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec11questions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec11questions -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec11questions_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec11questions_list -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec12answers_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec12answers_list -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec12patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec12patterns -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec12patterns+docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec12patterns+docs -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec12questions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec12questions -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec13answers_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec13answers_list -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec13answers_other: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec13answers_other -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec13patterns_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec13patterns_list -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec13questions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec13questions.xml -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec13targettypes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec13targettypes -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec14answers_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec14answers_list -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec14answers_other: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec14answers_other -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec14patterns_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec14patterns_list -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec14questions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec14questions.xml -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec14targettypes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec14targettypes -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec15answers_ciqa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec15answers_ciqa -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec15answers_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec15answers_list -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec15answers_other: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec15answers_other -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec15patterns_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec15patterns_list -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec15questions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec15questions.xml -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec15targettypes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec15targettypes -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec16answers_ciqa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec16answers_ciqa -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec16questions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec16questions.xml -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec16targettypes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec16targettypes -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec8answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec8answers -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec8development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec8development -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec8patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec8patterns -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec8questions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec8questions -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec9answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec9answers -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec9patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec9patterns -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec9questions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec9questions -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/res/testdata/trec/trec9variants: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/res/testdata/trec/trec9variants -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/scripts/EphyraTREC13To16.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/scripts/EphyraTREC13To16.sh -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/scripts/EphyraTREC8To11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/scripts/EphyraTREC8To11.sh -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/scripts/OpenEphyra.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/scripts/OpenEphyra.bat -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/scripts/OpenEphyra.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/scripts/OpenEphyra.sh -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/scripts/OpenEphyraCorpus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/scripts/OpenEphyraCorpus.sh -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/src/info/ephyra/OpenEphyra.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/src/info/ephyra/OpenEphyra.java -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/src/info/ephyra/OpenEphyraServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/src/info/ephyra/OpenEphyraServer.java -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/src/info/ephyra/io/Logger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/src/info/ephyra/io/Logger.java -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/src/info/ephyra/io/MsgPrinter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/src/info/ephyra/io/MsgPrinter.java -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/src/info/ephyra/nlp/LingPipe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/src/info/ephyra/nlp/LingPipe.java -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/src/info/ephyra/nlp/NETagger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/src/info/ephyra/nlp/NETagger.java -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/src/info/ephyra/nlp/OpenNLP.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/src/info/ephyra/nlp/OpenNLP.java -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/src/info/ephyra/nlp/RegExMatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/src/info/ephyra/nlp/RegExMatcher.java -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/src/info/ephyra/nlp/StanfordParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/src/info/ephyra/nlp/StanfordParser.java -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/src/info/ephyra/nlp/compile-snowball.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/src/info/ephyra/nlp/compile-snowball.sh -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/src/info/ephyra/search/Result.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/src/info/ephyra/search/Result.java -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/src/info/ephyra/search/Search.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/src/info/ephyra/search/Search.java -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/src/info/ephyra/trec/CorefResolver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/src/info/ephyra/trec/CorefResolver.java -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/src/info/ephyra/trec/TRECAnswer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/src/info/ephyra/trec/TRECAnswer.java -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/src/info/ephyra/trec/TRECNugget.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/src/info/ephyra/trec/TRECNugget.java -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/src/info/ephyra/trec/TRECPattern.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/src/info/ephyra/trec/TRECPattern.java -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/src/info/ephyra/trec/TRECQuestion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/src/info/ephyra/trec/TRECQuestion.java -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/src/info/ephyra/trec/TRECTarget.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/src/info/ephyra/trec/TRECTarget.java -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/src/info/ephyra/util/ArrayUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/src/info/ephyra/util/ArrayUtils.java -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/src/info/ephyra/util/Clock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/src/info/ephyra/util/Clock.java -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/src/info/ephyra/util/Dictionary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/src/info/ephyra/util/Dictionary.java -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/src/info/ephyra/util/FileCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/src/info/ephyra/util/FileCache.java -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/src/info/ephyra/util/FileUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/src/info/ephyra/util/FileUtils.java -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/src/info/ephyra/util/HTMLConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/src/info/ephyra/util/HTMLConverter.java -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/src/info/ephyra/util/Properties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/src/info/ephyra/util/Properties.java -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/src/info/ephyra/util/StringUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/src/info/ephyra/util/StringUtils.java -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/src/info/ephyra/util/TimerThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/src/info/ephyra/util/TimerThread.java -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/src/lucida/handler/KnowledgeBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/src/lucida/handler/KnowledgeBase.java -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/src/lucida/main/QADaemon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/src/lucida/main/QADaemon.java -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/src/lucida/test/QAClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/src/lucida/test/QAClient.java -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/start_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/start_server.sh -------------------------------------------------------------------------------- /lucida/questionanswering/OpenEphyra/start_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/OpenEphyra/start_test.sh -------------------------------------------------------------------------------- /lucida/questionanswering/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/questionanswering/README.md -------------------------------------------------------------------------------- /lucida/speechrecognition/Makefile: -------------------------------------------------------------------------------- 1 | SUBDIRS=kaldi_gstreamer_asr 2 | include ../../Makefile.common -------------------------------------------------------------------------------- /lucida/speechrecognition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/speechrecognition/README.md -------------------------------------------------------------------------------- /lucida/speechrecognition/kaldi_gstreamer_asr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/speechrecognition/kaldi_gstreamer_asr/.gitignore -------------------------------------------------------------------------------- /lucida/speechrecognition/kaldi_gstreamer_asr/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/speechrecognition/kaldi_gstreamer_asr/Dockerfile -------------------------------------------------------------------------------- /lucida/speechrecognition/kaldi_gstreamer_asr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/speechrecognition/kaldi_gstreamer_asr/LICENSE -------------------------------------------------------------------------------- /lucida/speechrecognition/kaldi_gstreamer_asr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/speechrecognition/kaldi_gstreamer_asr/Makefile -------------------------------------------------------------------------------- /lucida/speechrecognition/kaldi_gstreamer_asr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/speechrecognition/kaldi_gstreamer_asr/README.md -------------------------------------------------------------------------------- /lucida/speechrecognition/kaldi_gstreamer_asr/estonian_worker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/speechrecognition/kaldi_gstreamer_asr/estonian_worker.yaml -------------------------------------------------------------------------------- /lucida/speechrecognition/kaldi_gstreamer_asr/etc/english-supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/speechrecognition/kaldi_gstreamer_asr/etc/english-supervisord.conf -------------------------------------------------------------------------------- /lucida/speechrecognition/kaldi_gstreamer_asr/install_idlak.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/speechrecognition/kaldi_gstreamer_asr/install_idlak.sh -------------------------------------------------------------------------------- /lucida/speechrecognition/kaldi_gstreamer_asr/install_kaldi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/speechrecognition/kaldi_gstreamer_asr/install_kaldi.sh -------------------------------------------------------------------------------- /lucida/speechrecognition/kaldi_gstreamer_asr/install_kaldi_tts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/speechrecognition/kaldi_gstreamer_asr/install_kaldi_tts.sh -------------------------------------------------------------------------------- /lucida/speechrecognition/kaldi_gstreamer_asr/kaldigstserver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lucida/speechrecognition/kaldi_gstreamer_asr/kaldigstserver/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/speechrecognition/kaldi_gstreamer_asr/kaldigstserver/client.py -------------------------------------------------------------------------------- /lucida/speechrecognition/kaldi_gstreamer_asr/kaldigstserver/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/speechrecognition/kaldi_gstreamer_asr/kaldigstserver/common.py -------------------------------------------------------------------------------- /lucida/speechrecognition/kaldi_gstreamer_asr/kaldigstserver/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/speechrecognition/kaldi_gstreamer_asr/kaldigstserver/decoder.py -------------------------------------------------------------------------------- /lucida/speechrecognition/kaldi_gstreamer_asr/kaldigstserver/decoder2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/speechrecognition/kaldi_gstreamer_asr/kaldigstserver/decoder2.py -------------------------------------------------------------------------------- /lucida/speechrecognition/kaldi_gstreamer_asr/kaldigstserver/decoder_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/speechrecognition/kaldi_gstreamer_asr/kaldigstserver/decoder_test.py -------------------------------------------------------------------------------- /lucida/speechrecognition/kaldi_gstreamer_asr/kaldigstserver/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/speechrecognition/kaldi_gstreamer_asr/kaldigstserver/settings.py -------------------------------------------------------------------------------- /lucida/speechrecognition/kaldi_gstreamer_asr/kaldigstserver/test-buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/speechrecognition/kaldi_gstreamer_asr/kaldigstserver/test-buffer.py -------------------------------------------------------------------------------- /lucida/speechrecognition/kaldi_gstreamer_asr/kaldigstserver/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/speechrecognition/kaldi_gstreamer_asr/kaldigstserver/worker.py -------------------------------------------------------------------------------- /lucida/speechrecognition/kaldi_gstreamer_asr/sample_english_nnet2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/speechrecognition/kaldi_gstreamer_asr/sample_english_nnet2.yaml -------------------------------------------------------------------------------- /lucida/speechrecognition/kaldi_gstreamer_asr/sample_full_post_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/speechrecognition/kaldi_gstreamer_asr/sample_full_post_processor.py -------------------------------------------------------------------------------- /lucida/speechrecognition/kaldi_gstreamer_asr/sample_worker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/speechrecognition/kaldi_gstreamer_asr/sample_worker.yaml -------------------------------------------------------------------------------- /lucida/speechrecognition/kaldi_gstreamer_asr/simple_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/speechrecognition/kaldi_gstreamer_asr/simple_start.sh -------------------------------------------------------------------------------- /lucida/speechrecognition/kaldi_gstreamer_asr/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/speechrecognition/kaldi_gstreamer_asr/start.sh -------------------------------------------------------------------------------- /lucida/speechrecognition/kaldi_gstreamer_asr/static/status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/speechrecognition/kaldi_gstreamer_asr/static/status.html -------------------------------------------------------------------------------- /lucida/speechrecognition/kaldi_gstreamer_asr/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/speechrecognition/kaldi_gstreamer_asr/stop.sh -------------------------------------------------------------------------------- /lucida/speechrecognition/kaldi_gstreamer_asr/test/data/bill_gates-TED.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/speechrecognition/kaldi_gstreamer_asr/test/data/bill_gates-TED.mp3 -------------------------------------------------------------------------------- /lucida/weather/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/weather/.gitignore -------------------------------------------------------------------------------- /lucida/weather/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/weather/Makefile -------------------------------------------------------------------------------- /lucida/weather/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/weather/README.md -------------------------------------------------------------------------------- /lucida/weather/WeatherConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/weather/WeatherConfig.py -------------------------------------------------------------------------------- /lucida/weather/client/WeatherClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/weather/client/WeatherClient.py -------------------------------------------------------------------------------- /lucida/weather/server/WeatherServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/lucida/weather/server/WeatherServer.py -------------------------------------------------------------------------------- /service_graph_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/service_graph_0.png -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/.gitignore -------------------------------------------------------------------------------- /tools/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/Dockerfile -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/apt_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/apt_deps.sh -------------------------------------------------------------------------------- /tools/check_mongodb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/check_mongodb.cpp -------------------------------------------------------------------------------- /tools/check_opencv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/check_opencv.cpp -------------------------------------------------------------------------------- /tools/check_thrift.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/check_thrift.thrift -------------------------------------------------------------------------------- /tools/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/clean.sh -------------------------------------------------------------------------------- /tools/deploy/.gitignore: -------------------------------------------------------------------------------- 1 | lucida_data 2 | .ipynb_checkpoints 3 | installation.docx 4 | -------------------------------------------------------------------------------- /tools/deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/README.md -------------------------------------------------------------------------------- /tools/deploy/asrmaster-controller-https.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/asrmaster-controller-https.yaml -------------------------------------------------------------------------------- /tools/deploy/asrmaster-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/asrmaster-controller.yaml -------------------------------------------------------------------------------- /tools/deploy/asrmaster-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/asrmaster-service.yaml -------------------------------------------------------------------------------- /tools/deploy/asrworker-controller-https.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/asrworker-controller-https.yaml -------------------------------------------------------------------------------- /tools/deploy/asrworker-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/asrworker-controller.yaml -------------------------------------------------------------------------------- /tools/deploy/ca-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/ca-controller.yaml -------------------------------------------------------------------------------- /tools/deploy/ca-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/ca-service.yaml -------------------------------------------------------------------------------- /tools/deploy/cluster_up_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/cluster_up_linux.sh -------------------------------------------------------------------------------- /tools/deploy/cluster_up_osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/cluster_up_osx.sh -------------------------------------------------------------------------------- /tools/deploy/dig-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/dig-controller.yaml -------------------------------------------------------------------------------- /tools/deploy/dig-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/dig-service.yaml -------------------------------------------------------------------------------- /tools/deploy/face-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/face-controller.yaml -------------------------------------------------------------------------------- /tools/deploy/face-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/face-service.yaml -------------------------------------------------------------------------------- /tools/deploy/imc-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/imc-controller.yaml -------------------------------------------------------------------------------- /tools/deploy/imc-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/imc-service.yaml -------------------------------------------------------------------------------- /tools/deploy/img/.gitignore: -------------------------------------------------------------------------------- 1 | *.pdf 2 | -------------------------------------------------------------------------------- /tools/deploy/img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/img/1.jpg -------------------------------------------------------------------------------- /tools/deploy/img/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/img/10.jpg -------------------------------------------------------------------------------- /tools/deploy/img/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/img/11.jpg -------------------------------------------------------------------------------- /tools/deploy/img/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/img/12.jpg -------------------------------------------------------------------------------- /tools/deploy/img/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/img/13.jpg -------------------------------------------------------------------------------- /tools/deploy/img/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/img/14.jpg -------------------------------------------------------------------------------- /tools/deploy/img/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/img/15.jpg -------------------------------------------------------------------------------- /tools/deploy/img/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/img/16.jpg -------------------------------------------------------------------------------- /tools/deploy/img/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/img/17.jpg -------------------------------------------------------------------------------- /tools/deploy/img/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/img/2.jpg -------------------------------------------------------------------------------- /tools/deploy/img/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/img/3.jpg -------------------------------------------------------------------------------- /tools/deploy/img/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/img/4.jpg -------------------------------------------------------------------------------- /tools/deploy/img/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/img/5.jpg -------------------------------------------------------------------------------- /tools/deploy/img/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/img/6.jpg -------------------------------------------------------------------------------- /tools/deploy/img/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/img/7.jpg -------------------------------------------------------------------------------- /tools/deploy/img/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/img/8.jpg -------------------------------------------------------------------------------- /tools/deploy/img/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/img/9.jpg -------------------------------------------------------------------------------- /tools/deploy/imm-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/imm-controller.yaml -------------------------------------------------------------------------------- /tools/deploy/imm-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/imm-service.yaml -------------------------------------------------------------------------------- /tools/deploy/instructions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/instructions.ipynb -------------------------------------------------------------------------------- /tools/deploy/memcached-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/memcached-controller.yaml -------------------------------------------------------------------------------- /tools/deploy/memcached-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/memcached-service.yaml -------------------------------------------------------------------------------- /tools/deploy/mongo-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/mongo-controller.yaml -------------------------------------------------------------------------------- /tools/deploy/mongo-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/mongo-service.yaml -------------------------------------------------------------------------------- /tools/deploy/ms-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/ms-controller.yaml -------------------------------------------------------------------------------- /tools/deploy/ms-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/ms-service.yaml -------------------------------------------------------------------------------- /tools/deploy/qa-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/qa-controller.yaml -------------------------------------------------------------------------------- /tools/deploy/qa-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/qa-service.yaml -------------------------------------------------------------------------------- /tools/deploy/start_services.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/start_services.sh -------------------------------------------------------------------------------- /tools/deploy/we-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/we-controller.yaml -------------------------------------------------------------------------------- /tools/deploy/we-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/we-service.yaml -------------------------------------------------------------------------------- /tools/deploy/web-controller-https.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/web-controller-https.yaml -------------------------------------------------------------------------------- /tools/deploy/web-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/web-controller.yaml -------------------------------------------------------------------------------- /tools/deploy/web-service-https.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/web-service-https.yaml -------------------------------------------------------------------------------- /tools/deploy/web-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/deploy/web-service.yaml -------------------------------------------------------------------------------- /tools/download_wiki_index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/download_wiki_index.sh -------------------------------------------------------------------------------- /tools/full_lucida.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/full_lucida.conf -------------------------------------------------------------------------------- /tools/install_fbthrift.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/install_fbthrift.sh -------------------------------------------------------------------------------- /tools/install_java.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/install_java.sh -------------------------------------------------------------------------------- /tools/install_mongodb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/install_mongodb.sh -------------------------------------------------------------------------------- /tools/install_opencv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/install_opencv.sh -------------------------------------------------------------------------------- /tools/install_python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/install_python.sh -------------------------------------------------------------------------------- /tools/install_thrift.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/install_thrift.sh -------------------------------------------------------------------------------- /tools/mongodb.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/mongodb.service -------------------------------------------------------------------------------- /tools/python_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/python_requirements.txt -------------------------------------------------------------------------------- /tools/start_all_tmux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tools/start_all_tmux.sh -------------------------------------------------------------------------------- /tutorial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tutorial.pdf -------------------------------------------------------------------------------- /tutorial.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claritylab/lucida/HEAD/tutorial.pptx --------------------------------------------------------------------------------