├── ANNIEGazetterFiles ├── accomplishments.lst ├── awards.lst ├── credibility.lst ├── education_and_training.lst ├── extracurricular.lst ├── misc.lst ├── skills.lst ├── summary.lst └── work_experience.lst ├── GATEFiles ├── ANNIEResumeParser.gapp ├── bin │ ├── GATEXML-content.sh │ ├── GATEXML-statistics.sh │ ├── gate.bat │ ├── gate.jar │ ├── gate.sh │ ├── gateLauncher.jar │ ├── log4j.properties │ ├── plugins-info-to-HTML.pl │ ├── search-code.sh │ └── splash.png ├── gate.xml ├── lib │ ├── ant-1.9.3.jar │ ├── ant-launcher-1.9.3.jar │ ├── aopalliance-1.0.jar │ ├── apache-mime4j-core-0.7.2.jar │ ├── apache-mime4j-dom-0.7.2.jar │ ├── bcmail-jdk15-1.45.jar │ ├── bcprov-jdk15-1.45.jar │ ├── commons-codec-1.5.jar │ ├── commons-compress-1.5.jar │ ├── commons-io-2.4.jar │ ├── commons-lang-2.6.jar │ ├── commons-logging-1.1.3.jar │ ├── dom4j-1.6.1.jar │ ├── flying-saucer-core-9.0.4.jar │ ├── fontbox-1.8.4.jar │ ├── gate-asm-3.1.jar │ ├── gate-compiler-jdt-4.3.2-P20140317-1600.jar │ ├── hamcrest-core-1.3.jar │ ├── ivy-2.3.0.jar │ ├── ivy-report.css │ ├── jackson-annotations-2.3.0.jar │ ├── jackson-core-2.3.2.jar │ ├── jackson-databind-2.3.2.jar │ ├── java-getopt-1.0.13.jar │ ├── jaxen-1.1.6.jar │ ├── jdom-1.1.3.jar │ ├── jempbox-1.8.4.jar │ ├── junit-4.11.jar │ ├── log4j-1.2.17.jar │ ├── metadata-extractor-2.6.2.jar │ ├── nekohtml-1.9.14.jar │ ├── pdfbox-1.8.4.jar │ ├── poi-3.10-beta2.jar │ ├── poi-ooxml-3.10-beta2.jar │ ├── poi-ooxml-schemas-3.10-beta2.jar │ ├── poi-scratchpad-3.10-beta2.jar │ ├── spring-aop-2.5.6.SEC01.jar │ ├── spring-beans-2.5.6.SEC01.jar │ ├── spring-core-2.5.6.SEC01.jar │ ├── stax2-api-3.1.1.jar │ ├── tika-core-1.5.jar │ ├── tika-parsers-1.5.jar │ ├── uk.ac.gate-gate-core-all.html │ ├── uk.ac.gate-gate-core-compile.html │ ├── uk.ac.gate-gate-core-default.html │ ├── uk.ac.gate-gate-core-master.html │ ├── uk.ac.gate-gate-core-required.html │ ├── uk.ac.gate-gate-core-runtime.html │ ├── uk.ac.gate-gate-core-test.html │ ├── woodstox-core-lgpl-4.2.0.jar │ ├── xercesImpl-2.9.1.jar │ ├── xmlbeans-2.3.0.jar │ ├── xmlunit-1.5.jar │ ├── xpp3-1.1.4c.jar │ └── xstream-1.4.7.jar └── plugins │ ├── ANNIE │ ├── .annie-defaults-metadata │ │ ├── ann-job-annie.png │ │ ├── icon.png │ │ ├── long-desc.html │ │ ├── metadata.xml │ │ └── short-desc.html │ ├── ANNIE_with_defaults.gapp │ ├── build.xml │ ├── creole.xml │ └── resources │ │ ├── NE │ │ ├── address - Copy.jape │ │ ├── address.jape │ │ ├── clean.jape │ │ ├── date.jape │ │ ├── date_pre.jape │ │ ├── document_date.jape │ │ ├── email.jape │ │ ├── final.jape │ │ ├── first.jape │ │ ├── firstname.jape │ │ ├── gender.jape │ │ ├── identifier.jape │ │ ├── jobtitle.jape │ │ ├── loc_context.jape │ │ ├── main-twitter.jape │ │ ├── main.jape │ │ ├── name-twitter.jape │ │ ├── name.jape │ │ ├── name_context.jape │ │ ├── name_post.jape │ │ ├── number.jape │ │ ├── numberletter.jape │ │ ├── org_context.jape │ │ ├── reldate.jape │ │ ├── unknown.jape │ │ ├── url.jape │ │ └── url_pre.jape │ │ ├── VP │ │ └── VerbGroups.jape │ │ ├── gazetteer │ │ ├── abbreviations.lst │ │ ├── accomplishments.lst │ │ ├── adbc.lst │ │ ├── agency.lst │ │ ├── airport.lst │ │ ├── airports.lst │ │ ├── awards.lst │ │ ├── cabinet_ministers.lst │ │ ├── cdg.lst │ │ ├── charities.lst │ │ ├── city.lst │ │ ├── city_cap.lst │ │ ├── city_lower.lst │ │ ├── city_uk.lst │ │ ├── colours.lst │ │ ├── companies_uk.lst │ │ ├── company.lst │ │ ├── company_ambig.lst │ │ ├── company_cap.lst │ │ ├── country.lst │ │ ├── country_abbrev.lst │ │ ├── country_adj.lst │ │ ├── country_cap.lst │ │ ├── country_code.lst │ │ ├── country_lower.lst │ │ ├── credibility.lst │ │ ├── currency_prefix.lst │ │ ├── currency_unit.lst │ │ ├── date.lst │ │ ├── date_key.lst │ │ ├── date_other.lst │ │ ├── date_post.lst │ │ ├── date_pre.lst │ │ ├── date_unit.lst │ │ ├── datespan.lst │ │ ├── day.lst │ │ ├── day_cap.lst │ │ ├── department.lst │ │ ├── determiner.lst │ │ ├── education_and_training.lst │ │ ├── extracurricular.lst │ │ ├── facility.lst │ │ ├── facility_key.lst │ │ ├── facility_key_ext.lst │ │ ├── festival.lst │ │ ├── foreign_ministers.lst │ │ ├── govern_key.lst │ │ ├── government.lst │ │ ├── government │ │ │ ├── cabinet-ministers.lst │ │ │ ├── cabinet-positions.lst │ │ │ ├── constituencies-england.lst │ │ │ ├── constituencies-n.ireland.lst │ │ │ ├── constituencies-scotland.lst │ │ │ ├── constituencies-wales.lst │ │ │ ├── constituencies.lst │ │ │ ├── document-pre.lst │ │ │ ├── document_ending_other.lst │ │ │ ├── executive-agencies-abbreviations.lst │ │ │ ├── executive-agencies-old.lst │ │ │ ├── executive-agencies.lst │ │ │ ├── govt-departments-ministerial-abbreviations.lst │ │ │ ├── govt-departments-ministerial.lst │ │ │ ├── govt-departments-non-ministerial-abbreviations.lst │ │ │ ├── govt-departments-non-ministerial-old.lst │ │ │ ├── govt-departments-non-ministerial.lst │ │ │ ├── govt-responsibility-categories.lst │ │ │ ├── laws.lst │ │ │ ├── legislation-ending.lst │ │ │ ├── legislation-pre.lst │ │ │ ├── list-case-sensitive.def │ │ │ ├── lists.def │ │ │ ├── military-operations-abbrev.lst │ │ │ ├── military-operations.lst │ │ │ ├── ministers-attending-cabinet.lst │ │ │ ├── non-cabinet-minister-posts.lst │ │ │ ├── non-cabinet-ministers.lst │ │ │ ├── org-law.lst │ │ │ ├── org-military.lst │ │ │ ├── org-other.lst │ │ │ ├── org-political.lst │ │ │ ├── project.lst │ │ │ ├── project_keyword.lst │ │ │ ├── public-bodies-non-departmental.lst │ │ │ ├── report-ending.lst │ │ │ ├── title-airforce.lst │ │ │ ├── title-army.lst │ │ │ ├── title-medical.lst │ │ │ ├── title-navy.lst │ │ │ ├── titles-other.lst │ │ │ ├── war_key.lst │ │ │ └── wars.lst │ │ ├── government_base.lst │ │ ├── greeting.lst │ │ ├── hour.lst │ │ ├── ident_prekey.lst │ │ ├── jobtitles.lst │ │ ├── lists.def │ │ ├── loc_generalkey.lst │ │ ├── loc_key.lst │ │ ├── loc_other.lst │ │ ├── loc_prekey.lst │ │ ├── loc_prekey_lower.lst │ │ ├── loc_relig.lst │ │ ├── mapping.def │ │ ├── ministry.lst │ │ ├── minutes.lst │ │ ├── misc.lst │ │ ├── months.lst │ │ ├── months_lower.lst │ │ ├── more_company.lst │ │ ├── mountain.lst │ │ ├── new_adj.lst │ │ ├── newspapers.lst │ │ ├── non_company.lst │ │ ├── nonspec_date.lst │ │ ├── not_org.lst │ │ ├── number_fold.lst │ │ ├── numbers.lst │ │ ├── ordinal.lst │ │ ├── org_base.lst │ │ ├── org_ending.lst │ │ ├── org_key.lst │ │ ├── org_key_cap.lst │ │ ├── org_pre.lst │ │ ├── org_spur.lst │ │ ├── organization.lst │ │ ├── organization_nouns.lst │ │ ├── other_people.lst │ │ ├── othorg_key.lst │ │ ├── percent.lst │ │ ├── person_ambig.lst │ │ ├── person_ambig.old.lst │ │ ├── person_ambig2.lst │ │ ├── person_ambig_lower.lst │ │ ├── person_ending.lst │ │ ├── person_female.lst │ │ ├── person_female_ambig.lst │ │ ├── person_female_cap.lst │ │ ├── person_female_lower.lst │ │ ├── person_first.lst │ │ ├── person_full.lst │ │ ├── person_male.lst │ │ ├── person_male_ambig.lst │ │ ├── person_male_cap.lst │ │ ├── person_male_lower.lst │ │ ├── person_relig.lst │ │ ├── person_sci.lst │ │ ├── person_spur.lst │ │ ├── phone_prefix.lst │ │ ├── planet.lst │ │ ├── post.lst │ │ ├── province.lst │ │ ├── province_aa.lst │ │ ├── province_ab.lst │ │ ├── racecourse.lst │ │ ├── radio_stations_uk.lst │ │ ├── region.lst │ │ ├── region_cap.lst │ │ ├── region_uk.lst │ │ ├── rivers.lst │ │ ├── say.lst │ │ ├── skills.lst │ │ ├── sports.lst │ │ ├── spur.lst │ │ ├── spur_ident.lst │ │ ├── state_us.lst │ │ ├── stop.lst │ │ ├── street.lst │ │ ├── summary.lst │ │ ├── surname_prefix.lst │ │ ├── team.lst │ │ ├── time.lst │ │ ├── time_ampm.lst │ │ ├── time_key.lst │ │ ├── time_modifier.lst │ │ ├── time_unit.lst │ │ ├── timeofday.lst │ │ ├── times.lst │ │ ├── timespan.lst │ │ ├── timex_pre.lst │ │ ├── timezone.lst │ │ ├── title.lst │ │ ├── title_female.lst │ │ ├── title_lower.lst │ │ ├── title_lowercase.lst │ │ ├── title_male.lst │ │ ├── title_mil.lst │ │ ├── title_pol.lst │ │ ├── tvcompany.lst │ │ ├── university_uk.lst │ │ ├── url_key.lst │ │ ├── water.lst │ │ ├── work_experience.lst │ │ └── year.lst │ │ ├── heptag │ │ ├── lexicon │ │ ├── lexicon_all │ │ ├── lexicon_cap │ │ ├── lexicon_lower │ │ ├── old_lexicon │ │ ├── rules_cap │ │ └── ruleset │ │ ├── othomatcher │ │ ├── acelists.def │ │ ├── alias.lst │ │ ├── alias_ace.lst │ │ ├── cdg.lst │ │ ├── chinese_alias.lst │ │ ├── connnector.lst │ │ ├── def_art.lst │ │ ├── listsNM.def │ │ ├── nickname.txt │ │ ├── prepos.lst │ │ └── spur_match.lst │ │ ├── regex-splitter │ │ ├── external-split-patterns.txt │ │ ├── internal-split-patterns.txt │ │ └── non-split-patterns.txt │ │ ├── schema │ │ ├── ANNIE-Schemas.xml │ │ ├── AddressSchema.xml │ │ ├── DateSchema.xml │ │ ├── IdentifierSchema.xml │ │ ├── LocationSchema.xml │ │ ├── MoneySchema.xml │ │ ├── OrganizationSchema.xml │ │ ├── PercentSchema.xml │ │ ├── PersonSchema.xml │ │ ├── PhoneSchema.xml │ │ └── SentenceSchema.xml │ │ ├── sentenceSplitter │ │ ├── gazetteer │ │ │ ├── abbreviations.lst │ │ │ └── lists.def │ │ └── grammar │ │ │ ├── cleanup.jape │ │ │ ├── find-single-nl.jape │ │ │ ├── find.jape │ │ │ ├── main-single-nl.jape │ │ │ ├── main.jape │ │ │ ├── no-splits.jape │ │ │ ├── prepare.jape │ │ │ └── split.jape │ │ └── tokeniser │ │ ├── AlternateTokeniser.rules │ │ ├── DefaultTokeniser.rules │ │ └── postprocess.jape │ ├── Crowd_Sourcing │ ├── .classpath │ ├── .project │ ├── README │ ├── build.xml │ ├── creole.xml │ ├── doc │ │ └── javadoc │ │ │ ├── allclasses-frame.html │ │ │ ├── allclasses-noframe.html │ │ │ ├── constant-values.html │ │ │ ├── deprecated-list.html │ │ │ ├── gate │ │ │ └── crowdsource │ │ │ │ ├── CrowdFlowerConstants.html │ │ │ │ ├── classification │ │ │ │ ├── EntityClassificationJobBuilder.html │ │ │ │ ├── EntityClassificationResultsImporter.html │ │ │ │ ├── NewClassificationJobAction.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ └── package-tree.html │ │ │ │ ├── ne │ │ │ │ ├── EntityAnnotationJobBuilder.html │ │ │ │ ├── EntityAnnotationResultsImporter.html │ │ │ │ ├── NewAnnotationJobAction.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ └── package-tree.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ └── rest │ │ │ │ ├── CrowdFlowerClient.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ └── package-tree.html │ │ │ ├── help-doc.html │ │ │ ├── index-all.html │ │ │ ├── index.html │ │ │ ├── overview-frame.html │ │ │ ├── overview-summary.html │ │ │ ├── overview-tree.html │ │ │ ├── package-list │ │ │ ├── resources │ │ │ ├── background.gif │ │ │ ├── tab.gif │ │ │ ├── titlebar.gif │ │ │ └── titlebar_end.gif │ │ │ ├── serialized-form.html │ │ │ └── stylesheet.css │ ├── forms.jfpr │ ├── gate-crowd-sourcing.jar │ ├── lib │ │ ├── formsrt.jar │ │ └── gson-2.2.4.jar │ ├── resources │ │ ├── add-abstracts-from-dbpedia.xgapp │ │ ├── add-url-list-to-mentions.jape │ │ ├── add-url-list-to-sentences.jape │ │ └── lookupsToMention.groovy │ └── src │ │ └── gate │ │ └── crowdsource │ │ ├── CrowdFlowerConstants.java │ │ ├── classification │ │ ├── EntityClassificationJobBuilder.java │ │ ├── EntityClassificationResultsImporter.java │ │ ├── NewClassificationJobAction.java │ │ └── newClassificationJobForm.xml │ │ ├── ne │ │ ├── EntityAnnotationJobBuilder.java │ │ ├── EntityAnnotationResultsImporter.java │ │ ├── NewAnnotationJobAction.java │ │ └── newAnnotationJobForm.xml │ │ └── rest │ │ ├── CrowdFlowerClient.java │ │ ├── gate-crowdflower.css │ │ └── gate-crowdflower.js │ ├── DocumentNormalizer │ ├── .classpath │ ├── .project │ ├── build.xml │ ├── creole.xml │ ├── doc-normalizer.jar │ ├── doc │ │ ├── README.TXT │ │ └── javadoc │ │ │ ├── allclasses-frame.html │ │ │ ├── allclasses-noframe.html │ │ │ ├── constant-values.html │ │ │ ├── deprecated-list.html │ │ │ ├── gate │ │ │ └── creole │ │ │ │ ├── DocumentNormalizer.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ └── package-tree.html │ │ │ ├── help-doc.html │ │ │ ├── index-all.html │ │ │ ├── index.html │ │ │ ├── overview-tree.html │ │ │ ├── package-list │ │ │ ├── resources │ │ │ ├── background.gif │ │ │ ├── tab.gif │ │ │ ├── titlebar.gif │ │ │ └── titlebar_end.gif │ │ │ ├── serialized-form.html │ │ │ └── stylesheet.css │ ├── resources │ │ └── replacements.lst │ └── src │ │ └── gate │ │ └── creole │ │ └── DocumentNormalizer.java │ ├── Information_Retrieval │ ├── .classpath │ ├── .project │ ├── Information_Retrieval.jar │ ├── build.xml │ ├── creole.xml │ ├── doc │ │ └── javadoc │ │ │ ├── allclasses-frame.html │ │ │ ├── allclasses-noframe.html │ │ │ ├── constant-values.html │ │ │ ├── deprecated-list.html │ │ │ ├── gate │ │ │ ├── creole │ │ │ │ └── ir │ │ │ │ │ ├── CorpusIndexingSupport.html │ │ │ │ │ ├── SearchPR.html │ │ │ │ │ ├── TestIndex.html │ │ │ │ │ ├── lucene │ │ │ │ │ ├── LuceneIREngine.html │ │ │ │ │ ├── LuceneIndexManager.html │ │ │ │ │ ├── LuceneIndexStatistics.html │ │ │ │ │ ├── LuceneSearch.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ └── package-tree.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ └── package-tree.html │ │ │ └── gui │ │ │ │ ├── SearchPRViewer.FloatRenderer.html │ │ │ │ ├── SearchPRViewer.ResultsTableModel.html │ │ │ │ ├── SearchPRViewer.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ └── package-tree.html │ │ │ ├── help-doc.html │ │ │ ├── index-all.html │ │ │ ├── index.html │ │ │ ├── overview-frame.html │ │ │ ├── overview-summary.html │ │ │ ├── overview-tree.html │ │ │ ├── package-list │ │ │ ├── resources │ │ │ ├── background.gif │ │ │ ├── tab.gif │ │ │ ├── titlebar.gif │ │ │ └── titlebar_end.gif │ │ │ ├── serialized-form.html │ │ │ └── stylesheet.css │ ├── lib │ │ └── lucene-core-3.5.0.jar │ └── src │ │ └── gate │ │ ├── creole │ │ └── ir │ │ │ ├── CorpusIndexingSupport.java │ │ │ ├── SearchPR.java │ │ │ ├── TestIndex.java │ │ │ └── lucene │ │ │ ├── LuceneIREngine.java │ │ │ ├── LuceneIndexManager.java │ │ │ ├── LuceneIndexStatistics.java │ │ │ └── LuceneSearch.java │ │ └── gui │ │ └── SearchPRViewer.java │ └── Keyphrase_Extraction_Algorithm │ ├── .classpath │ ├── .project │ ├── ACKNOWLEDGMENTS │ ├── COPYING │ ├── README │ ├── build.xml │ ├── creole.xml │ ├── doc │ └── javadoc │ │ ├── allclasses-frame.html │ │ ├── allclasses-noframe.html │ │ ├── constant-values.html │ │ ├── deprecated-list.html │ │ ├── gate │ │ └── creole │ │ │ └── kea │ │ │ ├── CorpusImporter.ImportCorpusAction.html │ │ │ ├── CorpusImporter.SelectDirectoryAction.html │ │ │ ├── CorpusImporter.html │ │ │ ├── Kea.LoadModelAction.html │ │ │ ├── Kea.SaveModelAction.html │ │ │ ├── Kea.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ └── package-tree.html │ │ ├── help-doc.html │ │ ├── index-all.html │ │ ├── index.html │ │ ├── kea │ │ ├── Counter.html │ │ ├── GermanStemmer.html │ │ ├── IteratedLovinsStemmer.html │ │ ├── KEAFilter.html │ │ ├── KEAKeyphraseExtractor.html │ │ ├── KEAModelBuilder.html │ │ ├── KEAPhraseFilter.html │ │ ├── LovinsStemmer.html │ │ ├── NumbersFilter.html │ │ ├── Stemmer.html │ │ ├── Stopwords.html │ │ ├── StopwordsEnglish.html │ │ ├── StopwordsGerman.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ └── package-tree.html │ │ ├── overview-frame.html │ │ ├── overview-summary.html │ │ ├── overview-tree.html │ │ ├── package-list │ │ ├── resources │ │ ├── background.gif │ │ ├── tab.gif │ │ ├── titlebar.gif │ │ └── titlebar_end.gif │ │ ├── serialized-form.html │ │ └── stylesheet.css │ ├── kea.jar │ ├── lib │ └── weka-3.4.6.jar │ └── src │ ├── gate │ └── creole │ │ └── kea │ │ ├── CorpusImporter.java │ │ └── Kea.java │ └── kea │ ├── Counter.java │ ├── GermanStemmer.java │ ├── IteratedLovinsStemmer.java │ ├── KEAFilter.java │ ├── KEAKeyphraseExtractor.java │ ├── KEAModelBuilder.java │ ├── KEAPhraseFilter.java │ ├── LovinsStemmer.java │ ├── NumbersFilter.java │ ├── Stemmer.java │ ├── Stopwords.java │ ├── StopwordsEnglish.java │ └── StopwordsGerman.java ├── JAPEGrammars ├── AddressFinder.jape ├── EmailFinder.jape ├── NameFinder.jape ├── PhoneFinder.jape ├── ProfileSection.jape ├── SectionBodyFinder.jape ├── SectionBodyFinderPre.jape ├── SectionHeadingFinder.jape ├── TitleFinder.jape ├── URLFinder.jape ├── WorkExperienceFinder.jape └── main.jape ├── LICENSE ├── README.md └── ResumeTransducer ├── README ├── UnitTests └── AntonyDeepakThomas.pdf ├── bin └── ResumeTransducer.jar ├── build.properties ├── build.xml ├── classes └── code4goal │ └── antony │ └── resumeparser │ ├── Annie.class │ └── ResumeParserProgram.class ├── creole.xml ├── doc └── javadoc │ ├── allclasses-frame.html │ ├── allclasses-noframe.html │ ├── code4goal │ └── antony │ │ └── resumeparser │ │ ├── ResumeTransducer.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ └── package-tree.html │ ├── constant-values.html │ ├── deprecated-list.html │ ├── help-doc.html │ ├── index-all.html │ ├── index.html │ ├── overview-tree.html │ ├── package-list │ ├── script.js │ ├── serialized-form.html │ └── stylesheet.css ├── lib ├── json-simple-1.1.1.jar └── tika-app-1.7.jar └── src └── code4goal └── antony └── resumeparser ├── Annie.java └── ResumeParserProgram.java /ANNIEGazetterFiles/accomplishments.lst: -------------------------------------------------------------------------------- 1 | Conference Presentations 2 | CONFERENCE PRESENTATIONS 3 | Conventions 4 | CONVENTIONS 5 | Current Research Interests 6 | CURRENT RESEARCH INTERESTS 7 | Dissertation 8 | DISSERTATION 9 | Dissertations 10 | DISSERTATIONS 11 | Exhibits 12 | EXHIBITS 13 | Licenses 14 | LICENSES 15 | Papers 16 | PAPERS 17 | Presentations 18 | PRESENTATIONS 19 | Professional Publications 20 | PROFESSIONAL PUBLICATIONS 21 | Publications 22 | PUBLICATIONS 23 | Research 24 | RESEARCH 25 | Research Grants 26 | RESEARCH GRANTS 27 | Research Interests 28 | RESEARCH INTERESTS 29 | Research Projects 30 | RESEARCH PROJECTS 31 | Thesis / Theses 32 | THESIS / THESES 33 | -------------------------------------------------------------------------------- /ANNIEGazetterFiles/awards.lst: -------------------------------------------------------------------------------- 1 | Academic Honors 2 | ACADEMIC HONORS 3 | Accolades 4 | ACCOLADES 5 | Accomplishments 6 | ACCOMPLISHMENTS 7 | Achievements 8 | ACHIEVEMENTS 9 | Activities and Honors 10 | ACTIVITIES AND HONORS 11 | Awards 12 | AWARDS 13 | Distinctions 14 | DISTINCTIONS 15 | Endorsements 16 | ENDORSEMENTS 17 | Fellowship 18 | FELLOWSHIP 19 | Fellowships 20 | FELLOWSHIPS 21 | Honors 22 | HONORS 23 | Scholarship 24 | SCHOLARSHIP 25 | Scholarships 26 | SCHOLARSHIPS 27 | -------------------------------------------------------------------------------- /ANNIEGazetterFiles/credibility.lst: -------------------------------------------------------------------------------- 1 | Portfolio 2 | PORTFOLIO 3 | Recommendations 4 | RECOMMENDATIONS 5 | References 6 | REFERENCES 7 | Social Media Profiles 8 | SOCIAL MEDIA PROFILES 9 | Social Profiles 10 | SOCIAL PROFILES 11 | Testimonials 12 | TESTIMONIALS 13 | Web Portfolio 14 | WEB PORTFOLIO 15 | Websites 16 | WEBSITES 17 | -------------------------------------------------------------------------------- /ANNIEGazetterFiles/education_and_training.lst: -------------------------------------------------------------------------------- 1 | ACADEMIC BACKGROUND 2 | Academic Background 3 | ACADEMIC EXPERIENCE 4 | Academic Experience 5 | ACADEMIC TRAINING 6 | Academic Training 7 | APPRENTICESHIPS 8 | Apprenticeships 9 | CERTIFICATION 10 | Certification 11 | CERTIFICATIONS 12 | Certifications 13 | COLLEGE ACTIVITIES 14 | College Activities 15 | COURSE PROJECT EXPERIENCE 16 | Course Project Experience 17 | COURSES 18 | Courses 19 | EDUCATION 20 | Education 21 | EDUCATION AND TRAINING 22 | Education and Training 23 | EDUCATIONAL BACKGROUND 24 | Educational Background 25 | EDUCATIONAL QUALIFICATIONS 26 | Educational Qualifications 27 | EDUCATIONAL TRAINING 28 | Educational Training 29 | INTERNSHIP EXPERIENCE 30 | Internship Experience 31 | INTERNSHIPS 32 | Internships 33 | Patent 34 | PATENT 35 | Patents 36 | PATENTS 37 | Professional Training 38 | PROFESSIONAL TRAINING 39 | Programs 40 | PROGRAMS 41 | RELATED COURSE PROJECTS 42 | Related Course Projects 43 | RELATED COURSES 44 | Related Courses 45 | Special Training 46 | SPECIAL TRAINING 47 | Study 48 | STUDY 49 | Training 50 | TRAINING 51 | Workshop 52 | WORKSHOP 53 | Workshops 54 | WORKSHOPS 55 | -------------------------------------------------------------------------------- /ANNIEGazetterFiles/extracurricular.lst: -------------------------------------------------------------------------------- 1 | Activities 2 | ACTIVITIES 3 | Activities and Honors 4 | ACTIVITIES AND HONORS 5 | Affiliations 6 | AFFILIATIONS 7 | Associations 8 | ASSOCIATIONS 9 | Athletic Involvement 10 | ATHLETIC INVOLVEMENT 11 | Civic Activities 12 | CIVIC ACTIVITIES 13 | Community Involvement 14 | COMMUNITY INVOLVEMENT 15 | Extra-Curricular Activities 16 | EXTRA-CURRICULAR ACTIVITIES 17 | Honors 18 | HONORS 19 | Memberships 20 | MEMBERSHIPS 21 | Professional Activities 22 | PROFESSIONAL ACTIVITIES 23 | Professional Affiliations 24 | PROFESSIONAL AFFILIATIONS 25 | Professional Associations 26 | PROFESSIONAL ASSOCIATIONS 27 | Professional Memberships 28 | PROFESSIONAL MEMBERSHIPS 29 | Volunteer Experience 30 | VOLUNTEER EXPERIENCE 31 | Volunteer Work 32 | VOLUNTEER WORK 33 | -------------------------------------------------------------------------------- /ANNIEGazetterFiles/misc.lst: -------------------------------------------------------------------------------- 1 | HOBBIES 2 | Hobbies 3 | INTERESTS 4 | Interests 5 | MISCELLANEOUS 6 | Miscellaneous 7 | PERSONAL INTERESTS 8 | Personal Interests 9 | Personal Strength 10 | PERSONAL STRENGTH 11 | Personal Strengths 12 | PERSONAL STRENGTHs 13 | STRENGTH 14 | Strength 15 | STRENGTHS 16 | Strengths 17 | -------------------------------------------------------------------------------- /ANNIEGazetterFiles/skills.lst: -------------------------------------------------------------------------------- 1 | Abilities 2 | ABILITIES 3 | Areas of Experience 4 | AREAS OF EXPERIENCE 5 | Areas of Expertise 6 | AREAS OF EXPERTISE 7 | Areas of Knowledge 8 | AREAS OF KNOWLEDGE 9 | Career Related Skills 10 | CAREER RELATED SKILLS 11 | Computer Knowledge 12 | COMPUTER KNOWLEDGE 13 | Computer Skills 14 | COMPUTER SKILLS 15 | Credentials 16 | CREDENTIALS 17 | Expertise 18 | EXPERTISE 19 | Language Competencies and Skills 20 | LANGUAGE COMPETENCIES AND SKILLS 21 | Languages 22 | LANGUAGES 23 | Professional Skills 24 | PROFESSIONAL SKILLS 25 | Proficiencies 26 | PROFICIENCIES 27 | Programming Languages 28 | PROGRAMMING LANGUAGES 29 | Qualifications 30 | QUALIFICATIONS 31 | Skills 32 | SKILLS 33 | Specialized Skills 34 | SPECIALIZED SKILLS 35 | Technical Experience 36 | TECHNICAL EXPERIENCE 37 | Technical Skills 38 | TECHNICAL SKILLS 39 | Technologies 40 | TECHNOLOGIES 41 | -------------------------------------------------------------------------------- /ANNIEGazetterFiles/summary.lst: -------------------------------------------------------------------------------- 1 | CAREER GOAL 2 | Career Goal 3 | CAREER OBJECTIVE 4 | Career Objective 5 | CAREER SUMMARY 6 | Career Summary 7 | EMPLOYMENT OBJECTIVE 8 | Employment Objective 9 | HIGHLIGHTS 10 | Highlights 11 | JOB OBJECTIVE 12 | Job Objective 13 | OBJECTIVE 14 | Objective 15 | PROFESSIONAL OBJECTIVE 16 | Professional Objective 17 | Professional Profile 18 | PROFESSIONAL PROFILE 19 | Professional Summary 20 | PROFESSIONAL SUMMARY 21 | PROFILE 22 | Profile 23 | SUMMARY 24 | Summary 25 | SUMMARY OF QUALIFICATIONS 26 | Summary of Qualifications 27 | SUMMARY STATEMENT 28 | Summary Statement 29 | TECHNICAL SUMMARY 30 | Technical Summary 31 | -------------------------------------------------------------------------------- /ANNIEGazetterFiles/work_experience.lst: -------------------------------------------------------------------------------- 1 | ADDITIONAL EXPERIENCE 2 | Additional Experience 3 | ARMY EXPERIENCE 4 | Army Experience 5 | CAREER RELATED EXPERIENCE 6 | Career Related Experience 7 | EMPLOYMENT HISTORY 8 | Employment History 9 | EXPERIENCE 10 | Experience 11 | FREELANCE 12 | Freelance 13 | FREELANCE EXPERIENCE 14 | Freelance Experience 15 | MILITARY BACKGROUND 16 | Military Background 17 | MILITARY EXPERIENCE 18 | Military Experience 19 | PROFESSIONAL BACKGROUND 20 | Professional Background 21 | PROFESSIONAL EXPERIENCE 22 | Professional Experience 23 | Project 24 | PROJECT 25 | Projects 26 | PROJECTS 27 | Related Experience 28 | RELATED EXPERIENCE 29 | WORK EXPERIENCE 30 | Work Experience 31 | Work History 32 | WORK HISTORY 33 | -------------------------------------------------------------------------------- /GATEFiles/bin/GATEXML-content.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | # keep only the document content part 4 | # remove XML tags 5 | # remove empty lines 6 | # remove spaces starting a line 7 | # remove spaces ending a line 8 | 9 | cat "$1" | 10 | tr '\n\r' ' ' | 11 | sed -r \ 12 | -e 's/^.*//g' \ 13 | -e 's/<\/TextWithNodes>.*$//g' | 14 | sed -r \ 15 | -e 's/<[^>]+>//g' \ 16 | -e '/^\s*$/d' \ 17 | -e 's/^\s+//g'\ 18 | -e 's/\s+$//g' 19 | -------------------------------------------------------------------------------- /GATEFiles/bin/GATEXML-statistics.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | if [ "$1" = "" -o "$2" = "" -o "$1" = "--help" -o "$2" = "--help" ]; then 4 | cat << eof 5 | 6 | Extract statistics from a Gate XML document file. 7 | 8 | Usage: $0 gate_document.xml annotation_set_name [feature_name] 9 | 10 | To run on a directory use: 11 | for f in \`ls directory\`; do 12 | sh $0 directory/\$f annotation_set_name; 13 | done > results.txt 14 | 15 | eof 16 | exit 17 | fi 18 | 19 | file=`basename $1` 20 | 21 | # keep only the document content part 22 | # remove XML tags 23 | # remove empty lines 24 | # remove spaces starting a line 25 | # remove spaces ending a line 26 | # calculate number of lines, words and characters 27 | # format the result 28 | 29 | cat "$1" | 30 | tr '\n\r' ' ' | 31 | sed -r \ 32 | -e 's/^.*//g' \ 33 | -e 's/<\/TextWithNodes>.*$//g' | 34 | sed -r \ 35 | -e 's/<[^>]+>//g' \ 36 | -e '/^\s*$/d' \ 37 | -e 's/^\s+//g'\ 38 | -e 's/\s+$//g' | 39 | wc --lines --words --chars | 40 | sed -r -e 's/^\s*([0-9]+)\s+([0-9]+)\s+([0-9]+)$/'$file' _Lines_ \1\n'$file' _Words_ \2\n'$file' _Characters_ \3/' 41 | 42 | echo $file _AnnotationSet_ $2 43 | 44 | # keep only the annotation set given in second parameter 45 | # put one annotation type per line 46 | # optionnaly get the name of the feature given in third parameter 47 | # remove all other XML tag 48 | # sort lines 49 | # count each annotation type [and feature] 50 | # format the result 51 | cat "$1" | 52 | tr '\n\r' ' ' | 53 | sed -r \ 54 | -e 's/^.*//g' \ 55 | -e 's/<\/AnnotationSet>.*$//g' \ 56 | -e 's/]+Type="([^"]+)" [^>]+>/\n\1/g' | 57 | sed -r \ 58 | -e 's/\s+.+]+>('$3')<\/Name>\s+]+>([^<]+).+$/ \1=\2/g' \ 59 | -e 's/\s+.+$//g' \ 60 | -e 's/\s+<\/Annotation>\s+//g' \ 61 | -e 's/^<\?xml .+$/This annotation set do not exist !!!/g' \ 62 | -e '/^\s*$/d' | 63 | sort --field-separator=' ' --key=1,1 --key=2,2 | 64 | uniq --count | 65 | sort --reverse --numeric-sort | 66 | sed -r -e 's/^\s*([0-9]+)\s+(.+)$/'$file' \2 \1/g' 67 | -------------------------------------------------------------------------------- /GATEFiles/bin/gate.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | %~dp0..\gate.exe 3 | -------------------------------------------------------------------------------- /GATEFiles/bin/gate.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/bin/gate.jar -------------------------------------------------------------------------------- /GATEFiles/bin/gateLauncher.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/bin/gateLauncher.jar -------------------------------------------------------------------------------- /GATEFiles/bin/search-code.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | #=============================================================================== 3 | # 4 | # FILE: search-code.sh 5 | # 6 | # USAGE: search-code.sh pattern 7 | # 8 | # DESCRIPTION: Do a grep on all the java and groovy files 9 | #=============================================================================== 10 | 11 | grep $* `find . -type f | egrep -v '\.svn|\.swp$|CVS' \ 12 | |egrep 'groovy$|java$|gsp$|jjt$|sh$|xml$'` 13 | 14 | exit 15 | 16 | 17 | SUFFIXES="java groovy sh xml jjt" 18 | 19 | CODEDIRS=`for s in ${SUFFIXES} 20 | do 21 | find . -name '*.'${s}'' |sed 's,[A-Za-z0-9_-]*\.'${s}',,g' 22 | done |sort|uniq` 23 | 24 | echo $CODEDIRS 25 | 26 | -------------------------------------------------------------------------------- /GATEFiles/bin/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/bin/splash.png -------------------------------------------------------------------------------- /GATEFiles/gate.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /GATEFiles/lib/ant-1.9.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/ant-1.9.3.jar -------------------------------------------------------------------------------- /GATEFiles/lib/ant-launcher-1.9.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/ant-launcher-1.9.3.jar -------------------------------------------------------------------------------- /GATEFiles/lib/aopalliance-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/aopalliance-1.0.jar -------------------------------------------------------------------------------- /GATEFiles/lib/apache-mime4j-core-0.7.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/apache-mime4j-core-0.7.2.jar -------------------------------------------------------------------------------- /GATEFiles/lib/apache-mime4j-dom-0.7.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/apache-mime4j-dom-0.7.2.jar -------------------------------------------------------------------------------- /GATEFiles/lib/bcmail-jdk15-1.45.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/bcmail-jdk15-1.45.jar -------------------------------------------------------------------------------- /GATEFiles/lib/bcprov-jdk15-1.45.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/bcprov-jdk15-1.45.jar -------------------------------------------------------------------------------- /GATEFiles/lib/commons-codec-1.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/commons-codec-1.5.jar -------------------------------------------------------------------------------- /GATEFiles/lib/commons-compress-1.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/commons-compress-1.5.jar -------------------------------------------------------------------------------- /GATEFiles/lib/commons-io-2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/commons-io-2.4.jar -------------------------------------------------------------------------------- /GATEFiles/lib/commons-lang-2.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/commons-lang-2.6.jar -------------------------------------------------------------------------------- /GATEFiles/lib/commons-logging-1.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/commons-logging-1.1.3.jar -------------------------------------------------------------------------------- /GATEFiles/lib/dom4j-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/dom4j-1.6.1.jar -------------------------------------------------------------------------------- /GATEFiles/lib/flying-saucer-core-9.0.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/flying-saucer-core-9.0.4.jar -------------------------------------------------------------------------------- /GATEFiles/lib/fontbox-1.8.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/fontbox-1.8.4.jar -------------------------------------------------------------------------------- /GATEFiles/lib/gate-asm-3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/gate-asm-3.1.jar -------------------------------------------------------------------------------- /GATEFiles/lib/gate-compiler-jdt-4.3.2-P20140317-1600.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/gate-compiler-jdt-4.3.2-P20140317-1600.jar -------------------------------------------------------------------------------- /GATEFiles/lib/hamcrest-core-1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/hamcrest-core-1.3.jar -------------------------------------------------------------------------------- /GATEFiles/lib/ivy-2.3.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/ivy-2.3.0.jar -------------------------------------------------------------------------------- /GATEFiles/lib/jackson-annotations-2.3.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/jackson-annotations-2.3.0.jar -------------------------------------------------------------------------------- /GATEFiles/lib/jackson-core-2.3.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/jackson-core-2.3.2.jar -------------------------------------------------------------------------------- /GATEFiles/lib/jackson-databind-2.3.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/jackson-databind-2.3.2.jar -------------------------------------------------------------------------------- /GATEFiles/lib/java-getopt-1.0.13.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/java-getopt-1.0.13.jar -------------------------------------------------------------------------------- /GATEFiles/lib/jaxen-1.1.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/jaxen-1.1.6.jar -------------------------------------------------------------------------------- /GATEFiles/lib/jdom-1.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/jdom-1.1.3.jar -------------------------------------------------------------------------------- /GATEFiles/lib/jempbox-1.8.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/jempbox-1.8.4.jar -------------------------------------------------------------------------------- /GATEFiles/lib/junit-4.11.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/junit-4.11.jar -------------------------------------------------------------------------------- /GATEFiles/lib/log4j-1.2.17.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/log4j-1.2.17.jar -------------------------------------------------------------------------------- /GATEFiles/lib/metadata-extractor-2.6.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/metadata-extractor-2.6.2.jar -------------------------------------------------------------------------------- /GATEFiles/lib/nekohtml-1.9.14.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/nekohtml-1.9.14.jar -------------------------------------------------------------------------------- /GATEFiles/lib/pdfbox-1.8.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/pdfbox-1.8.4.jar -------------------------------------------------------------------------------- /GATEFiles/lib/poi-3.10-beta2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/poi-3.10-beta2.jar -------------------------------------------------------------------------------- /GATEFiles/lib/poi-ooxml-3.10-beta2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/poi-ooxml-3.10-beta2.jar -------------------------------------------------------------------------------- /GATEFiles/lib/poi-ooxml-schemas-3.10-beta2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/poi-ooxml-schemas-3.10-beta2.jar -------------------------------------------------------------------------------- /GATEFiles/lib/poi-scratchpad-3.10-beta2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/poi-scratchpad-3.10-beta2.jar -------------------------------------------------------------------------------- /GATEFiles/lib/spring-aop-2.5.6.SEC01.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/spring-aop-2.5.6.SEC01.jar -------------------------------------------------------------------------------- /GATEFiles/lib/spring-beans-2.5.6.SEC01.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/spring-beans-2.5.6.SEC01.jar -------------------------------------------------------------------------------- /GATEFiles/lib/spring-core-2.5.6.SEC01.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/spring-core-2.5.6.SEC01.jar -------------------------------------------------------------------------------- /GATEFiles/lib/stax2-api-3.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/stax2-api-3.1.1.jar -------------------------------------------------------------------------------- /GATEFiles/lib/tika-core-1.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/tika-core-1.5.jar -------------------------------------------------------------------------------- /GATEFiles/lib/tika-parsers-1.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/tika-parsers-1.5.jar -------------------------------------------------------------------------------- /GATEFiles/lib/woodstox-core-lgpl-4.2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/woodstox-core-lgpl-4.2.0.jar -------------------------------------------------------------------------------- /GATEFiles/lib/xercesImpl-2.9.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/xercesImpl-2.9.1.jar -------------------------------------------------------------------------------- /GATEFiles/lib/xmlbeans-2.3.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/xmlbeans-2.3.0.jar -------------------------------------------------------------------------------- /GATEFiles/lib/xmlunit-1.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/xmlunit-1.5.jar -------------------------------------------------------------------------------- /GATEFiles/lib/xpp3-1.1.4c.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/xpp3-1.1.4c.jar -------------------------------------------------------------------------------- /GATEFiles/lib/xstream-1.4.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/lib/xstream-1.4.7.jar -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/.annie-defaults-metadata/ann-job-annie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/plugins/ANNIE/.annie-defaults-metadata/ann-job-annie.png -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/.annie-defaults-metadata/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/plugins/ANNIE/.annie-defaults-metadata/icon.png -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/.annie-defaults-metadata/long-desc.html: -------------------------------------------------------------------------------- 1 |

ANNIE is 2 | a named entity recognition pipeline that identifies basic entity types, such 3 | as Person, Location, Organization, Money 4 | amounts, Time and Date expressions.

5 | 6 |

It is the prototypical information extraction pipeline distributed 7 | with the GATE framework and forms the base of 8 | many more complex GATE-based IE applications.

9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 |
Default annotations
:PersonStandard named entity types
:Location
:Organization
:Date
:AddressIncludes email and IP addresses as well as street addresses
Additional annotations available if selected
:MoneyMonetary amounts
:PercentExpressions representing percentages
:TokenThe individual tokens of the text, with "category" feature for POS
:SpaceTokenThe spaces between tokens
:SentenceSentences detected by the sentence splitter
55 | 56 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/.annie-defaults-metadata/metadata.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ANNIE Named Entity Recognizer 4 | annie-named-entity-recognizer 5 | 10 6 | :Address, :Date, :Location, :Organization, :Person 7 | :Money, :Percent, :Token, :SpaceToken, :Sentence 8 | 9 | English 10 | Named Entity 11 | 12 | 13 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/.annie-defaults-metadata/short-desc.html: -------------------------------------------------------------------------------- 1 | The ANNIE named entity recognition service. Identifies names of 2 | persons, locations, organizations, as well as 3 | money amounts, time and date expressions. -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/NE/clean.jape: -------------------------------------------------------------------------------- 1 | /* 2 | * clean.jape 3 | * 4 | * Copyright (c) 1998-2004, The University of Sheffield. 5 | * 6 | * This file is part of GATE (see http://gate.ac.uk/), and is free 7 | * software, licenced under the GNU Library General Public License, 8 | * Version 2, June 1991 (in the distribution as file licence.html, 9 | * and also available at http://gate.ac.uk/gate/licence.html). 10 | * 11 | * Diana Maynard, 10 Sep 2001 12 | * 13 | * $Id: clean.jape 17683 2014-03-17 16:13:33Z dgmaynard $ 14 | */ 15 | 16 | Phase: Clean 17 | Input: TempPerson TempLocation TempOrganization TempDate TempTime TempYear TempZone Street Postcode Email Url Phone Ip TempIdentifier TempSpecs ClosedClass Initials Upper FirstPerson JobTitle HashtagToken HashtagLookup Temp Title UrlPre 18 | Options: control = all 19 | 20 | Rule:CleanTempAnnotations 21 | ( 22 | {TempPerson}| 23 | {TempLocation}| 24 | {TempOrganization}| 25 | {TempDate}| 26 | {TempTime}| 27 | {TempYear}| 28 | {TempZone}| 29 | {Street}| 30 | {Postcode}| 31 | {Email}| 32 | {Url}| 33 | {Phone}| 34 | {Ip}| 35 | {TempIdentifier}| 36 | {TempSpecs}| 37 | {ClosedClass}| 38 | {Upper}| 39 | {Initials}| 40 | {FirstPerson}| 41 | {JobTitle}| 42 | {HashtagToken}| 43 | {HashtagLookup}| 44 | {Title}| 45 | {UrlPre}| 46 | {Temp} 47 | ):temp 48 | --> 49 | { 50 | gate.AnnotationSet temp = (gate.AnnotationSet)bindings.get("temp"); 51 | outputAS.removeAll(temp); 52 | } 53 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/NE/document_date.jape: -------------------------------------------------------------------------------- 1 | Phase: DateHeader 2 | Input: DCT 3 | Options: control = appelt 4 | 5 | Rule: DCT 6 | ( 7 | {DCT} 8 | ):tag 9 | --> 10 | { 11 | gate.AnnotationSet tagSet = (gate.AnnotationSet)bindings.get("tag"); 12 | gate.Annotation tagAnn = (gate.Annotation)tagSet.iterator().next(); 13 | 14 | gate.FeatureMap features = Factory.newFeatureMap(); 15 | 16 | 17 | String s = gate.Utils.stringFor(doc, tagAnn); 18 | //String content = doc.getContent().getContent(tagAnn.getStartNode().getOffset(), 19 | // tagAnn.getEndNode().getOffset()).toString(); 20 | 21 | if (s.matches("^\\d{8}$") ) { 22 | String s1 = s.substring(0,4) + "-" + s.substring(4,6) + "-" + s.substring(6,8); 23 | 24 | doc.getFeatures().put("document-date", s1); 25 | } 26 | 27 | } 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/NE/email.jape: -------------------------------------------------------------------------------- 1 | /* 2 | * email.jape 3 | * 4 | * Copyright (c) 1998-2004, The University of Sheffield. 5 | * 6 | * This file is part of GATE (see http://gate.ac.uk/), and is free 7 | * software, licenced under the GNU Library General Public License, 8 | * Version 2, June 1991 (in the distribution as file licence.html, 9 | * and also available at http://gate.ac.uk/gate/licence.html). 10 | * 11 | * Diana Maynard, 19 April 2002 12 | * 13 | * $Id: email.jape 17311 2014-02-14 18:49:50Z dgmaynard $ 14 | */ 15 | 16 | Phase: Email 17 | Input: Token Lookup SpaceToken 18 | Options: control = appelt 19 | 20 | 21 | // Email rules 22 | 23 | Rule:Emailaddress1 24 | Priority: 50 25 | ( 26 | ( 27 | {Token.kind == word}| 28 | {Token.kind == number} 29 | )[1,9] 30 | ( 31 | {Token.string == "_"} 32 | )? 33 | ({Token.string == "."})? 34 | ({Token.kind == word}| 35 | {Token.kind == number}| 36 | {Token.string == "_"} 37 | )[0,9] 38 | 39 | {Token.string == "@"} 40 | ( 41 | {Token.kind == word}| 42 | {Token.kind == symbol}| 43 | {Token.kind == punctuation}| 44 | {Token.kind == number} 45 | ) 46 | ({Token.string == "."})? 47 | ( 48 | {Token.kind == word}| 49 | {Token.kind == symbol}| 50 | {Token.kind == punctuation}| 51 | {Token.kind == number} 52 | )[0,9] 53 | ({Token.string == "."})? 54 | ( 55 | {Token.kind == word}| 56 | {Token.kind == symbol}| 57 | {Token.kind == punctuation}| 58 | {Token.kind == number} 59 | )? 60 | ({Token.string == "."})? 61 | ( 62 | {Token.string == "."} 63 | ( 64 | {Token.kind == word}| 65 | {Token.kind == number} 66 | ) 67 | ({Token.string == "."})? 68 | ( 69 | {Token.kind == word}| 70 | {Token.kind == number} 71 | )? 72 | ({Token.string == "."})? 73 | ( 74 | {Token.kind == word}| 75 | {Token.kind == number} 76 | )? 77 | ) 78 | ) 79 | :emailAddress --> 80 | :emailAddress.Email= {kind = "emailAddress", rule = "Emailaddress1"} 81 | 82 | 83 | 84 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/NE/gender.jape: -------------------------------------------------------------------------------- 1 | //gender.jape 2 | //this is a sample jape grammar to be used with the 3 | //Onto Gazetteer demo. 4 | //borilsav popov 5 | //ontotext 6 | //01 may 2002 7 | // intended use: determine the gender given the CLASS annotation over a person name. 8 | 9 | Phase: Gender 10 | Input: Token Lookup 11 | Options: control = brill 12 | 13 | Rule: isFemale 14 | 15 | ( 16 | { 17 | Lookup.class == female_person_first_name, 18 | Lookup.ontology == "gate:/creole/ontology/demo.daml" 19 | } 20 | ):person 21 | --> 22 | { 23 | gate.AnnotationSet person = (gate.AnnotationSet)bindings.get("person"); 24 | gate.Annotation personAnn = (gate.Annotation)person.iterator().next(); 25 | gate.FeatureMap features = Factory.newFeatureMap(); 26 | features.put("gender", "female"); 27 | features.put("rule", "isFemale"); 28 | outputAS.add(person.firstNode(), person.lastNode(), "isFemale", 29 | features); 30 | } 31 | 32 | 33 | Rule: isMale 34 | 35 | ( 36 | { 37 | Lookup.class == male_person_first_name, 38 | Lookup.ontology == "gate:/creole/ontology/demo.daml" 39 | } 40 | ):person 41 | --> 42 | { 43 | gate.AnnotationSet person = (gate.AnnotationSet)bindings.get("person"); 44 | gate.Annotation personAnn = (gate.Annotation)person.iterator().next(); 45 | gate.FeatureMap features = Factory.newFeatureMap(); 46 | features.put("gender", "male"); 47 | features.put("rule", "isMale"); 48 | outputAS.add(person.firstNode(), person.lastNode(), "isMale", 49 | features); 50 | } 51 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/NE/jobtitle.jape: -------------------------------------------------------------------------------- 1 | /* 2 | * jobtitle.jape 3 | * 4 | * Copyright (c) 1998-2004, The University of Sheffield. 5 | * 6 | * This file is part of GATE (see http://gate.ac.uk/), and is free 7 | * software, licenced under the GNU Library General Public License, 8 | * Version 2, June 1991 (in the distribution as file licence.html, 9 | * and also available at http://gate.ac.uk/gate/licence.html). 10 | * 11 | * Diana Maynard, 10 Sep 2001 12 | * 13 | * $Id: jobtitle.jape 5921 2004-07-21 17:00:37Z akshay $ 14 | */ 15 | 16 | 17 | Phase: Jobtitle 18 | Input: Lookup Token 19 | Options: control = appelt 20 | 21 | Rule: Jobtitle1 22 | ( 23 | {Lookup.majorType == jobtitle} 24 | ( 25 | {Lookup.majorType == jobtitle} 26 | )? 27 | ) 28 | :jobtitle 29 | --> 30 | :jobtitle.JobTitle = {rule = "JobTitle1"} 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/NE/main-twitter.jape: -------------------------------------------------------------------------------- 1 | /* 2 | * main.jape 3 | * 4 | * Copyright (c) 1998-2004, The University of Sheffield. 5 | * 6 | * This file is part of GATE (see http://gate.ac.uk/), and is free 7 | * software, licenced under the GNU Library General Public License, 8 | * Version 2, June 1991 (in the distribution as file licence.html, 9 | * and also available at http://gate.ac.uk/gate/licence.html). 10 | * 11 | * Diana Maynard, 02 Aug 2001 12 | * 13 | * $Id: main.jape 9233 2007-11-23 13:01:52Z dgmaynard $ 14 | */ 15 | 16 | MultiPhase: TestTheGrammars 17 | Phases: 18 | first 19 | firstname 20 | name-twitter 21 | name_post 22 | date_pre 23 | date 24 | reldate 25 | number 26 | address 27 | url_pre 28 | url 29 | email 30 | identifier 31 | jobtitle 32 | final 33 | unknown 34 | name_context 35 | org_context 36 | loc_context 37 | clean 38 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/NE/main.jape: -------------------------------------------------------------------------------- 1 | /* 2 | * main.jape 3 | * 4 | * Copyright (c) 1998-2004, The University of Sheffield. 5 | * 6 | * This file is part of GATE (see http://gate.ac.uk/), and is free 7 | * software, licenced under the GNU Library General Public License, 8 | * Version 2, June 1991 (in the distribution as file licence.html, 9 | * and also available at http://gate.ac.uk/gate/licence.html). 10 | * 11 | * Diana Maynard, 02 Aug 2001 12 | * 13 | * $Id: main.jape 17798 2014-04-10 12:55:36Z markagreenwood $ 14 | */ 15 | 16 | MultiPhase: TestTheGrammars 17 | Phases: 18 | numberletter 19 | first 20 | firstname 21 | name 22 | name_post 23 | date_pre 24 | date 25 | reldate 26 | number 27 | address 28 | url_pre 29 | url 30 | email 31 | identifier 32 | jobtitle 33 | final 34 | unknown 35 | name_context 36 | org_context 37 | loc_context 38 | clean 39 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/NE/numberletter.jape: -------------------------------------------------------------------------------- 1 | 2 | Phase: NumberLetter 3 | Input: Token SpaceToken 4 | Options: control = appelt 5 | 6 | 7 | 8 | 9 | Rule: NumberLetter 10 | // A word that's adjoining a number with no spaces between should not be considerd as part of any entity 11 | 12 | ( 13 | {Token.kind == number} 14 | ) 15 | ( {Token.kind == word} 16 | ):tag 17 | --> 18 | :tag.NumberLetter = {rule = "NumberLetter"} 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/NE/unknown.jape: -------------------------------------------------------------------------------- 1 | /* 2 | * unknown.jape 3 | * 4 | * Copyright (c) 1998-2004, The University of Sheffield. 5 | * 6 | * This file is part of GATE (see http://gate.ac.uk/), and is free 7 | * software, licenced under the GNU Library General Public License, 8 | * Version 2, June 1991 (in the distribution as file licence.html, 9 | * and also available at http://gate.ac.uk/gate/licence.html). 10 | * 11 | * Diana Maynard, 10 Sep 2001 12 | * 13 | * $Id: unknown.jape 17326 2014-02-17 16:38:01Z dgmaynard $ 14 | */ 15 | 16 | Phase: Unknown 17 | Input: Location Person Date Organization Address Money Percent Token JobTitle Lookup 18 | Options: control = appelt 19 | 20 | 21 | Rule: Known 22 | Priority: 100 23 | ( 24 | {Location}| 25 | {Person}| 26 | {Date}| 27 | {Organization}| 28 | {Address}| 29 | {Money} | 30 | {Percent}| 31 | {Token.string == "Dear"}| 32 | {JobTitle}| 33 | {Lookup} 34 | ):known 35 | --> 36 | {} 37 | 38 | 39 | Rule:Unknown 40 | Priority: 50 41 | ( 42 | {Token.category == NNP, Token.length != "1"} 43 | ) 44 | :unknown 45 | --> 46 | :unknown.Unknown = {kind = "PN", rule = Unknown} 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/NE/url.jape: -------------------------------------------------------------------------------- 1 | /* 2 | * url.jape 3 | * 4 | * Copyright (c) 1998-2004, The University of Sheffield. 5 | * 6 | * This file is part of GATE (see http://gate.ac.uk/), and is free 7 | * software, licenced under the GNU Library General Public License, 8 | * Version 2, June 1991 (in the distribution as file licence.html, 9 | * and also available at http://gate.ac.uk/gate/licence.html). 10 | * 11 | * Diana Maynard, 02 Aug 2001 12 | * 13 | * $Id: url.jape 17364 2014-02-20 12:14:31Z dgmaynard $ 14 | */ 15 | 16 | Phase: Url 17 | Input: Lookup SpaceToken Token UrlPre 18 | Options: control = appelt 19 | 20 | 21 | 22 | // Url Rules 23 | 24 | // http://www.amazon.com 25 | // ftp://amazon.com 26 | // www.amazon.com 27 | 28 | 29 | 30 | Rule: Url1 31 | Priority: 50 32 | 33 | ( 34 | {UrlPre} 35 | ({Token})* 36 | ):urlAddress 37 | ({SpaceToken}) 38 | --> 39 | :urlAddress.Url = {kind = "urlAddress", rule = "Url1"} 40 | 41 | Rule: UrlContext 42 | Priority: 20 43 | 44 | ( 45 | {Token.string == "at"} 46 | {Token.string == ":"} 47 | ) 48 | ( 49 | ({Token.orth == lowercase} | 50 | {Token.orth == upperInitial} | 51 | {Token.kind == number} | 52 | {Token.kind == punctuation} | 53 | {Token.kind == symbol} | 54 | {Token.string == "."})+ 55 | 56 | {Token.string == "."} 57 | 58 | ({Token.orth == lowercase} | 59 | {Token.orth == upperInitial} | 60 | {Token.kind == number} | 61 | {Token.kind == punctuation} | 62 | {Token.kind == symbol} | 63 | {Token.string == "/"} | 64 | {Token.string == "."})* 65 | ) 66 | :urlAddress 67 | --> 68 | :urlAddress.Url = {kind = "urlAddress", rule = "UrlContext"} 69 | 70 | Rule: UrlGuess 71 | Priority: 10 72 | // token(s) + url_ending e.g. gate.ac.uk 73 | 74 | ( 75 | ( {Token} 76 | {Token.string == "."})+ 77 | {Lookup.majorType == url_key} 78 | {Token.string == "."} 79 | {Lookup.majorType == country_code} 80 | ) 81 | :urlAddress 82 | --> 83 | :urlAddress.Url = {kind = "urlAddress", rule = "UrlGuess"} 84 | 85 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/NE/url_pre.jape: -------------------------------------------------------------------------------- 1 | /* 2 | * url_pre.jape 3 | * 4 | * Copyright (c) 1998-2004, The University of Sheffield. 5 | * 6 | * This file is part of GATE (see http://gate.ac.uk/), and is free 7 | * software, licenced under the GNU Library General Public License, 8 | * Version 2, June 1991 (in the distribution as file licence.html, 9 | * and also available at http://gate.ac.uk/gate/licence.html). 10 | * 11 | * Diana Maynard, 19 April 2001 12 | * 13 | * $Id: url_pre.jape 5921 2004-07-21 17:00:37Z akshay $ 14 | */ 15 | 16 | Phase: UrlPre 17 | Input: Token SpaceToken 18 | Options: control = appelt 19 | 20 | Rule: Urlpre 21 | 22 | ( (({Token.string == "http"} | 23 | {Token.string == "https"} | 24 | {Token.string == "ftp"}) 25 | {Token.string == ":"} 26 | {Token.string == "/"} 27 | {Token.string == "/"} 28 | ) | 29 | ({Token.string == "www"} 30 | {Token.string == "."} 31 | ) 32 | ):urlpre 33 | --> 34 | :urlpre.UrlPre = {rule = "UrlPre"} 35 | 36 | 37 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/abbreviations.lst: -------------------------------------------------------------------------------- 1 | MOT 2 | M.O.T. 3 | M O T 4 | M. O. T. 5 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/accomplishments.lst: -------------------------------------------------------------------------------- 1 | Conference Presentations 2 | CONFERENCE PRESENTATIONS 3 | Conventions 4 | CONVENTIONS 5 | Current Research Interests 6 | CURRENT RESEARCH INTERESTS 7 | Dissertation 8 | DISSERTATION 9 | Dissertations 10 | DISSERTATIONS 11 | Exhibits 12 | EXHIBITS 13 | Licenses 14 | LICENSES 15 | Papers 16 | PAPERS 17 | Presentations 18 | PRESENTATIONS 19 | Professional Publications 20 | PROFESSIONAL PUBLICATIONS 21 | Publications 22 | PUBLICATIONS 23 | Research 24 | RESEARCH 25 | Research Grants 26 | RESEARCH GRANTS 27 | Research Interests 28 | RESEARCH INTERESTS 29 | Research Projects 30 | RESEARCH PROJECTS 31 | Thesis / Theses 32 | THESIS / THESES 33 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/adbc.lst: -------------------------------------------------------------------------------- 1 | ad 2 | bc 3 | a.d. 4 | b.c. 5 | AD 6 | BC 7 | A.D. 8 | B.C. 9 | A D 10 | B C 11 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/agency.lst: -------------------------------------------------------------------------------- 1 | International Atomic Energy Agency 2 | IAEA 3 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/airport.lst: -------------------------------------------------------------------------------- 1 | Charles de Gaulle 2 | Heathrow 3 | London Heathrow 4 | Schipol 5 | JFK 6 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/airports.lst: -------------------------------------------------------------------------------- 1 | Heathrow 2 | Washington Dulles 3 | Paris Charles de Gaulle 4 | Luton 5 | Stansted 6 | Ministro Pistarini 7 | JFK 8 | Schipol 9 | London Heathrow 10 | Gatwick 11 | London Gatwick 12 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/awards.lst: -------------------------------------------------------------------------------- 1 | Academic Honors 2 | ACADEMIC HONORS 3 | Accolades 4 | ACCOLADES 5 | Accomplishments 6 | ACCOMPLISHMENTS 7 | Achievements 8 | ACHIEVEMENTS 9 | Activities and Honors 10 | ACTIVITIES AND HONORS 11 | Awards 12 | AWARDS 13 | Distinctions 14 | DISTINCTIONS 15 | Endorsements 16 | ENDORSEMENTS 17 | Fellowship 18 | FELLOWSHIP 19 | Fellowships 20 | FELLOWSHIPS 21 | Honors 22 | HONORS 23 | Scholarship 24 | SCHOLARSHIP 25 | Scholarships 26 | SCHOLARSHIPS 27 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/cabinet_ministers.lst: -------------------------------------------------------------------------------- 1 | David Cameron:gender=male 2 | Nick Clegg:gender=male 3 | William Hague:gender=male 4 | George Osborne:gender=male 5 | Kenneth Clarke:gender=male 6 | Theresa May:gender=female 7 | Liam Fox:gender=male 8 | Vincent Cable:gender=male 9 | Iain Duncan Smith:gender=male 10 | Chris Hulme:gender=male 11 | Andrew Lansley:gender=male 12 | Michael Gove:gender=male 13 | Eric Pickles:gender=male 14 | Philip Hammond:gender=male 15 | Caroline Spelman:gender=female 16 | Andrew Mitchell:gender=male 17 | Jeremy Hunt:gender=male 18 | Owen Paterson:gender=male 19 | Michael Moore:gender=male 20 | Cheryl Gillan:gender=female 21 | Danny Alexander:gender=male 22 | Baroness Warsi:gender=female 23 | Lord Strathclyde:gender=male 24 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/cdg.lst: -------------------------------------------------------------------------------- 1 | A.B. 2 | A.G. 3 | A/L 4 | A/S 5 | AB 6 | AENP 7 | AG 8 | AG & COKG 9 | AG & Co KG 10 | AG & COKG 11 | AG & Co KG 12 | AMBA 13 | ASSOCIATES 14 | AY 15 | Ab 16 | Ag 17 | Associates 18 | Ay 19 | B.V. 20 | BHD 21 | BROS 22 | BROTHERS 23 | BV 24 | Bhd 25 | Bros 26 | Brothers 27 | Bv 28 | C.V. 29 | C.de R.L. 30 | C.por A. 31 | CDERL 32 | CO 33 | COOP 34 | COOPERATIVE 35 | CORP 36 | CORPORATION 37 | COS 38 | CPORA 39 | CV 40 | Co 41 | Co-op 42 | Co-operative 43 | Compagnie 44 | Company 45 | Coop 46 | Cooperative 47 | Corp 48 | Corp. 49 | Corporation 50 | Cos 51 | Cos. 52 | EGMBH 53 | G.M.B.H. 54 | G.S.C. 55 | G.m.b.H. 56 | G.m.b.H.& CO, KG 57 | G.m.b.H.& CO, KG 58 | GMBH 59 | GMBH & COKG 60 | GMBH & COKG 61 | GSC 62 | GmbH 63 | Gmbh 64 | HMIG 65 | HVER 66 | INC 67 | INCORPORATED 68 | INDUSTRIES 69 | Inc 70 | Incorporated 71 | Industries 72 | Kk 73 | L.L.C. 74 | L.P. 75 | LDA 76 | LIMITADA 77 | LIMITED 78 | LLC 79 | LP 80 | LTD 81 | Limitada 82 | Limited 83 | Lp 84 | Ltd 85 | M.B.H. 86 | MBH 87 | MBH & COKG 88 | MBH & COKG 89 | MIJ 90 | Mfg 91 | N.A. 92 | N.V. 93 | NA 94 | NV 95 | Na 96 | Nv 97 | OY 98 | OYAB 99 | Oy 100 | PERJAN 101 | PERSERO 102 | PERUM 103 | PLC 104 | PN 105 | PP 106 | PT 107 | PTE LTD 108 | PTY 109 | PTY LTD 110 | Plc 111 | Pte ltd 112 | Pty 113 | Pty ltd 114 | S.A. 115 | S.A.C. 116 | S.A.L. 117 | S.A.R.L. 118 | S.P.A. 119 | S.p.A. 120 | SA 121 | SAC 122 | SAL 123 | SARL 124 | SPA 125 | SV 126 | Sa 127 | Societe 128 | Société 129 | Sons 130 | Sons Co 131 | Spa 132 | TECHNOLOGIES 133 | Technologies 134 | corp 135 | eGmbh 136 | gGmbH 137 | m.b.H. 138 | m.b.H.& CO, KG 139 | m.b.H.& CO, KG 140 | mbH 141 | mbh 142 | plc 143 | & Co 144 | & Co. 145 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/charities.lst: -------------------------------------------------------------------------------- 1 | ACET 2 | Acet 3 | AIDS Care Education and Training 4 | AIDS Care Education & Training 5 | BDA 6 | Body Positive 7 | Children In Need 8 | Children in Need 9 | CAH 10 | Christian Aids Help 11 | JDF 12 | JDF International 13 | Heartwatch 14 | IP-UK 15 | Insulin Pumpers UK 16 | Insulin Pumpers 17 | Diabetes UK 18 | PALS 19 | P.A.L.S. 20 | Portsmouth AIDS Link Support 21 | Q.U.I.T. 22 | QUIT 23 | RNIB 24 | RNCB 25 | Salvation Army 26 | Scottish Aids Monitor 27 | the Link Project 28 | TEAR Fund 29 | YMCA 30 | YWCA 31 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/colours.lst: -------------------------------------------------------------------------------- 1 | aqua 2 | beige 3 | black 4 | blue 5 | brown 6 | crimson 7 | cyan 8 | gray 9 | green 10 | grey 11 | indigo 12 | khaki 13 | maroon 14 | pink 15 | purple 16 | red 17 | white 18 | yellow -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/companies_uk.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/plugins/ANNIE/resources/gazetteer/companies_uk.lst -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/country_abbrev.lst: -------------------------------------------------------------------------------- 1 | AUS 2 | HK 3 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/credibility.lst: -------------------------------------------------------------------------------- 1 | Portfolio 2 | PORTFOLIO 3 | Recommendations 4 | RECOMMENDATIONS 5 | References 6 | REFERENCES 7 | Social Media Profiles 8 | SOCIAL MEDIA PROFILES 9 | Social Profiles 10 | SOCIAL PROFILES 11 | Testimonials 12 | TESTIMONIALS 13 | Web Portfolio 14 | WEB PORTFOLIO 15 | Websites 16 | WEBSITES 17 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/currency_prefix.lst: -------------------------------------------------------------------------------- 1 | US 2 | NZ 3 | NT 4 | AUS 5 | U.S. 6 | U.S. 7 | N.Z. 8 | N.Z. 9 | nz 10 | aus 11 | FF 12 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/date.lst: -------------------------------------------------------------------------------- 1 | hier 2 | 3 | hiver 4 | 5 | demain 6 | 7 | aujourd'hui 8 | 9 | été 10 | 11 | printemps 12 | 13 | automne 14 | 15 | Hier 16 | 17 | Hiver 18 | 19 | Demain 20 | 21 | Aujourd'hui 22 | 23 | Été 24 | 25 | Eté 26 | 27 | Printemps 28 | 29 | Automne 30 | 31 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/date_key.lst: -------------------------------------------------------------------------------- 1 | today 2 | yesterday 3 | tomorrow 4 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/date_other.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/plugins/ANNIE/resources/gazetteer/date_other.lst -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/date_post.lst: -------------------------------------------------------------------------------- 1 | yrs 2 | 3 | yr 4 | 5 | years 6 | 7 | year 8 | 9 | wks 10 | 11 | wk 12 | 13 | weeks 14 | 15 | weekends 16 | 17 | weekend 18 | 19 | week 20 | 21 | solstice 22 | 23 | season 24 | 25 | months 26 | 27 | month 28 | 29 | mnths 30 | 31 | mnth 32 | 33 | milleniums 34 | 35 | millenium 36 | 37 | millenia 38 | 39 | half-milleniums 40 | 41 | half-millenium 42 | 43 | half-millenia 44 | 45 | half-decades 46 | 47 | half-decade 48 | 49 | half-century 50 | 51 | half-centuries 52 | 53 | half milleniums 54 | 55 | half millenium 56 | 57 | half millenia 58 | 59 | half decades 60 | 61 | half decade 62 | 63 | half century 64 | 65 | half centuries 66 | 67 | half - milleniums 68 | 69 | half - millenium 70 | 71 | half - millenia 72 | 73 | half - decades 74 | 75 | half - decade 76 | 77 | half - century 78 | 79 | half - centuries 80 | 81 | festival 82 | 83 | feast 84 | 85 | eve 86 | 87 | equinox 88 | 89 | decades 90 | 91 | decade 92 | 93 | day 94 | 95 | century 96 | 97 | centuries 98 | 99 | birthday 100 | 101 | Solstice 102 | 103 | Nameday 104 | 105 | Name Day 106 | 107 | Festival 108 | 109 | Feast 110 | 111 | Eve 112 | 113 | Equinox 114 | 115 | Day 116 | 117 | Birthday 118 | 119 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/date_pre.lst: -------------------------------------------------------------------------------- 1 | past 2 | mid- 3 | mid - 4 | end of 5 | almost 6 | all of 7 | Past 8 | Almost 9 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/date_unit.lst: -------------------------------------------------------------------------------- 1 | day 2 | days 3 | week 4 | weeks 5 | fortnight 6 | fortnights 7 | month 8 | months 9 | quarter 10 | quarters 11 | fiscal quarter 12 | fiscal quarters 13 | half 14 | first-half 15 | fiscal half 16 | year 17 | years 18 | financial year 19 | financial years 20 | fiscal year 21 | tax year 22 | decade 23 | decades 24 | century 25 | centuries 26 | half-year 27 | half year 28 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/datespan.lst: -------------------------------------------------------------------------------- 1 | wks 2 | weeks 3 | months 4 | milleniums 5 | millenia 6 | decades 7 | days 8 | centuries 9 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/day.lst: -------------------------------------------------------------------------------- 1 | Wednesday 2 | Wed. 3 | Wed 4 | Tuesday 5 | Tues. 6 | Tues 7 | Tue. 8 | Tue 9 | Thursday 10 | Thurs. 11 | Thurs 12 | Thur. 13 | Thur 14 | Thu. 15 | Thu 16 | Sunday 17 | Sun. 18 | Sun 19 | Saturday 20 | Sat. 21 | Sat 22 | Monday 23 | Mon. 24 | Mon 25 | Friday 26 | Fri. 27 | Fri 28 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/day_cap.lst: -------------------------------------------------------------------------------- 1 | FRI 2 | FRI. 3 | FRIDAY 4 | MON. 5 | MON 6 | MONDAY 7 | SAT. 8 | SAT 9 | SATURDAY 10 | SUN. 11 | SUN 12 | SUNDAY 13 | THU. 14 | THU 15 | THUR. 16 | THUR 17 | THURS. 18 | THURS 19 | THURSDAY 20 | TUE. 21 | TUE 22 | TUES. 23 | TUES 24 | TUESDAY 25 | WED. 26 | WED 27 | WEDNESDAY 28 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/department.lst: -------------------------------------------------------------------------------- 1 | Treasury Department 2 | Treasury 3 | Transportation Department 4 | TREASURY 5 | State Department 6 | Labor Department 7 | Justice Department 8 | Interior Department 9 | Highway Department 10 | Department of the Interior 11 | Department of Treasury 12 | Department of Transportation 13 | Department of Trade and Industry 14 | Department of Labor 15 | Department of Justice 16 | Department of Interior 17 | Department of Housing and Community Development 18 | Department of Health and Human Services 19 | Department of Commerce 20 | Department of Agriculture 21 | Commerce Department 22 | Agriculture Department 23 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/determiner.lst: -------------------------------------------------------------------------------- 1 | A 2 | a 3 | The 4 | the 5 | One 6 | one -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/education_and_training.lst: -------------------------------------------------------------------------------- 1 | ACADEMIC BACKGROUND 2 | Academic Background 3 | ACADEMIC EXPERIENCE 4 | Academic Experience 5 | ACADEMIC TRAINING 6 | Academic Training 7 | APPRENTICESHIPS 8 | Apprenticeships 9 | CERTIFICATION 10 | Certification 11 | CERTIFICATIONS 12 | Certifications 13 | COLLEGE ACTIVITIES 14 | College Activities 15 | COURSE PROJECT EXPERIENCE 16 | Course Project Experience 17 | COURSES 18 | Courses 19 | EDUCATION 20 | Education 21 | EDUCATION AND TRAINING 22 | Education and Training 23 | EDUCATIONAL BACKGROUND 24 | Educational Background 25 | EDUCATIONAL QUALIFICATIONS 26 | Educational Qualifications 27 | EDUCATIONAL TRAINING 28 | Educational Training 29 | INTERNSHIP EXPERIENCE 30 | Internship Experience 31 | INTERNSHIPS 32 | Internships 33 | Patent 34 | PATENT 35 | Patents 36 | PATENTS 37 | Professional Training 38 | PROFESSIONAL TRAINING 39 | Programs 40 | PROGRAMS 41 | RELATED COURSE PROJECTS 42 | Related Course Projects 43 | RELATED COURSES 44 | Related Courses 45 | Special Training 46 | SPECIAL TRAINING 47 | Study 48 | STUDY 49 | Training 50 | TRAINING 51 | Workshop 52 | WORKSHOP 53 | Workshops 54 | WORKSHOPS 55 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/extracurricular.lst: -------------------------------------------------------------------------------- 1 | Activities 2 | ACTIVITIES 3 | Activities and Honors 4 | ACTIVITIES AND HONORS 5 | Affiliations 6 | AFFILIATIONS 7 | Associations 8 | ASSOCIATIONS 9 | Athletic Involvement 10 | ATHLETIC INVOLVEMENT 11 | Civic Activities 12 | CIVIC ACTIVITIES 13 | Community Involvement 14 | COMMUNITY INVOLVEMENT 15 | Extra-Curricular Activities 16 | EXTRA-CURRICULAR ACTIVITIES 17 | Honors 18 | HONORS 19 | Memberships 20 | MEMBERSHIPS 21 | Professional Activities 22 | PROFESSIONAL ACTIVITIES 23 | Professional Affiliations 24 | PROFESSIONAL AFFILIATIONS 25 | Professional Associations 26 | PROFESSIONAL ASSOCIATIONS 27 | Professional Memberships 28 | PROFESSIONAL MEMBERSHIPS 29 | Volunteer Experience 30 | VOLUNTEER EXPERIENCE 31 | Volunteer Work 32 | VOLUNTEER WORK 33 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/facility.lst: -------------------------------------------------------------------------------- 1 | Angkor Wat 2 | Broadway 3 | Watergate 4 | White House 5 | Notre Dame 6 | Kremlin 7 | Pentagon 8 | Auschwitz 9 | Radwaniyah 10 | McDonalds 11 | McDonald's 12 | New York Stock Exchange 13 | Mir 14 | Storgata 15 | Madison Square Garden 16 | Salman Pak 17 | Maple Leaf Gardens 18 | Saint-Germain-des-Pres Church 19 | Highgrove 20 | The Osborn 21 | East 21st Street 22 | 30th Precinct 23 | Cafe Centro 24 | Tropica 25 | Assembly Drive 26 | British Museum 27 | Cleveland Row 28 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/facility_key.lst: -------------------------------------------------------------------------------- 1 | GARDENS 2 | Airbase 3 | Airport 4 | Avenue 5 | Barracks 6 | Base 7 | Building 8 | Cafe 9 | Camp 10 | Castle 11 | Center 12 | Centre 13 | Cinema 14 | Coliseum 15 | Common 16 | Forum 17 | Gardens 18 | GHQ 19 | General Head Quarters 20 | General Headquarters 21 | HQ 22 | Hall 23 | Head Quarters 24 | Headquarters 25 | Hotel 26 | House 27 | International Airport 28 | international airport 29 | Jail 30 | jail 31 | Museum 32 | Office 33 | Palace 34 | Park 35 | Pavilion 36 | Plant 37 | Playhouse 38 | playhouse 39 | Prison Camp 40 | Pub 41 | Ranch 42 | Refuge 43 | Refugee Camp 44 | Resort 45 | Restaurant 46 | School 47 | Ski Resort 48 | Square 49 | Station 50 | Stadium 51 | Street 52 | Theatre 53 | Theater 54 | Tower 55 | Trail 56 | trail 57 | Wall 58 | Zoo 59 | Federal Building 60 | federal building 61 | prison camp 62 | refugee camp 63 | school 64 | Hilton 65 | cemetery 66 | Studios 67 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/facility_key_ext.lst: -------------------------------------------------------------------------------- 1 | airport 2 | garden 3 | park 4 | ranch 5 | tower 6 | air base 7 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/foreign_ministers.lst: -------------------------------------------------------------------------------- 1 | Angela Merkel:gender=female 2 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/govern_key.lst: -------------------------------------------------------------------------------- 1 | legislature 2 | embassy 3 | corps 4 | consulate 5 | circuit 6 | academy 7 | Project 8 | Operations 9 | National 10 | Legislature 11 | Fleet 12 | Federal 13 | Embassy 14 | Chamber 15 | Court of Appeals 16 | Court 17 | Corps 18 | Consulate 19 | Command 20 | Circuit Court 21 | Circuit 22 | Academy 23 | 24 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government/cabinet-ministers.lst: -------------------------------------------------------------------------------- 1 | David Cameron 2 | Nick Clegg 3 | William Hague 4 | George Osborne 5 | Kenneth Clarke 6 | Theresa May 7 | Liam Fox 8 | Vincent Cable 9 | Iain Duncan Smith 10 | Chris Hulme 11 | Andrew Lansley 12 | Michael Gove 13 | Eric Pickles 14 | Philip Hammond 15 | Caroline Spelman 16 | Andrew Mitchell 17 | Jeremy Hunt 18 | Owen Paterson 19 | Michael Moore 20 | Cheryl Gillan 21 | Danny Alexander 22 | Baroness Warsi 23 | Lord Strathclyde 24 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government/constituencies-n.ireland.lst: -------------------------------------------------------------------------------- 1 | Belfast East 2 | Belfast North 3 | Belfast South 4 | Belfast West 5 | East Antrim 6 | East Londonderry 7 | Fermanagh and South Tyrone 8 | Foyle 9 | Lagan Valley 10 | Mid Ulster 11 | Newry and Armagh 12 | North Antrim 13 | North Down 14 | South Antrim 15 | South Down 16 | Strangford 17 | Upper Bann 18 | West Tyrone 19 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government/constituencies-scotland.lst: -------------------------------------------------------------------------------- 1 | Aberdeen North 2 | Aberdeen South 3 | Airdrie and Shotts 4 | Angus 5 | Argyll and Bute 6 | Ayr, Carrick and Cumnock 7 | Banff and Buchan 8 | Berwickshire, Roxburgh and Selkirk 9 | Caithness, Sutherland and Easter Ross 10 | Central Ayrshire 11 | Coatbridge, Chryston and Bellshill 12 | Cumbernauld, Kilsyth and Kirkintilloch East 13 | Dumfries and Galloway 14 | Dumfriesshire, Clydesdale and Tweeddale 15 | Dundee East 16 | Dundee West 17 | Dunfermline and West Fife 18 | East Dunbartonshire 19 | East Kilbride, Strathaven and Lesmahagow 20 | East Lothian 21 | East Renfrewshire 22 | Edinburgh East 23 | Edinburgh North and Leith 24 | Edinburgh South 25 | Edinburgh South West 26 | Edinburgh West 27 | Falkirk 28 | Glasgow Central 29 | Glasgow East 30 | Glasgow North 31 | Glasgow North East 32 | Glasgow North West 33 | Glasgow South 34 | Glasgow South West 35 | Glenrothes 36 | Gordon 37 | Inverclyde 38 | Inverness, Nairn, Badenoch and Strathspey 39 | Kilmarnock and Loudoun 40 | Kirkcaldy and Cowdenbeath 41 | Lanark and Hamilton East 42 | Linlithgow and East Falkirk 43 | Livingston 44 | Midlothian 45 | Moray 46 | Motherwell and Wishaw 47 | Na h-Eileanan an Iar 48 | North Ayrshire and Arran 49 | North East Fife 50 | Ochil and South Perthshire 51 | Orkney and Shetland 52 | Paisley and Renfrewshire North 53 | Paisley and Renfrewshire South 54 | Perth and North Perthshire 55 | Ross, Skye and Lochaber 56 | Rutherglen and Hamilton West 57 | Stirling 58 | West Aberdeenshire and Kincardine 59 | West Dunbartonshire 60 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government/constituencies-wales.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/plugins/ANNIE/resources/gazetteer/government/constituencies-wales.lst -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government/constituencies.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/plugins/ANNIE/resources/gazetteer/government/constituencies.lst -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government/document-pre.lst: -------------------------------------------------------------------------------- 1 | Proceeds of 2 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government/document_ending_other.lst: -------------------------------------------------------------------------------- 1 | Rules 2 | Direction 3 | Regulations 4 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government/executive-agencies-abbreviations.lst: -------------------------------------------------------------------------------- 1 | CEFAS 2 | CRB 3 | DSDA 4 | DSG 5 | DVLA 6 | FERA 7 | HMCS 8 | IPS 9 | MHRA 10 | TNA 11 | NOMS 12 | SPVA -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government/executive-agencies-old.lst: -------------------------------------------------------------------------------- 1 | Animal Health 2 | Asset Protection Agency 3 | British National Space Agency 4 | Buying Solutions 5 | Central Office Of Information 6 | Centre For Environment, Fisheries And Aquaculture Science|abbrev=CEFAS 7 | Companies House 8 | Criminal Records Bureau|abbrev=CRB 9 | Defence Science And Technology Laboratory 10 | Defence Storage And Distribution Agency|abbrev=DSDA 11 | Defence Support Group|abbrev=DSG 12 | Defence Vetting Agency 13 | Driver And Vehicle Licensing Agency|abbrev=DVLA 14 | Driving Standards Agency 15 | FCO Services 16 | The Food And Environment Research Agency|abbrev=FERA 17 | Fire Service College 18 | Forest Enterprise England 19 | Forest Research 20 | Government Car And Despatch Agency 21 | Highways Agency 22 | HM Courts Service|abbrev=HMCS 23 | HM Land Registry 24 | Identity And Passport Service|abbrev=IPS 25 | Insolvency Service 26 | Jobcentre Plus 27 | Maritime And Coastguard Agency 28 | Medicines And Healthcare Products And Regulatory Agency|abbrev=MHRA 29 | Met Office 30 | Ministry Of Defence Police And Guarding Agency 31 | The National Archives|abbrev=TNA 32 | National Fraud Authority 33 | National Offender Management Service|abbrev=NOMS 34 | National Measurement Office 35 | Office Of The Public Guardian 36 | Ordnance Survey 37 | Pension, Disability And Carers Service 38 | People, Pay And Pensions Agency 39 | Planning Inspectorate 40 | Queen Elizabeth Ii Conference Centre 41 | The Royal Parks 42 | Rural Payments Agency 43 | Service Children's Education 44 | Service Personnel And Veterans Agency|abbrev=SPVA 45 | Skills Funding Agency 46 | Treasury Solicitor's Department 47 | Tribunals Service 48 | UK Border Agency 49 | UK Debt Management Office 50 | UK Hydrographic Office 51 | UK Intellectual Property Office 52 | Valuation Office 53 | Vehicle And Operator Services Agency 54 | Vehicle Certification Agency 55 | Veterinary Laboratories Agency 56 | Veterinary Medicines Directorate 57 | Wilton Park 58 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government/govt-departments-ministerial-abbreviations.lst: -------------------------------------------------------------------------------- 1 | AGO 2 | BERR 3 | BIS 4 | CLG 5 | DCMS 6 | DfE 7 | DfEE 8 | DECC 9 | DEFRA 10 | Defra 11 | DFID 12 | DfT 13 | DIUS 14 | DWP 15 | DH 16 | DHSS 17 | DNH 18 | DSS 19 | DTI 20 | ECGD 21 | FCO 22 | GEO 23 | HMT 24 | HO 25 | LO 26 | LHOL 27 | LHLPC 28 | MAFF 29 | MoD 30 | MoJ 31 | MOT 32 | NIO 33 | PMO 34 | ODPM 35 | OLHC 36 | OLHL 37 | SO 38 | WO 39 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government/govt-departments-ministerial.lst: -------------------------------------------------------------------------------- 1 | Advocate General for Scotland 2 | Attorney General's Office 3 | Cabinet Office 4 | Department for Business, Enterprise and Regulatory Reform 5 | Department for Business, Innovation and Skills 6 | Department for Children, Schools and Family 7 | Department for Communities and Local Government 8 | Department for Constitutional Affairs 9 | Department for Culture, Media and Sport 10 | Department for Education 11 | Department for Education and Employment 12 | Department for Education and Skills 13 | Department for Energy and Climate Change 14 | Department for Environment, Food and Rural Affairs 15 | Department for Innovation, Universities and Skills 16 | Department for International Development 17 | Department for The Environment, Transport and The Regions 18 | Department for Transport 19 | Department for Work and Pensions 20 | Department of Health 21 | Department of Health and Social Security 22 | Department of National Heritage 23 | Department of Social Security 24 | Department of Trade and Industry 25 | Export Credits Guarantee Department 26 | Foreign and Commonwealth Office 27 | HM Treasury 28 | Home Office 29 | Law Officers 30 | Law Officers’ Departments 31 | Leader of The House of Lords and Minister for Women 32 | Lord Advocate’s Department 33 | Ministry of Agriculture, Fisheries and Food 34 | Ministry of Defence 35 | Ministry of Justice 36 | Ministry of Transport 37 | Office of The Deputy Prime Minister 38 | Office of The Leader of The House of Commons 39 | Office of The Leader of The House of Lords 40 | Office of The Leader of The House of Lords and Lord President of The Council 41 | Prime Minister's Office 42 | Scotland Office 43 | Solicitor General 44 | Wales Office 45 | Department of Energy and Climate Change 46 | Department for Children, Schools and Families 47 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government/govt-departments-non-ministerial-abbreviations.lst: -------------------------------------------------------------------------------- 1 | ARA 2 | BSC 3 | COI 4 | CCEW 5 | CRND 6 | CE 7 | CPS 8 | fFSA 9 | FORCOMM 10 | FSC 11 | GAD 12 | GEO 13 | HMCE 14 | HMRC 15 | IR 16 | LCD 17 | NDO 18 | NSG 19 | OFSTED 20 | Ofsted 21 | OFREG 22 | OFT 23 | OFGEM 24 | OFGAS 25 | HMCIP 26 | OPG 27 | OPRAF 28 | OFQUAL 29 | Ofqual 30 | ORR 31 | OFTEL 32 | OAGS 33 | OIRR 34 | OFLOT 35 | OFWAT 36 | POSTCOMM 37 | PCO 38 | PWLB 39 | RFS 40 | RCPO 41 | RM 42 | SFO 43 | SSRA 44 | TNA 45 | UKSA 46 | UKTI 47 | Ofgem 48 | Ofgas 49 | Oftel 50 | Ofwat 51 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government/govt-departments-non-ministerial-old.lst: -------------------------------------------------------------------------------- 1 | Central Office of Information|abbrev=COI 2 | Charity Commission for England and Wales 3 | Commissioners for the Reduction of the National Debt|abbrev=CRND 4 | Crown Estate|abbrev=CE 5 | Crown Prosecution Service|abbrev=CPS 6 | Export Credits Guarantee Department|abbrev=ECGD 7 | Food Standards Agency 8 | Forestry Commission 9 | Government Actuary's Department|abbrev=GAD 10 | HM Revenue and Customs|abbrev=HMRC 11 | National School of Government|abbrev=NSG 12 | Office for National Statistics 13 | Office for Standards in Education|abbrev=OFSTED 14 | Office of Fair Trading|abbrev=OFT 15 | Office of Gas and Electricity Markets 16 | Gas and Electricity Markets Authority|abbrev=OFGEM 17 | Office of Rail Regulation|abbrev=ORR 18 | Parliamentary Counsel Office|abbrev=PCO 19 | Postal Services Commission 20 | Postcomm 21 | Public Works Loan Board|abbrev=PWLB 22 | Serious Fraud Office|abbrev=SFO 23 | Treasury Solicitor's Department|abbrev=TSol 24 | UK Statistics Authority 25 | UK Trade & Investment|abbrev=UKTI 26 | National Savings And Investments|abbrev=NS&I 27 | Office Of Qualifications And Examinations Regulation|abbrev=OFQUAL 28 | Office Of Water Services|abbrev=OFWAT 29 | Royal Mint 30 | General Register Office for Scotland 31 | Ofcom 32 | BECTA 33 | British Educational Communications and Technology Agency 34 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government/govt-departments-non-ministerial.lst: -------------------------------------------------------------------------------- 1 | Assets Recovery Agency 2 | Building Societies Commission 3 | Central Office of Information 4 | Charity Commission 5 | Charity Commission for England and Wales 6 | Commissioners for the Reduction of The National Debt 7 | Crown Estate 8 | Crown Prosecution Service 9 | Food Standards Agency 10 | Forestry Commission 11 | Friendly Societies Commission 12 | Government Actuary’s Department 13 | Government Equalities Office 14 | HM Customs and Excise 15 | HM Revenue & Customs 16 | Inland Revenue 17 | Lord Chancellor's Department 18 | National Debt Office 19 | National School of Government 20 | Office for Standards In Education, Children’s Services and Schools 21 | Office for The Regulation of Electricity and Gas 22 | Office of Electricity Regulation 23 | Office of Fair Trading 24 | Office of Gas and Electricity Markets 25 | Office of Gas Supply 26 | Office of Her Majesty's Chief Inspector of Schools 27 | Office of HM Paymaster General 28 | Office of Passenger Rail Franchising 29 | Office of Qualifications and Examinations Regulation 30 | Office of Rail Regulation 31 | Office of Telecommunications 32 | Office of The Advocate General for Scotland 33 | Office of The International Rail Regulator 34 | Office of The National Lottery 35 | Office of Water Services 36 | Postal Services Commission 37 | Privy Council Office 38 | Public Works Loan Board 39 | Registry of Friendly Societies 40 | Revenue and Customs Prosecutions Office 41 | Royal Mint 42 | Serious Fraud Office 43 | Shadow Strategic Rail Authority 44 | The National Archives 45 | UK Statistics Authority 46 | UK Trade and Investment 47 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government/govt-responsibility-categories.lst: -------------------------------------------------------------------------------- 1 | Business, industry, economics and finance 2 | Culture and leisure 3 | Environment 4 | Government, politics and public administration 5 | Health, well-being and care 6 | International affairs and defence 7 | People, community and housing 8 | Public inquiries and Royal Commissions 9 | Public order, justice and rights 10 | Transport, communication and technology 11 | Work, education and skills 12 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government/laws.lst: -------------------------------------------------------------------------------- 1 | Law 2 | Constitution 3 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government/legislation-ending.lst: -------------------------------------------------------------------------------- 1 | Bill 2 | Act 3 | bill 4 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government/legislation-pre.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/plugins/ANNIE/resources/gazetteer/government/legislation-pre.lst -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government/list-case-sensitive.def: -------------------------------------------------------------------------------- 1 | govt-departments-ministerial-abbreviations.lst:department:ministerial 2 | govt-departments-non-ministerial-abbreviations.lst:department:non-ministerial 3 | executive-agencies-abbreviations.lst:agency:abbreviation 4 | legislation-ending.lst:document-ending:legislation 5 | report-ending.lst:document-ending:report 6 | project.lst:project 7 | project_keyword.lst:project_key 8 | document_ending_other.lst:document-ending:legislation-other 9 | document-pre.lst:document_pre 10 | title-airforce.lst:military:airforce 11 | title-navy.lst:military:navy 12 | title-army.lst:military:army 13 | title-medical.lst:medical 14 | titles-other.lst:other 15 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government/lists.def: -------------------------------------------------------------------------------- 1 | cabinet-positions.lst:position:cabinet 2 | govt-departments-ministerial.lst:department:ministerial 3 | govt-responsibility-categories.lst:government:responsibility 4 | ministers-attending-cabinet.lst:minister:attending-cabinet 5 | govt-departments-non-ministerial.lst:department:non-ministerial 6 | cabinet-ministers.lst:minister:cabinet 7 | executive-agencies.lst:agency 8 | constituencies-england.lst:constituency:england 9 | constituencies-n.ireland.lst:constituency:n-ireland 10 | constituencies-scotland.lst:constituency:scotland 11 | constituencies-wales.lst:constituency:wales 12 | military-operations.lst:operations:military 13 | wars.lst:war 14 | org-other.lst:organization:other 15 | org-military.lst:organization:military 16 | org-law.lst:organization:law 17 | org-political.lst:organization:other 18 | war_key.lst:war_key 19 | public-bodies-non-departmental.lst:organization:government 20 | non-cabinet-minister-posts.lst:position:non-cabinet 21 | military-operations-abbrev.lst:operations:military 22 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government/ministers-attending-cabinet.lst: -------------------------------------------------------------------------------- 1 | Francis Maude 2 | Oliver Letwin 3 | David Willetts 4 | George Young 5 | Patrick McLoughlin 6 | Dominic Grieve 7 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government/non-cabinet-minister-posts.lst: -------------------------------------------------------------------------------- 1 | Minister for the Natural and Marine Environment, Wildlife and Rural Affairs 2 | Third Sector Minister 3 | Minister for the Third Sector 4 | Minister for the Cabinet Office 5 | Minister of state, Cabinet Office 6 | Minister of state (universities and science) 7 | Parliamentary chief secretary to the Treasury and chief whip 8 | Minister of state 9 | Exchequer Secretary 10 | Minister of state (minister for security) 11 | Minister of state (minister for immigration) 12 | Minister of state (minister for police) 13 | Minister of state (minister for the armed forces) 14 | Minister for Immigration 15 | Minister for Police 16 | Minister for Security 17 | Minister for the Armed Forces 18 | Minister for Universities and Science 19 | Lords Chief Whip 20 | Minister for the Cabinet Office and Paymaster General 21 | Minister of State – Cabinet Office 22 | Parliamentary Secretary to the Treasury and Chief Whip 23 | Parliamentary Under Secretary of State 24 | Government Whip 25 | Deputy Chief Whip (Treasurer of HM Household) 26 | Deputy Chief Whip (Comptroller of HM Household) 27 | Government Whip (Vice Chamberlain of HM Household) 28 | Deputy Chief Whip (Captain of The Queen’s Bodyguard of the Yeomen of the Guard) 29 | Vice Chamberlain of HM Household 30 | Captain of the Honourable Corps of Gentlemen at Arms 31 | Captain of The Queen’s Bodyguard of the Yeomen of the Guard 32 | Prime Minister's Spokesman 33 | PMS 34 | Secretariat to the Criminal Procedure Rule Committee 35 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government/non-cabinet-ministers.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/plugins/ANNIE/resources/gazetteer/government/non-cabinet-ministers.lst -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government/org-law.lst: -------------------------------------------------------------------------------- 1 | Judicial Committee of the Privy Council 2 | JCPC 3 | Supreme Court of the United Kingdom 4 | Court of Appeal 5 | High Court of Justice 6 | High Court judge 7 | County Court 8 | Supreme Court 9 | County Court Bulk Centre 10 | Supreme Court of the United Kingdom 11 | Court of Appeal 12 | High Court of Justice 13 | Crown Court 14 | Magistrates' Court 15 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government/org-military.lst: -------------------------------------------------------------------------------- 1 | NATO 2 | North Atlantic Treaty Organization 3 | North Atlantic Treaty Organisation 4 | Royal Navy 5 | Royal Air Force 6 | RAF 7 | Army 8 | British Army 9 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government/org-other.lst: -------------------------------------------------------------------------------- 1 | Scottish Parliament 2 | Welsh Assembly Government 3 | European Union 4 | EU 5 | U.S. Government 6 | League of Nations 7 | Commonwealth of Nations 8 | United Nations 9 | UN 10 | OPEC 11 | BRIC 12 | African League of Nations 13 | House of Lords 14 | Court of Appeal 15 | Administrative Court 16 | Her Majesty's Courts Service 17 | Criminal Procedure Rule Committee 18 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government/org-political.lst: -------------------------------------------------------------------------------- 1 | British National Party 2 | BNP 3 | Christian Party "Proclaiming Christ's Lordship" 4 | Conservative Party 5 | Co-operative Party 6 | Green Party 7 | Labour Party 8 | Liberal Democrats 9 | New Party 10 | Plaid Cymru 11 | Scottish Green Party 12 | Scottish National Party 13 | SNP 14 | Socialist Labour Party 15 | SLP 16 | Socialist Party of GB 17 | UK Independence Party 18 | UKIP 19 | European Parliament 20 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government/project.lst: -------------------------------------------------------------------------------- 1 | Digital Britain 2 | Digital Economy Programme 3 | London 2012 4 | Behaviour Improvement Programme 5 | Improving Behaviour in Schools 6 | Get Connected 7 | New Deal 8 | New Deal for Communities 9 | SureStart 10 | Welfare to Work 11 | Enterprise Investment Scheme 12 | Children's Plan 13 | National Challenge 14 | Apollo 11 15 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government/project_keyword.lst: -------------------------------------------------------------------------------- 1 | Project 2 | Initiative 3 | Campaign 4 | Scheme 5 | Week 6 | Strategy 7 | Fund 8 | Programme 9 | programme 10 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government/report-ending.lst: -------------------------------------------------------------------------------- 1 | Report 2 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government/title-airforce.lst: -------------------------------------------------------------------------------- 1 | Leading Aircraftman 2 | Senior Aircraftman 3 | Senior Aircraftman (Technician) 4 | Junior Technician 5 | Corporal 6 | Sergeant 7 | Chief Technician 8 | Flight Sergeant 9 | Warrant Officer 10 | RAF Sergeant Aircrew 11 | RAF Flight Sergeant Aircrew 12 | RAF Flight Sergeant Aircrew 13 | RAF Master Aircrew 14 | Pilot Officer 15 | Flying Officer 16 | Flight Lieutenant 17 | Squadron Leader 18 | Wing Commander 19 | Group Captain 20 | Air Commodore 21 | Air Vice-Marshal 22 | Air Marshal 23 | Air Chief Marshal 24 | Marshal of the Royal Air Force 25 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government/title-army.lst: -------------------------------------------------------------------------------- 1 | Officer Cadet 2 | Second Lieutenant 3 | Major 4 | Lieutenant Colonel 5 | Lance Corporal 6 | Staff Sergeant 7 | WO2 Company/Squadron Sergeant Major 8 | WO1 Regimental Sergeant Major 9 | Warrant Officer 10 | Field Marshal 11 | Marshal 12 | General 13 | Brigadier 14 | Colonel 15 | Lt. Colonel 16 | Commandant 17 | Captain 18 | Lieutenant 19 | 2nd Lieutenant 20 | Sergeant Major 21 | Sergeant 22 | Corporal 23 | Private 24 | 25 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government/title-medical.lst: -------------------------------------------------------------------------------- 1 | GP 2 | General Practitioner 3 | Medical Doctor 4 | Nurse 5 | Surgeon 6 | Dentist 7 | Pathologist 8 | Chief Medical Officer 9 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government/title-navy.lst: -------------------------------------------------------------------------------- 1 | Admiral of the Fleet 2 | Admiral 3 | Vice-Admiral 4 | Rear Admiral 5 | Commodore 6 | Captain 7 | Commander 8 | Lieutenant-Commander 9 | Lieutenant 10 | Sub-Lieutenant 11 | Midshipman 12 | Royal Navy Ratings Badges Warrant Officer 1 13 | Warrant Officer 1 14 | Warrant Officer 2 15 | Chief Petty Officer 16 | Petty Officer 17 | Leading Rate 18 | 19 | First Sea Lord 20 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government/titles-other.lst: -------------------------------------------------------------------------------- 1 | His/Her Majesty 2 | His/Her Royal Highness 3 | His/Her Grace 4 | The Most Honourable 5 | The Right Honourable 6 | The Honourable 7 | The Much Honoured 8 | The Most Reverend 9 | The Right Reverend 10 | The Very Reverend 11 | The Reverend 12 | The Venerable 13 | HRH 14 | HG 15 | The Most Hon 16 | The Most Honble 17 | The Rt Hon 18 | The Rt Honble 19 | The Hon 20 | The Honble 21 | The Much Hon 22 | The Much Hon'd 23 | The Most Rev 24 | The Most Revd 25 | The Most Rev'd 26 | The Rt Rev 27 | The Rt Revd 28 | The Rt Rev'd 29 | The Very Rev 30 | The Very Revd 31 | The Very Rev'd 32 | The Rev 33 | Revd 34 | The Rev'd 35 | The Ven 36 | The Venble 37 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government/war_key.lst: -------------------------------------------------------------------------------- 1 | War 2 | Conflict 3 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government/wars.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/plugins/ANNIE/resources/gazetteer/government/wars.lst -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/government_base.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/plugins/ANNIE/resources/gazetteer/government_base.lst -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/greeting.lst: -------------------------------------------------------------------------------- 1 | Dear 2 | dear 3 | Dearest 4 | dearest 5 | Hello 6 | hello 7 | Hi 8 | hi 9 | Good morning 10 | good morning 11 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/hour.lst: -------------------------------------------------------------------------------- 1 | one 2 | two 3 | three 4 | four 5 | five 6 | six 7 | seven 8 | eight 9 | nine 10 | ten 11 | eleven 12 | twelve 13 | midnight 14 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/ident_prekey.lst: -------------------------------------------------------------------------------- 1 | id 2 | id 3 | i.d. 4 | ID 5 | I.D. 6 | ref 7 | Ref 8 | REF 9 | reference 10 | reference no 11 | reference no 12 | Reference No 13 | Reference no 14 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/loc_generalkey.lst: -------------------------------------------------------------------------------- 1 | village 2 | city 3 | town 4 | province 5 | state 6 | island 7 | township 8 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/loc_key.lst: -------------------------------------------------------------------------------- 1 | sea 2 | ocean 3 | Wall 4 | Village 5 | Valley 6 | Trail 7 | Straits 8 | Strait 9 | Station 10 | Stadium 11 | Square 12 | Springs 13 | Sea 14 | Sands 15 | River 16 | Republic 17 | Province 18 | Plains 19 | Parkway 20 | Park 21 | Ocean 22 | Mountains 23 | Mountain 24 | Lakes 25 | Islands 26 | Island 27 | Hills 28 | Hill 29 | Heights 30 | Headquarters 31 | Head Quarters 32 | Harbor 33 | HQ 34 | General Headquarters 35 | General Head Quarters 36 | GHQ 37 | Fjord 38 | Everglades 39 | Estates 40 | District 41 | Desert 42 | Delta 43 | Creek 44 | County 45 | City 46 | Channel 47 | Castle 48 | Canal 49 | Boulevard 50 | Blvd. 51 | Belt 52 | Beach 53 | Bay Area 54 | Bay 55 | Basin 56 | Base 57 | Barracks 58 | Airbase 59 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/loc_other.lst: -------------------------------------------------------------------------------- 1 | Khyber Pass 2 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/loc_prekey.lst: -------------------------------------------------------------------------------- 1 | Camp 2 | Cape 3 | Central 4 | East 5 | Eastern 6 | Fort 7 | Lake 8 | Mount 9 | North 10 | North-Eastern 11 | North-Western 12 | Northeast 13 | Northeastern 14 | Northern 15 | Northwest 16 | Northwestern 17 | Porto 18 | Puerto 19 | South 20 | South-Eastern 21 | South-Western 22 | Southeast 23 | Southeastern 24 | Southern 25 | Southwest 26 | Southwestern 27 | West 28 | Western 29 | Isle of 30 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/loc_prekey_lower.lst: -------------------------------------------------------------------------------- 1 | camp 2 | cape 3 | central 4 | east 5 | eastern 6 | fort 7 | lake 8 | mount 9 | north 10 | north-eastern 11 | north-western 12 | northeast 13 | northeastern 14 | northern 15 | northwest 16 | northwestern 17 | porto 18 | puerto 19 | south 20 | south-eastern 21 | south-western 22 | southeast 23 | southeastern 24 | southern 25 | southwest 26 | southwestern 27 | west 28 | western 29 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/loc_relig.lst: -------------------------------------------------------------------------------- 1 | Eden 2 | Garden of Eden 3 | Judea 4 | Calvary 5 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/mapping.def: -------------------------------------------------------------------------------- 1 | person_male.lst:http://gate.ac.uk/tests/demo.owl:Person 2 | person_male_cap.lst:http://gate.ac.uk/tests/demo.owl:Person 3 | person_male_lower.lst:http://gate.ac.uk/tests/demo.owl:Person 4 | person_female.lst:http://gate.ac.uk/tests/demo.owl:Person 5 | person_female_cap.lst:http://gate.ac.uk/tests/demo.owl:Person 6 | person_female_lower.lst:http://gate.ac.uk/tests/demo.owl:Person -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/ministry.lst: -------------------------------------------------------------------------------- 1 | Trade and Industry Ministry 2 | Ministry of Radio 3 | Ministry of Posts and Telecommunications 4 | Ministry of Posts and Telecommunication 5 | Ministry of Oil Refining and Petrochemical 6 | Ministry of Oil Industry 7 | Ministry of Oil 8 | Ministry of Mineral Fertilizers 9 | Ministry of International Trade and Industry 10 | Ministry of Geology 11 | Ministry of Foreign Economic Relations 12 | Ministry of Finance 13 | Ministry of Electronics Industry 14 | Ministry of Defense 15 | Foreign Ministry 16 | Finance Ministry 17 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/minutes.lst: -------------------------------------------------------------------------------- 1 | five 2 | ten 3 | fifteen 4 | twenty 5 | twenty five 6 | thirty 7 | thirty five 8 | forty 9 | forty five 10 | fifty 11 | fifty five -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/misc.lst: -------------------------------------------------------------------------------- 1 | HOBBIES 2 | Hobbies 3 | INTERESTS 4 | Interests 5 | MISCELLANEOUS 6 | Miscellaneous 7 | PERSONAL INTERESTS 8 | Personal Interests 9 | Personal Strength 10 | PERSONAL STRENGTH 11 | Personal Strengths 12 | PERSONAL STRENGTHs 13 | STRENGTH 14 | Strength 15 | STRENGTHS 16 | Strengths 17 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/months.lst: -------------------------------------------------------------------------------- 1 | APR 2 | APR. 3 | APRIL 4 | AUG 5 | AUG. 6 | AUGUST 7 | AUTUMN 8 | Apr 9 | Apr. 10 | April 11 | Aug 12 | Aug. 13 | August 14 | Autumn 15 | DEC 16 | DEC. 17 | DECEMBER 18 | Dec 19 | Dec. 20 | December 21 | FEB 22 | FEB. 23 | FEBRUARY 24 | Feb 25 | Feb. 26 | February 27 | JAN 28 | JAN. 29 | JANUARY 30 | JUL 31 | JUL. 32 | JULY 33 | JUN 34 | JUN. 35 | JUNE 36 | Jan 37 | Jan. 38 | January 39 | Jul 40 | Jul. 41 | July 42 | Jun 43 | Jun. 44 | June 45 | MAR 46 | MAR. 47 | MARCH 48 | MAY 49 | Mar 50 | Mar. 51 | March 52 | May 53 | NOV 54 | NOV. 55 | NOVEMBER 56 | Nov 57 | Nov. 58 | November 59 | OCT 60 | OCT. 61 | OCTOBER 62 | Oct 63 | Oct. 64 | October 65 | SEP 66 | SEP. 67 | SEPT 68 | SEPT. 69 | SEPTEMBER 70 | Sep 71 | Sep. 72 | Sept 73 | Sept. 74 | September 75 | Summer 76 | Winter 77 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/months_lower.lst: -------------------------------------------------------------------------------- 1 | apr 2 | apr. 3 | april 4 | aug 5 | aug. 6 | august 7 | autumn 8 | dec 9 | dec. 10 | december 11 | feb 12 | feb. 13 | february 14 | jan 15 | jan. 16 | january 17 | jul 18 | jul. 19 | july 20 | jun 21 | jun. 22 | june 23 | mar 24 | mar. 25 | march 26 | nov 27 | nov. 28 | november 29 | oct 30 | oct. 31 | october 32 | sep 33 | sep. 34 | sept 35 | sept. 36 | september 37 | summer 38 | winter 39 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/mountain.lst: -------------------------------------------------------------------------------- 1 | Alps 2 | Andes 3 | Himalayas 4 | Pyrenees 5 | Snowdonia 6 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/newspapers.lst: -------------------------------------------------------------------------------- 1 | Independent on Sunday 2 | Independent Digital 3 | Investor's Daily 4 | New York Daily News 5 | New York Post 6 | New York Times 7 | New York Times News Service 8 | New York Times Special Features 9 | New York Times Syndicate 10 | Newsweek 11 | Readers Digest 12 | The Boston Globe 13 | The Financial Times 14 | The Finanical Times Limited 15 | The Independent 16 | The Independent on Sunday 17 | The Phoenix Gazette 18 | Washington Post 19 | the Sun 20 | Wall Street Journal 21 | WSJ 22 | The Times 23 | Daily Mail 24 | The Mail on Sunday 25 | The Guardian 26 | Daily Telegraph 27 | FT 28 | De Standard 29 | Jerusalem Post 30 | the Times 31 | IHT 32 | WP 33 | Daily Star 34 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/non_company.lst: -------------------------------------------------------------------------------- 1 | United Nations 2 | UNESCO 3 | UK Atomic Energy Authority 4 | U.N. 5 | Organization of Petroleum Exporting Countries 6 | Organization for Economic Cooperation and Development 7 | OPEC 8 | North Atlantic Treaty Organization 9 | NATO 10 | Museum of Flight 11 | Japanese Space Agency 12 | Japan International Development Organization 13 | Japan Industrial Development Organization 14 | Italian Space Agency 15 | Hezbollah 16 | General Agreement on Tariffs and Trade 17 | European Union 18 | European Space Agency 19 | European Community 20 | Electronics Research and Service Organization 21 | Electronics Research & Service Organization 22 | Electronics Research & Service Organization 23 | ESA 24 | Association of South East Asian Nations 25 | Association of Flight Attendants 26 | 27 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/nonspec_date.lst: -------------------------------------------------------------------------------- 1 | year 2 | weekend 3 | week 4 | month 5 | hour 6 | decade 7 | day 8 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/not_org.lst: -------------------------------------------------------------------------------- 1 | British National 2 | British National Corpus -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/number_fold.lst: -------------------------------------------------------------------------------- 1 | two-fold 2 | three-fold 3 | four-fold 4 | five-fold 5 | six-fold 6 | seven-fold 7 | eight-fold 8 | nine-fold 9 | ten-fold 10 | twenty-fold 11 | thirty-fold 12 | forty-fold 13 | fifty-fold 14 | hundred-fold 15 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/numbers.lst: -------------------------------------------------------------------------------- 1 | zero 2 | one 3 | One 4 | two 5 | Two 6 | three 7 | Three 8 | four 9 | Four 10 | five 11 | Five 12 | six 13 | Six 14 | seven 15 | Seven 16 | eight 17 | Eight 18 | nine 19 | Nine 20 | ten 21 | Ten 22 | eleven 23 | Eleven 24 | twelve 25 | Twelve 26 | thirteen 27 | Thirteen 28 | fourteen 29 | Fourteen 30 | fifteen 31 | Fifteen 32 | sixteen 33 | Sixteen 34 | seventeen 35 | Seventeen 36 | eighteen 37 | Eighteen 38 | nineteen 39 | Nineteen 40 | twenty 41 | twenty-one 42 | twenty-two 43 | twenty-three 44 | twenty-four 45 | twenty-five 46 | twenty-six 47 | twenty-seven 48 | twenty-eight 49 | twenty-nine 50 | Twenty 51 | thirty 52 | thirty-one 53 | thirty-two 54 | thirty-three 55 | thirty-four 56 | thirty-five 57 | thirty-six 58 | thirty-seven 59 | thirty-eight 60 | thirty-nine 61 | Thirty 62 | forty 63 | forty-one 64 | forty-two 65 | forty-three 66 | forty-four 67 | forty-five 68 | forty-six 69 | forty-seven 70 | forty-eight 71 | forty-nine 72 | Forty 73 | fifty 74 | fifty-one 75 | fifty-two 76 | fifty-three 77 | fifty-four 78 | fifty-five 79 | fifty-six 80 | fifty-seven 81 | fifty-eight 82 | fifty-nine 83 | Fifty 84 | sixty 85 | sixty-one 86 | sixty-two 87 | sixty-three 88 | sixty-four 89 | sixty-five 90 | sixty-six 91 | sixty-seven 92 | sixty-eight 93 | sixty-nine 94 | Sixty 95 | seventy 96 | seventy-one 97 | seventy-two 98 | seventy-three 99 | seventy-four 100 | seventy-five 101 | seventy-six 102 | seventy-seven 103 | seventy-eight 104 | seventy-nine 105 | Seventy 106 | eighty 107 | eighty-one 108 | eighty-two 109 | eighty-three 110 | eighty-four 111 | eighty-five 112 | eighty-six 113 | eighty-seven 114 | eighty-eight 115 | eighty-nine 116 | Eighty 117 | ninety 118 | ninety-one 119 | ninety-two 120 | ninety-three 121 | ninety-four 122 | ninety-five 123 | ninety-six 124 | ninety-seven 125 | ninety-eight 126 | ninety-nine 127 | Ninety 128 | hundred 129 | thousand 130 | million 131 | billion 132 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/ordinal.lst: -------------------------------------------------------------------------------- 1 | zeroth 2 | first 3 | second 4 | third 5 | fourth 6 | fifth 7 | fift 8 | sixth 9 | seventh 10 | eighth 11 | ninth 12 | nineth 13 | tenth 14 | eleventh 15 | twelfth 16 | twelveth 17 | twelvth 18 | dozenth 19 | thirteenth 20 | fourteenth 21 | fifteenth 22 | sixteenth 23 | seventeenth 24 | eighteenth 25 | nineteenth 26 | ninteenth 27 | twentieth 28 | twenty-first 29 | twenty-second 30 | twenty-third 31 | twenty-fourth 32 | twenty-fifth 33 | twenty-sixth 34 | twenty-seventh 35 | twenty-eighth 36 | twenty-ninth 37 | twenty first 38 | twenty second 39 | twenty third 40 | twenty fourth 41 | twenty fifth 42 | twenty sixth 43 | twenty seventh 44 | twenty eighth 45 | twenty ninth 46 | thirtieth 47 | thirty-first 48 | thirty first 49 | fortieth 50 | fiftieth 51 | sixtieth 52 | seventieth 53 | eightieth 54 | ninetieth 55 | hundredth 56 | five-hundredth 57 | thousandth 58 | millionth 59 | billionth 60 | trillionth 61 | quadrillionth 62 | quintillionth 63 | sextillionth 64 | septillionth 65 | octillionth 66 | nonillionth 67 | decillionth 68 | undecillion 69 | duodecillionth 70 | duotrigintillionth 71 | vigintillionth 72 | googolth 73 | googolplexth 74 | gazillionth 75 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/org_ending.lst: -------------------------------------------------------------------------------- 1 | A. en P. 2 | AB 3 | A.C. 4 | ACE 5 | AD 6 | a.d. 7 | AE 8 | AFC 9 | A.F.C. 10 | AG 11 | A/L 12 | AmbA 13 | ANS 14 | Apb 15 | ApS 16 | ApS & Co. 17 | A/S 18 | A.S. 19 | ASA 20 | AVV 21 | Bpk 22 | Bt 23 | B.V. 24 | BVBA 25 | CA 26 | C.V. 27 | CVA 28 | CVoA 29 | DA 30 | d/b/a 31 | d.d 32 | d.n.o. 33 | d.o.o. 34 | EE 35 | EEG 36 | EIRL 37 | ELP 38 | EPE 39 | EURL 40 | e.V. 41 | FC 42 | F.C. 43 | GbR 44 | GCV 45 | GesmbH 46 | GIE 47 | GmbH & Co. KG 48 | GmbH 49 | HB 50 | hf 51 | IBC 52 | INC 53 | Inc 54 | I/S 55 | KA/S 56 | Kb 57 | KD 58 | k.d. 59 | KDA 60 | k.d.d. 61 | Kft 62 | KG 63 | KGaA 64 | KK 65 | Kkt 66 | Kol. SrK 67 | Kom. SrK 68 | k.s. 69 | K/S 70 | Kv 71 | Ky 72 | lda 73 | LDC 74 | LLC 75 | LLP 76 | Ltd 77 | Ltda 78 | N.A> 79 | NT 80 | NV 81 | ocD 82 | OE 83 | OHG 84 | OU ** 85 | Oy 86 | OYJ 87 | P/L 88 | PC Ltd 89 | PLC 90 | PMA 91 | PMDN 92 | PrC 93 | Prp. Ltd. 94 | PT 95 | Pty. 96 | plc 97 | RAS 98 | RFC 99 | R.F.C. 100 | Rt 101 | S. de R.L. 102 | S. en C. 103 | S. en N.C. 104 | S/A 105 | SA 106 | sa 107 | SA de CV 108 | SAFI 109 | S.A.I.C.A. 110 | SAL 111 | SApA 112 | Sarl 113 | SAS 114 | SC 115 | S.C. 116 | SCA 117 | SCP 118 | SCS 119 | S.C.S. 120 | Sdn Bhd 121 | SENC 122 | SGPS 123 | SK 124 | SNC 125 | SOPARFI 126 | sp 127 | SpA 128 | spols.r.o. 129 | SPRL 130 | Sp.z.o.o. 131 | Srl 132 | td 133 | TLS 134 | VEB 135 | VOF 136 | v.o.s. -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/org_key.lst: -------------------------------------------------------------------------------- 1 | ASSOCIATES 2 | Acquisition 3 | Affaires 4 | Affairs 5 | Aircraft 6 | Airlines 7 | Airways 8 | Associates 9 | Assurance 10 | Aviation 11 | Bancorp 12 | Boat Company 13 | Boats 14 | Brands 15 | Brewery 16 | Capital 17 | Care 18 | Chemicals 19 | Chronicle 20 | Circus 21 | Coalition 22 | Committee 23 | Communications 24 | Computer 25 | Consulting 26 | Containers 27 | Corps 28 | Department Store 29 | Design 30 | Drew 31 | Drilling 32 | Education 33 | Electric 34 | Electricity 35 | Electriques 36 | Energie 37 | Engines 38 | Enterprise 39 | Enterprises 40 | Equitable 41 | Federal 42 | Financial 43 | Fire Rescue 44 | Fédéral 45 | Gas 46 | Gestion 47 | Général 48 | Générale 49 | Holdings 50 | Industriale 51 | Industries 52 | Institute of Technology 53 | Insurance 54 | International 55 | Interstate 56 | Investissements 57 | Investment 58 | Investments 59 | Investors 60 | Kennels 61 | Machines 62 | Magasins 63 | Management 64 | Marine 65 | Marketing 66 | Markets 67 | Media 68 | Mercantile Exchange 69 | Mining 70 | Motor 71 | Motors 72 | News Service 73 | Optical 74 | Organization 75 | Petrole 76 | Petroleum 77 | Pharmacare 78 | Pharmaceutical 79 | Pharmaceuticals 80 | Pharmaceutiques 81 | Pottery 82 | Press 83 | Radio 84 | Recherche 85 | Records 86 | Rescue 87 | Reserve 88 | Rouge 89 | Régulation 90 | Savings 91 | Secure Electronic Transaction 92 | Securities 93 | Services 94 | State Police 95 | Stock Exchange 96 | Stores 97 | Systems 98 | TV 99 | Technologie 100 | Technologies 101 | Technology 102 | Telegraph 103 | Television 104 | Tours 105 | Télévision 106 | Utilities 107 | Wanderers 108 | Ware 109 | Tribunal 110 | Consultants 111 | Examinations 112 | Examination Board 113 | Trains 114 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/org_key_cap.lst: -------------------------------------------------------------------------------- 1 | ACQUISITION 2 | AFFAIRES 3 | AFFAIRS 4 | AIRCRAFT 5 | AIRLINES 6 | AIRWAYS 7 | ASSOCIATES 8 | ASSURANCE 9 | AVIATION 10 | BANCORP 11 | BOAT COMPANY 12 | BOATS 13 | BRANDS 14 | BREWERY 15 | CAPITAL 16 | CARE 17 | CHEMICALS 18 | CHRONICLE 19 | CIRCUS 20 | COALITION 21 | COMMITTEE 22 | COMMUNICATIONS 23 | COMPUTER 24 | CONSULTING 25 | CONTAINERS 26 | CORPS 27 | COST 28 | DATA 29 | DEPARTMENT STORE 30 | DESIGN 31 | DEVELOPMENT 32 | DISTANCE 33 | DREW 34 | DRILLING 35 | EDUCATION 36 | ELECTRIC 37 | ELECTRICITY 38 | ELECTRIQUES 39 | ENERGIE 40 | ENERGY 41 | ENGINES 42 | ENTERPRISE 43 | ENTERPRISES 44 | EQUITABLE 45 | FéDéRAL 46 | FEDERAL 47 | FINANCIAL 48 | FIRE RESCUE 49 | GéNéRAL 50 | GéNéRALE 51 | GAS 52 | GESTION 53 | HOLDINGS 54 | INDUSTRIALE 55 | INDUSTRIES 56 | INSTITUTE OF TECHNOLOGY 57 | INSURANCE 58 | INTERNATIONAL 59 | INTERSTATE 60 | INVESTISSEMENTS 61 | INVESTMENT 62 | INVESTMENTS 63 | INVESTORS 64 | KENNELS 65 | MACHINES 66 | MAGASINS 67 | MANAGEMENT 68 | MARINE 69 | MARKETING 70 | MARKETS 71 | MEDIA 72 | MERCANTILE EXCHANGE 73 | MINING 74 | MOTOR 75 | MOTORS 76 | NEWS 77 | NEWS SERVICE 78 | OIL 79 | OPTICAL 80 | ORGANIZATION 81 | PETROLE 82 | PETROLEUM 83 | PHARMACARE 84 | PHARMACEUTICAL 85 | PHARMACEUTICALS 86 | PHARMACEUTIQUES 87 | POTTERY 88 | POWER 89 | PRESS 90 | RADIO 91 | RéGULATION 92 | RECHERCHE 93 | RECORDS 94 | RESCUE 95 | RESERVE 96 | ROUGE 97 | SAVINGS 98 | SECURE ELECTRONIC TRANSACTION 99 | SECURITIES 100 | SERVICES 101 | STATE POLICE 102 | STOCK EXCHANGE 103 | STORES 104 | SYSTEMS 105 | TéLéVISION 106 | TECHNOLOGIE 107 | TECHNOLOGIES 108 | TECHNOLOGY 109 | TELEGRAPH 110 | TELEVISION 111 | TIMES 112 | TOURS 113 | TV 114 | UTILITIES 115 | WANDERERS 116 | WARE 117 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/org_pre.lst: -------------------------------------------------------------------------------- 1 | Federal 2 | Royal 3 | National 4 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/org_spur.lst: -------------------------------------------------------------------------------- 1 | ABM 2 | Resolution 3 | War 4 | Olympics 5 | Super Bowl 6 | World Series 7 | Discovery 8 | Challenger 9 | FREE COLLEGE 10 | Free College 11 | Copyright 12 | Corriere della Sera 13 | Chanel No. 5 14 | Limitation 15 | Soul 16 | Service 17 | Start 18 | National League 19 | Series 20 | NMD 21 | TMD 22 | Treaty 23 | N.B. 24 | Q&A 25 | Plan 26 | City Centre 27 | Constitution 28 | Law 29 | Amendment 30 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/other_people.lst: -------------------------------------------------------------------------------- 1 | shareholders 2 | investors 3 | insiders -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/othorg_key.lst: -------------------------------------------------------------------------------- 1 | Local 2 | District 3 | 4 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/percent.lst: -------------------------------------------------------------------------------- 1 | % 2 | percent 3 | per cent 4 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/person_ambig.lst: -------------------------------------------------------------------------------- 1 | Silver 2 | Dame 3 | Jan 4 | Christian 5 | June 6 | Jarvis 7 | Halley 8 | Faith 9 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/person_ambig2.lst: -------------------------------------------------------------------------------- 1 | Brittany 2 | May 3 | June 4 | April 5 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/person_ending.lst: -------------------------------------------------------------------------------- 1 | Jr 2 | Jr. 3 | jr 4 | jr. 5 | Sr 6 | Sr. 7 | sr 8 | sr. 9 | II 10 | III 11 | Q.C. 12 | QC 13 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/person_full.lst: -------------------------------------------------------------------------------- 1 | Bach:gender=male 2 | Brahms:gender=male 3 | Carter:gender=male 4 | Clinton:gender=male 5 | Gaugin:gender=male 6 | Gauguin:gender=male 7 | George Bush:gender=male 8 | Hillary Clinton:gender=female 9 | Hillary Rodham Clinton:gender=female 10 | John the Baptist:gender=male 11 | Margaret Thatcher:gender=female 12 | Messiaen:gender=male 13 | Mozart:gender=male 14 | Nixon:gender=male 15 | Pope John Paul II:gender=male 16 | Richard Nixon:gender=male 17 | Ronald Reagan:gender=male 18 | Saddam Hussain:gender=male 19 | Saint-Saens:gender=male 20 | Shostakovich:gender=male 21 | Strauss:gender=male 22 | Thatcher:gender=female 23 | The Clintons 24 | The Queen:gender=female 25 | the Queen:gender=female 26 | Van Gogh:gender=male 27 | Virgin Mary:gender=female 28 | Vivaldi:gender=male 29 | the Clintons 30 | van Gogh:gender=male 31 | Carl Marx:gender=male 32 | Marx:gender=male 33 | Lenin:gender=male 34 | Stalin:gender=male 35 | George W. Bush:gender=male 36 | Mitt Romney:gender=male 37 | Barack Obama:gender=male 38 | Romney:gender=male 39 | Obama:gender=male 40 | Lady Gaga:gender=female 41 | Kanye West:gender=male 42 | Abu Hamza:gender=male 43 | Abu Hamza Al-Masri:gender=male 44 | Bin Laden:gender=male 45 | bin Laden:gender=male 46 | Osama bin Laden:gender=male 47 | Osama Bin Laden:gender=male 48 | Mubarek 49 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/person_relig.lst: -------------------------------------------------------------------------------- 1 | God 2 | Jesus 3 | Jesus Christ 4 | Lord Jesus Christ 5 | Lord God 6 | the Holy Ghost 7 | the Holy Spirit 8 | Christ 9 | Nicademus 10 | Nicodemus 11 | Anzakias 12 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/person_sci.lst: -------------------------------------------------------------------------------- 1 | Bloch 2 | Lorenz 3 | Maxwell-Bloch 4 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/person_spur.lst: -------------------------------------------------------------------------------- 1 | Er 2 | Colleague 3 | Colleagues 4 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/phone_prefix.lst: -------------------------------------------------------------------------------- 1 | Phone 2 | phone 3 | Telephone 4 | telephone 5 | Tel. 6 | Tel 7 | tel. 8 | tel 9 | Fax 10 | fax 11 | no. 12 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/planet.lst: -------------------------------------------------------------------------------- 1 | red planet 2 | moon 3 | lunar 4 | Venus 5 | Red Planet 6 | Moon 7 | Mars 8 | Io 9 | Ganymede 10 | Eros 11 | 12 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/post.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/plugins/ANNIE/resources/gazetteer/post.lst -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/racecourse.lst: -------------------------------------------------------------------------------- 1 | Doncaster 2 | Haydock Park 3 | Uttoxeter 4 | Epsom 5 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/radio_stations_uk.lst: -------------------------------------------------------------------------------- 1 | Absolute Radio 2 | Absolute 80s 3 | Absolute Radio 90s 4 | BBC Radio 1 5 | BBC Radio 2 6 | BBC Radio 3 7 | BBC Radio 4 8 | BBC Radio 4 9 | BBC Radio 5 10 | BBC Radio 6 11 | BBC Asian Network 12 | BBC World Service 13 | BFBS Radio 14 | Capital Xtra 15 | Classic FM 16 | Jazz FM 17 | Premier Radio 18 | Smooth Radio UK 19 | Talksport 20 | Team Rock Radio 21 | UCB UK 22 | Absolute Classic Rock 23 | Absolute Radio 60s 24 | Capital FM 25 | Capital Radio 26 | Gold FM 27 | Gaydio 28 | Heat Radio 29 | Heart FM 30 | Heart Radio 31 | The Hits Radio 32 | Kerrang! Radio 33 | Kerrang! 34 | Magiv 105.4FM 35 | Panjab Radio 36 | UCB Gospel 37 | UCB Inspirational 38 | XFM 39 | BBC Radio Berkshire 40 | BBC Radio Bristol 41 | BBC Radio Cambridgeshir 42 | BBC Radio Cornwall 43 | BBC Coventry & Warwickshire 44 | BBC Radio Cumbria 45 | BBC Radio Derby 46 | BBC Radio Devon 47 | BBC Essex 48 | BBC Radio Gloucestershire 49 | BBC Radio Guernsey 50 | BBC Hereford and Worcester 51 | BBC Radio Humberside 52 | BBC Radio Jersey 53 | BBC Radio Kent 54 | BBC Radio Lancashire 55 | BBC Radio Leeds 56 | BBC Radio Leicester 57 | BBC Radio Lincolnshire 58 | BBC Radio Manchester 59 | BBC Radio Merseyside 60 | BBC Newcastle 61 | BBC Radio Norfolk 62 | BBC Radio Northampton 63 | BBC Radio Nottingham 64 | BBC Radio Oxford 65 | BBC Radio Sheffield 66 | BBC Radio Shropshire 67 | BBC Radio Solent 68 | BBC Somerset 69 | BBC Radio Stok 70 | BBC Radio Suffolk 71 | BBC Sussex 72 | BBC Tees 73 | BBC Three Counties Radio 74 | BBC WM 75 | BBC Wiltshire 76 | BBC Radio York 77 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/region.lst: -------------------------------------------------------------------------------- 1 | Africa 2 | Algarve 3 | Antarctica 4 | Ashmore and Cartier Islands 5 | Asia 6 | Atlantic Coast 7 | Bahamas 8 | Baker Island 9 | Balkans 10 | Bassin Pacifique 11 | Bay Area 12 | Bay of Pigs 13 | Bouvet Island 14 | British Virgin Islands 15 | Cayman Islands 16 | Christmas Island 17 | Clipperton Island 18 | Cocos Islands 19 | Cook Island 20 | Coral Sea Islands 21 | East Asia 22 | Eastern Europe 23 | Europa Island 24 | Europe 25 | Falkland Islands 26 | Faroe Islands 27 | Gilbert and Ellice Islands 28 | Glorioso Islands 29 | Gulf Coast 30 | Heard and McDonald Islands 31 | Hispaniola 32 | Howland Island 33 | Indochina 34 | Jarvis Island 35 | Juan de Nova Island 36 | Judea 37 | Marshall Islands 38 | Mediterranean 39 | Middle East 40 | Midway Islands 41 | Navassa Island 42 | New England 43 | Norfolk Island 44 | North America 45 | Northern Mariana Islands 46 | Pacific Basin 47 | Paracel Islands 48 | Pitcairn Islands 49 | Providencia 50 | San Andres 51 | Scandinavia 52 | Silicon Valley 53 | Solomon Islands 54 | South America 55 | South East Asia 56 | Spitsbergen 57 | Spratly Islands 58 | Svalbard 59 | The Gulf 60 | The Persian Gulf 61 | Tromelin Island 62 | Turks and Caicos Islands 63 | Virgin Islands 64 | W Indies 65 | W. Indies 66 | Wake Island 67 | West Europe 68 | West Indies 69 | Western Europe 70 | the Far East 71 | the Gulf 72 | the Persian Gulf 73 | Eastern Bloc 74 | Aceh 75 | Spitzbergen 76 | West Bank 77 | Gaza 78 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/region_cap.lst: -------------------------------------------------------------------------------- 1 | AFRICA 2 | ANTARCTICA 3 | ASHMORE AND CARTIER ISLANDS 4 | ASIA 5 | ATLANTIC COAST 6 | BAHAMAS 7 | BAKER ISLAND 8 | BALKANS 9 | BASSIN PACIFIQUE 10 | BAY AREA 11 | BAY OF PIGS 12 | BOUVET ISLAND 13 | BRITISH VIRGIN ISLANDS 14 | CAYMAN ISLANDS 15 | CHRISTMAS ISLAND 16 | CLIPPERTON ISLAND 17 | COCOS ISLANDS 18 | COOK ISLAND 19 | CORAL SEA ISLANDS 20 | EAST ASIA 21 | EASTERN EUROPE 22 | EUROPA ISLAND 23 | EUROPE 24 | FALKLAND ISLANDS 25 | FAROE ISLANDS 26 | GILBERT AND ELLICE ISLANDS 27 | GLORIOSO ISLANDS 28 | GULF COAST 29 | HEARD AND MCDONALD ISLANDS 30 | HISPANIOLA 31 | HOWLAND ISLAND 32 | INDOCHINA 33 | JARVIS ISLAND 34 | JUAN DE NOVA ISLAND 35 | JUDEA 36 | MARSHALL ISLANDS 37 | MEDITERRANEAN 38 | MIDDLE EAST 39 | MIDWAY ISLANDS 40 | NAVASSA ISLAND 41 | NEW ENGLAND 42 | NORFOLK ISLAND 43 | NORTH AMERICA 44 | NORTHERN MARIANA ISLANDS 45 | PACIFIC BASIN 46 | PARACEL ISLANDS 47 | PITCAIRN ISLANDS 48 | PROVIDENCIA 49 | SAN ANDRES 50 | SILICON VALLEY 51 | SOLOMON ISLANDS 52 | SOUTH AMERICA 53 | SOUTH EAST ASIA 54 | SPITSBERGEN 55 | SPRATLY ISLANDS 56 | SVALBARD 57 | THE FAR EAST 58 | THE GULF 59 | THE PERSIAN GULF 60 | TROMELIN ISLAND 61 | TURKS AND CAICOS ISLANDS 62 | VIRGIN ISLANDS 63 | W INDIES 64 | W. INDIES 65 | WAKE ISLAND 66 | WEST EUROPE 67 | WEST INDIES 68 | WESTERN EUROPE 69 | ACEH 70 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/rivers.lst: -------------------------------------------------------------------------------- 1 | Severn 2 | Thames 3 | Tyne 4 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/say.lst: -------------------------------------------------------------------------------- 1 | said 2 | says 3 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/skills.lst: -------------------------------------------------------------------------------- 1 | Abilities 2 | ABILITIES 3 | Areas of Experience 4 | AREAS OF EXPERIENCE 5 | Areas of Expertise 6 | AREAS OF EXPERTISE 7 | Areas of Knowledge 8 | AREAS OF KNOWLEDGE 9 | Career Related Skills 10 | CAREER RELATED SKILLS 11 | Computer Knowledge 12 | COMPUTER KNOWLEDGE 13 | Computer Skills 14 | COMPUTER SKILLS 15 | Credentials 16 | CREDENTIALS 17 | Expertise 18 | EXPERTISE 19 | Language Competencies and Skills 20 | LANGUAGE COMPETENCIES AND SKILLS 21 | Languages 22 | LANGUAGES 23 | Professional Skills 24 | PROFESSIONAL SKILLS 25 | Proficiencies 26 | PROFICIENCIES 27 | Programming Languages 28 | PROGRAMMING LANGUAGES 29 | Qualifications 30 | QUALIFICATIONS 31 | Skills 32 | SKILLS 33 | Specialized Skills 34 | SPECIALIZED SKILLS 35 | Technical Experience 36 | TECHNICAL EXPERIENCE 37 | Technical Skills 38 | TECHNICAL SKILLS 39 | Technologies 40 | TECHNOLOGIES 41 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/sports.lst: -------------------------------------------------------------------------------- 1 | tennis 2 | TENNIS 3 | skiing 4 | SKIING 5 | skating 6 | SKATING 7 | gymnastics 8 | GYMNASTICS 9 | swimming 10 | SWIMMING 11 | football 12 | FOOTBALL 13 | rugby 14 | RUGBY 15 | golf 16 | GOLF 17 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/spur.lst: -------------------------------------------------------------------------------- 1 | Admiral Craft 2 | A.M. 3 | P.M. 4 | English-speaking 5 | September 6 | Christmas 7 | Former 8 | World 9 | Christmas Eve 10 | DNA 11 | TV 12 | OK 13 | Friday 14 | Tuesday 15 | June 16 | Feb 17 | July 18 | AIDS 19 | HIV 20 | Hippocratic 21 | MA 22 | Pope 23 | GMT 24 | Cup 25 | Interamerican Cup 26 | Mortality and Medical Care 27 | Open 28 | CAN END 29 | Web 30 | Third 31 | Nov. 32 | Jan. 33 | III 34 | IV 35 | VI 36 | VII 37 | VIII 38 | IX 39 | Columbus Day 40 | Hall of Fame 41 | The Full Monty 42 | The Full Monarchy 43 | World War II 44 | world war II 45 | Koran 46 | Hang Seng Index 47 | Monday 48 | Sunday 49 | B-52 50 | The Fifth Element 51 | AS 52 | Aye 53 | The Depression 54 | Saturday 55 | Thursday 56 | NEW 57 | AM 58 | P.M 59 | OCT 60 | Freud Memorial 61 | Page 62 | Presidency 63 | Official Secrets Act 64 | official Secrets Act 65 | Buddy List 66 | Civil War 67 | Depression 68 | Least 69 | Patient 70 | Profiles in Courage 71 | Shhhh 72 | Universal Declaration 73 | When Federal 74 | Speakership 75 | Tuesday 76 | Tae Kwan Do 77 | Advancement 78 | Delta 79 | II 80 | III 81 | the Mobile 82 | Intercontinental Cup 83 | War of the Worlds 84 | Universe 85 | Y River 86 | Y Accord 87 | Accord 88 | Apollo 89 | Hubble 90 | government-owned 91 | DVT 92 | ABC 93 | GNP 94 | B&B 95 | US-ASCII 96 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/spur_ident.lst: -------------------------------------------------------------------------------- 1 | H2O 2 | CO2 3 | HMS 4 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/state_us.lst: -------------------------------------------------------------------------------- 1 | AL 2 | AK 3 | AZ 4 | AR 5 | CA 6 | CO 7 | CT 8 | DE 9 | FL 10 | GA 11 | HI 12 | ID 13 | IL 14 | IN 15 | IA 16 | KS 17 | KY 18 | LA 19 | ME 20 | MD 21 | MA 22 | MI 23 | MN 24 | MS 25 | MO 26 | MT 27 | NE 28 | NV 29 | NH 30 | NU 31 | N, 32 | NY 33 | ND 34 | OH 35 | OK 36 | OR 37 | PA 38 | RI 39 | SC 40 | SD 41 | TN 42 | TX 43 | UT 44 | VT 45 | VA 46 | WA 47 | WV 48 | WI 49 | WY 50 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/stop.lst: -------------------------------------------------------------------------------- 1 | About 2 | And 3 | Because 4 | By 5 | Can 6 | First 7 | For 8 | From 9 | He 10 | Here 11 | I 12 | It 13 | May 14 | Next 15 | Of 16 | Perhaps 17 | Please 18 | Shall 19 | She 20 | So 21 | That 22 | Then 23 | They 24 | We 25 | Will 26 | With 27 | Without 28 | You 29 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/street.lst: -------------------------------------------------------------------------------- 1 | Avenue 2 | Crescent 3 | Hill 4 | Lane 5 | Rise 6 | Road 7 | Row 8 | Street 9 | Way 10 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/summary.lst: -------------------------------------------------------------------------------- 1 | CAREER GOAL 2 | Career Goal 3 | CAREER OBJECTIVE 4 | Career Objective 5 | CAREER SUMMARY 6 | Career Summary 7 | EMPLOYMENT OBJECTIVE 8 | Employment Objective 9 | HIGHLIGHTS 10 | Highlights 11 | JOB OBJECTIVE 12 | Job Objective 13 | OBJECTIVE 14 | Objective 15 | PROFESSIONAL OBJECTIVE 16 | Professional Objective 17 | Professional Profile 18 | PROFESSIONAL PROFILE 19 | Professional Summary 20 | PROFESSIONAL SUMMARY 21 | PROFILE 22 | Profile 23 | SUMMARY 24 | Summary 25 | SUMMARY OF QUALIFICATIONS 26 | Summary of Qualifications 27 | SUMMARY STATEMENT 28 | Summary Statement 29 | TECHNICAL SUMMARY 30 | Technical Summary 31 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/surname_prefix.lst: -------------------------------------------------------------------------------- 1 | de 2 | De 3 | del 4 | Del 5 | d' 6 | D' 7 | O' 8 | von 9 | Von 10 | van 11 | Van 12 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/team.lst: -------------------------------------------------------------------------------- 1 | Boston red sox 2 | Anaheim Angels 3 | red sox 4 | angels 5 | Miami Fusion 6 | Columbus Crew 7 | Copa Libertadores 8 | Toronto Maple Leafs 9 | Montreal Canadiens 10 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/time.lst: -------------------------------------------------------------------------------- 1 | midday 2 | midnight 3 | noon 4 | dawn 5 | dusk 6 | sunrise 7 | sunset 8 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/time_ampm.lst: -------------------------------------------------------------------------------- 1 | a.m. 2 | A M 3 | AM 4 | A.M. 5 | pm 6 | p.m. 7 | PM 8 | P.M. 9 | P M 10 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/time_key.lst: -------------------------------------------------------------------------------- 1 | today 2 | tomorrow 3 | yesterday 4 | this morning 5 | this afternoon 6 | this evening 7 | in the morning 8 | in the afternoon 9 | in the evening -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/time_modifier.lst: -------------------------------------------------------------------------------- 1 | coming 2 | last 3 | next 4 | past 5 | previous 6 | this 7 | Last 8 | Next 9 | This 10 | forthcoming 11 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/time_unit.lst: -------------------------------------------------------------------------------- 1 | hour 2 | hours 3 | minute 4 | minutes 5 | second 6 | seconds 7 | morning 8 | afternoon 9 | evening 10 | night 11 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/timeofday.lst: -------------------------------------------------------------------------------- 1 | overnight%value=TNI 2 | morning%value=TMO 3 | afternoon%value=TAF 4 | evening%value=TEV 5 | night%value=TNI 6 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/times.lst: -------------------------------------------------------------------------------- 1 | witching hour 2 | tonight 3 | start of the day 4 | pre-dawn 5 | overnight 6 | noontide 7 | noonday 8 | noon 9 | nightfall 10 | morning 11 | midnight 12 | middle of the day 13 | midday 14 | midafternoon 15 | mid-day 16 | mid - day 17 | gloaming 18 | evening 19 | end of the day 20 | dusk 21 | daybreak 22 | dawn 23 | break of the day 24 | break of day 25 | afternoon 26 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/timespan.lst: -------------------------------------------------------------------------------- 1 | secs 2 | seconds 3 | minutes 4 | mins 5 | hours 6 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/timex_pre.lst: -------------------------------------------------------------------------------- 1 | previous 2 | pre- 3 | pre - 4 | next 5 | later 6 | late on 7 | late 8 | last 9 | early 10 | earlier 11 | during 12 | before 13 | after 14 | Previous 15 | Pre- 16 | Pre - 17 | Next 18 | Later 19 | Late on 20 | Late 21 | Last 22 | Early 23 | Earlier 24 | During 25 | Before 26 | After 27 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/timezone.lst: -------------------------------------------------------------------------------- 1 | Zulu Standard Time 2 | Zone Standard Time 3 | ZST 4 | Z.S.T. 5 | Western time 6 | Western Time 7 | Western Standard Time 8 | Western Day Time 9 | Western Daily Time 10 | Western Coast Time 11 | West Day Time 12 | West Daily Time 13 | West Coast Time 14 | WST 15 | WDT 16 | WCT 17 | W.S.T. 18 | W.D.T. 19 | W.C.T. 20 | Southern time 21 | Southern Time 22 | Pacific time 23 | Pacific Time 24 | Pacific Day Time 25 | Pacific Daily Time 26 | PDT 27 | P.D.T. 28 | Northern time 29 | Northern Time 30 | Middle Eastern Time 31 | MET 32 | M.E.T. 33 | Greenwich Time 34 | Greenwich Meantime 35 | Greenwich MeanTime 36 | Greenwich Mean Time 37 | GMT 38 | G.M.T. 39 | Eastern time 40 | Eastern Time 41 | Eastern Standard Time 42 | Eastern Day Time 43 | Eastern Daily Time 44 | Eastern Coast Time 45 | East Day Time 46 | East Daily Time 47 | East Coast Time 48 | ET 49 | EST 50 | EDT 51 | ECT 52 | E.T. 53 | E.S.T. 54 | E.D.T. 55 | E.C.T. 56 | Central Time 57 | Central Standard Time 58 | Central European Time 59 | Central Day Time 60 | Central Daily Time 61 | CST 62 | CET 63 | CDT 64 | C.S.T. 65 | C.E.T. 66 | C.D.T. 67 | British Summer Time 68 | BST 69 | B.S.T. 70 | 71 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/title.lst: -------------------------------------------------------------------------------- 1 | Chancellor 2 | Councillor 3 | Detective 4 | Detective Inspector 5 | Doctor 6 | Dr 7 | Dr. 8 | Inspector 9 | Judge 10 | Justice 11 | Messrs 12 | Messrs. 13 | Prof. 14 | Professor 15 | Sen. 16 | Senator 17 | President 18 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/title_female.lst: -------------------------------------------------------------------------------- 1 | Madam 2 | Madame 3 | Mademoiselle 4 | Miss 5 | Mlle 6 | Mme 7 | Mme. 8 | Mrs 9 | Mrs. 10 | Ms 11 | Ms. 12 | Sister 13 | Spokeswoman 14 | Princess 15 | Lady 16 | Baroness 17 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/title_lowercase.lst: -------------------------------------------------------------------------------- 1 | business unit manager 2 | chairman 3 | chancellor 4 | chief administrative officer 5 | chief executive 6 | chief executive officer 7 | chief financial officer 8 | chief operating officer 9 | co-chairman 10 | co-chief executive officer 11 | communications director 12 | controller 13 | deputy chairman 14 | deputy general manager 15 | director - business development 16 | director - product management 17 | director - system / field test 18 | director of human resources 19 | director of marketing 20 | director of marketing communications 21 | director, product group 22 | executive 23 | executive director - product development 24 | executive vice president 25 | executive vice president - Europe 26 | executive vice presidents 27 | finance chief 28 | finance director 29 | founding chairman 30 | general counsel 31 | general manager 32 | group executive 33 | group president 34 | head 35 | human-resources vice president 36 | judge 37 | leader 38 | managing director 39 | minister 40 | monsieur 41 | negotiator 42 | non-executive chairman 43 | nonexecutive chairman 44 | president 45 | secretary 46 | secretary-general 47 | senior vice president 48 | treasurer 49 | vice chairman 50 | vice president 51 | vice president of business / market planning & development 52 | vice president of sales and marketing 53 | vice-chairman 54 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/title_male.lst: -------------------------------------------------------------------------------- 1 | Marquis 2 | Messr 3 | Messr. 4 | Monsieur 5 | Mr 6 | Mr. 7 | Prince 8 | Rabbi 9 | Sheik 10 | Sir 11 | Lord 12 | Ayatollah 13 | Rev. 14 | Reverend 15 | Bishop 16 | Archbishop 17 | Baron 18 | Lord Chief Justice 19 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/title_pol.lst: -------------------------------------------------------------------------------- 1 | WPC 2 | Woman Police Constable 3 | W.P.C. 4 | W. P. C. 5 | W.P.C. 6 | Superintendent 7 | Super Intendent 8 | Special Constable 9 | Special Agent 10 | Serjeant 11 | Sergent 12 | sergent 13 | sergeant 14 | Sergeant 15 | Police Constable 16 | PC 17 | P.C. 18 | P. C. 19 | P.C. 20 | Inspector 21 | DS 22 | DI 23 | Detective Serjeant 24 | Detective Sergeant 25 | Detective Inspector 26 | Detective Constable 27 | Detective Chief Inspector 28 | Detective Chief Constable 29 | Detective 30 | Det. Sgt. 31 | Det. Serg. 32 | Det. Insp. 33 | Det. Const. 34 | Det. Ch. Insp. 35 | Det Sgt 36 | Det Serg 37 | Det Insp 38 | Det Const 39 | Det Ch Insp 40 | Det. Sgt. 41 | Det. Serg. 42 | Det. Insp. 43 | Det. Const. 44 | Det. Ch. Insp. 45 | desk serjeant 46 | Desk Serjeant 47 | desk Serjeant 48 | desk Sergeant 49 | desk sergeant 50 | Desk Sergeant 51 | Deputy Chief Inspector 52 | Deputy Chief Constable 53 | DCI 54 | DC 55 | D.S. 56 | D.I. 57 | D.C.I. 58 | D.C. 59 | D. S. 60 | D. C. I. 61 | D. C. 62 | D.S. 63 | D.I. 64 | D.C.I. 65 | D.C. 66 | Crime Prevention Officer 67 | Constable 68 | Communications Officer 69 | Commissioner 70 | Commissar 71 | Commissaire 72 | Chief Superintendent 73 | Chief Inspector 74 | Chief Constable 75 | Chief Commissioner 76 | Brigadier 77 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/tvcompany.lst: -------------------------------------------------------------------------------- 1 | ABC 2 | Fox TV 3 | BBC 4 | ITV 5 | Channel 4 6 | Channel 5 7 | Channel 50 8 | VOA 9 | WFTY-TV 10 | WHLL-TV 11 | katv 12 | KATV 13 | VH1 14 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/url_key.lst: -------------------------------------------------------------------------------- 1 | co 2 | ac 3 | org 4 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/water.lst: -------------------------------------------------------------------------------- 1 | Pacific 2 | North Atlantic 3 | New York Harbor 4 | Indian Ocean 5 | Gulf of Mexico 6 | Great Lakes 7 | Everglades 8 | Caribbean 9 | Bay of Biscay 10 | Atlantic 11 | Arctic 12 | Antarctic 13 | Nile 14 | Amazon 15 | Thames 16 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/work_experience.lst: -------------------------------------------------------------------------------- 1 | ADDITIONAL EXPERIENCE 2 | Additional Experience 3 | ARMY EXPERIENCE 4 | Army Experience 5 | CAREER RELATED EXPERIENCE 6 | Career Related Experience 7 | EMPLOYMENT HISTORY 8 | Employment History 9 | EXPERIENCE 10 | Experience 11 | FREELANCE 12 | Freelance 13 | FREELANCE EXPERIENCE 14 | Freelance Experience 15 | MILITARY BACKGROUND 16 | Military Background 17 | MILITARY EXPERIENCE 18 | Military Experience 19 | PROFESSIONAL BACKGROUND 20 | Professional Background 21 | PROFESSIONAL EXPERIENCE 22 | Professional Experience 23 | Project 24 | PROJECT 25 | Projects 26 | PROJECTS 27 | Related Experience 28 | RELATED EXPERIENCE 29 | WORK EXPERIENCE 30 | Work Experience 31 | Work History 32 | WORK HISTORY 33 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/gazetteer/year.lst: -------------------------------------------------------------------------------- 1 | 1970 2 | 1971 3 | 1972 4 | 1973 5 | 1974 6 | 1975 7 | 1976 8 | 1977 9 | 1978 10 | 1979 11 | 1980 12 | 1981 13 | 1982 14 | 1983 15 | 1984 16 | 1985 17 | 1986 18 | 1987 19 | 1988 20 | 1989 21 | 1990 22 | 1991 23 | 1992 24 | 1993 25 | 1994 26 | 1995 27 | 1996 28 | 1997 29 | 1998 30 | 1999 31 | 2000 32 | 2001 33 | 2002 34 | 2003 35 | 2004 36 | 2005 37 | 2006 38 | 2007 39 | 2008 40 | 2009 41 | 2010 42 | 2011 43 | 2012 44 | 2013 45 | 2014 46 | 2015 47 | 2016 48 | 2017 49 | 2018 50 | 2019 51 | 2020 52 | 2021 53 | 2022 54 | 2023 55 | 2024 56 | 2025 57 | 2026 58 | 2027 59 | 2028 60 | 2029 61 | 2030 62 | 2031 63 | 2032 64 | 2033 65 | 2034 66 | 2035 67 | 2036 68 | 2037 69 | 2038 70 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/othomatcher/acelists.def: -------------------------------------------------------------------------------- 1 | cdg.lst:cdg 2 | spur_match.lst:spur_match 3 | prepos.lst:prepos 4 | def_art.lst:def_art 5 | connnector.lst:connnector 6 | alias_ace.lst:alias 7 | nickname.txt:nickname -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/othomatcher/alias.lst: -------------------------------------------------------------------------------- 1 | National Aeronautics and Space Administration£1 2 | NASA£1 3 | New York Stock Exchange£2 4 | Big Board£2 5 | Aluminum Co.£3 6 | Aluminum Co£3 7 | Alcoa£3 8 | New York Times Inc.£4 9 | Times£4 10 | New York Times£4 11 | Coca-Cola Co.£5 12 | Coca-Cola Co£5 13 | Coca-Cola£5 14 | Coke£5 15 | IBM£6 16 | Big Blue£6 17 | New York£7 18 | Big Apple£7 19 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/othomatcher/cdg.lst: -------------------------------------------------------------------------------- 1 | Co 2 | PTE LTD 3 | AMBA 4 | Ltd. 5 | NA. 6 | Co. 7 | CDERL 8 | L. P. 9 | SARL 10 | PLC. 11 | Pty ltd 12 | S. p. A. 13 | Oy 14 | GMBH & COKG 15 | GMBH 16 | Bv 17 | Pte ltd 18 | L. L. C. 19 | G. M. B. H. 20 | NV. 21 | AG & COKG 22 | LTD. 23 | S. P. A. 24 | KK. 25 | AG & COKG 26 | GMBH. 27 | Cos 28 | PT 29 | Lp 30 | corp 31 | AB 32 | GMBH & COKG 33 | Associates 34 | BDH 35 | MIJ 36 | SV 37 | G. m. b. H. & CO , KG 38 | NV 39 | Ag 40 | Group 41 | CO 42 | Brothers 43 | Sons Co 44 | Ay 45 | eGmbh 46 | CPORA 47 | plc 48 | PERSERO 49 | C.V. 50 | Spa 51 | Corp 52 | gGmbH 53 | LDA 54 | BV 55 | SAC 56 | Corp. 57 | SPA 58 | Ltd 59 | Sons 60 | LLC 61 | PTY LTD 62 | S. A. R. L. 63 | N. V. 64 | Corporation 65 | AG & Co KG 66 | HMIG 67 | LTD 68 | B. V. 69 | INC. 70 | KK 71 | Inc 72 | Na 73 | LP 74 | Incorporated 75 | INC 76 | GmbH. 77 | AG 78 | ASSOCIATES 79 | Gmbh 80 | Bhd 81 | PERUM 82 | CV 83 | Kk 84 | AY 85 | C. por A. 86 | BHD 87 | Company 88 | S. A. 89 | AENP 90 | Limited 91 | plc. 92 | COS 93 | HVER 94 | AG & Co KG 95 | CORP. 96 | G. m. b. H. 97 | BDH. 98 | Bros. 99 | Group. 100 | Plc 101 | G. m. b. H. & CO , KG 102 | Cos. 103 | SA 104 | PLC 105 | NA 106 | N. A. 107 | PERJAN 108 | Inc. 109 | PP 110 | CORP 111 | C. de R. L. 112 | L.P. 113 | Plc. 114 | EGMBH 115 | PN 116 | OYAB 117 | Limitada 118 | SPA. 119 | OY 120 | Ab 121 | AG. 122 | GmbH 123 | AB. 124 | S. A. C. 125 | Nv 126 | SA. 127 | Sa -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/othomatcher/connnector.lst: -------------------------------------------------------------------------------- 1 | of£con 2 | for£con 3 | de£con 4 | di£con 5 | von£con 6 | van£con 7 | &£con 8 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/othomatcher/def_art.lst: -------------------------------------------------------------------------------- 1 | The£def 2 | the£def 3 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/othomatcher/listsNM.def: -------------------------------------------------------------------------------- 1 | # cdg.lst:cdg 2 | ../gazetteer/org_ending.lst:cdg 3 | spur_match.lst:spur_match 4 | prepos.lst:prepos 5 | def_art.lst:def_art 6 | connnector.lst:connnector 7 | alias.lst:alias 8 | nickname.txt:nickname -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/othomatcher/prepos.lst: -------------------------------------------------------------------------------- 1 | of£prepos 2 | for£prepos 3 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/othomatcher/spur_match.lst: -------------------------------------------------------------------------------- 1 | Eastern Airways£1 2 | Eastern Air£1 3 | BT Cellnet£2 4 | BT Wireless£2 5 | BT£2 6 | 7 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/regex-splitter/external-split-patterns.txt: -------------------------------------------------------------------------------- 1 | //These are patterns for sentence splits 2 | // 3 | // Valentin Tablan, 24 Aug 2007 4 | // 5 | // 6 | // Lines starting with // are comments; empty lines are ignored 7 | 8 | //more than 2 new lines 9 | (?:[\u00A0\u2007\u202F\p{javaWhitespace}&&[^\n\r]])*(\n\r|\r\n|\n|\r)(?:(?:[\u00A0\u2007\u202F\p{javaWhitespace}&&[^\n\r]])*\1)+ 10 | 11 | //the end of the document is also an external split, so that there is no 12 | //orphaned text 13 | \s*\z 14 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/regex-splitter/internal-split-patterns.txt: -------------------------------------------------------------------------------- 1 | //These are patterns for sentence splits 2 | // 3 | // Valentin Tablan, 24 Aug 2007 4 | // 5 | // 6 | // Lines starting with // are comments; empty lines are ignored 7 | 8 | //between 1 and 3 full stops 9 | \.{1,3}"? 10 | 11 | //up to 4 ! or ? in sequence 12 | (!|\?){1,4}"? -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/schema/ANNIE-Schemas.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/schema/AddressSchema.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/schema/DateSchema.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/schema/IdentifierSchema.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/schema/LocationSchema.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/schema/MoneySchema.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/schema/OrganizationSchema.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/schema/PercentSchema.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/schema/PersonSchema.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/schema/PhoneSchema.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/schema/SentenceSchema.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/sentenceSplitter/gazetteer/abbreviations.lst: -------------------------------------------------------------------------------- 1 | AG 2 | APR 3 | Apr 4 | AUG 5 | Aug 6 | Adm 7 | Brig 8 | CO 9 | CORP 10 | Capt 11 | Cmdr 12 | Co 13 | Col 14 | Comdr 15 | DEC 16 | Dec 17 | DR 18 | Dr 19 | FEB 20 | Feb 21 | Fig 22 | FRI 23 | GMBH 24 | Gen 25 | Gov 26 | INC 27 | JAN 28 | Jan 29 | JUL 30 | Jul 31 | JUN 32 | Jun 33 | LTD 34 | Lt 35 | Ltd 36 | MAR 37 | Mar 38 | MON 39 | Mon 40 | MP 41 | Maj 42 | Mr 43 | Mrs 44 | Ms 45 | NA 46 | NOV 47 | Nov 48 | NV 49 | OCT 50 | Oct 51 | Oy 52 | PLC 53 | Prof 54 | Rep 55 | SA 56 | SAT 57 | Sat 58 | SEP 59 | Sep 60 | SIR 61 | SR 62 | SUN 63 | Sun 64 | Sen 65 | Sgt 66 | SpA 67 | St 68 | THU 69 | Thu 70 | THUR 71 | Thur 72 | TUE 73 | Tue 74 | VP 75 | WED 76 | Wed 77 | ad 78 | al 79 | b 80 | ed 81 | eds 82 | eg 83 | e.g 84 | (e.g 85 | [e.g 86 | et 87 | etc 88 | fig 89 | i.e 90 | (i.e 91 | [i.e 92 | p 93 | usu 94 | vs 95 | yr 96 | yrs 97 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/sentenceSplitter/gazetteer/lists.def: -------------------------------------------------------------------------------- 1 | abbreviations.lst:splitter_abbreviation 2 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/sentenceSplitter/grammar/cleanup.jape: -------------------------------------------------------------------------------- 1 | /* 2 | * cleanup.jape 3 | * 4 | * Copyright (c) 1998-2007, The University of Sheffield. 5 | * 6 | * This file is part of GATE (see http://gate.ac.uk/), and is free 7 | * software, licenced under the GNU Library General Public License, 8 | * Version 2, June 1991 (in the distribution as file licence.html, 9 | * and also available at http://gate.ac.uk/gate/licence.html). 10 | * 11 | * Valentin Tablan, March 7th, 2007 12 | * 13 | * $Id$ 14 | */ 15 | 16 | Phase: cleanup 17 | Input: Token 18 | Options: control = once 19 | 20 | //Removes temporary data created by the sentence splitter 21 | Rule: cleanUp 22 | {Token} 23 | --> 24 | { 25 | //if there were any sentences created, then we need to remove the document 26 | //feature -> useful for future runs 27 | doc.getFeatures().remove("temp-last-sentence-end"); 28 | //remove all lookups used for abbreviations 29 | FeatureMap constraints = Factory.newFeatureMap(); 30 | constraints.put("majorType", "splitter_abbreviation"); 31 | AnnotationSet toRemove = inputAS.get("Lookup", constraints); 32 | if(toRemove != null) inputAS.removeAll(toRemove); 33 | } 34 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/sentenceSplitter/grammar/main-single-nl.jape: -------------------------------------------------------------------------------- 1 | // SplitMain 2 | // Valentin Tablan 17/05/2001 3 | 4 | 5 | //A sentence splitter 6 | MultiPhase: main 7 | Phases: 8 | 9 | prepare 10 | find-single-nl 11 | split 12 | cleanup 13 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/sentenceSplitter/grammar/main.jape: -------------------------------------------------------------------------------- 1 | // SplitMain 2 | // Valentin Tablan 17/05/2001 3 | 4 | 5 | //A sentence splitter 6 | MultiPhase: main 7 | Phases: 8 | 9 | prepare 10 | find 11 | split 12 | cleanup 13 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/sentenceSplitter/grammar/no-splits.jape: -------------------------------------------------------------------------------- 1 | /* 2 | * no-splits.jape 3 | * 4 | * Copyright (c) 1998-2004, The University of Sheffield. 5 | * 6 | * This file is part of GATE (see http://gate.ac.uk/), and is free 7 | * software, licenced under the GNU Library General Public License, 8 | * Version 2, June 1991 (in the distribution as file licence.html, 9 | * and also available at http://gate.ac.uk/gate/licence.html). 10 | * 11 | * Valentin Tablan, 23 Jan 2007 12 | * 13 | * $Id$ 14 | */ 15 | 16 | //This grammar deals with documents that have no splits 17 | 18 | Phase:noSplits 19 | Input: Token Split 20 | Options: control = once 21 | 22 | Rule: blah 23 | {Token} 24 | --> 25 | { 26 | AnnotationSet splits = inputAS.get("Split"); 27 | if(splits == null || splits.isEmpty()){ 28 | outputAS.add(outputAS.firstNode(), outputAS.lastNode(), 29 | "TempNoSplitText", Factory.newFeatureMap()); 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /GATEFiles/plugins/ANNIE/resources/sentenceSplitter/grammar/prepare.jape: -------------------------------------------------------------------------------- 1 | /* 2 | * prepare.jape 3 | * 4 | * Copyright (c) 1998-2007, The University of Sheffield. 5 | * 6 | * This file is part of GATE (see http://gate.ac.uk/), and is free 7 | * software, licenced under the GNU Library General Public License, 8 | * Version 2, June 1991 (in the distribution as file licence.html, 9 | * and also available at http://gate.ac.uk/gate/licence.html). 10 | * 11 | * Valentin Tablan, June 22nd, 2007 12 | * 13 | * $Id$ 14 | */ 15 | 16 | Phase: prepare 17 | Input: Token 18 | Options: control = once 19 | 20 | //Makes sure there is no temporary data created by a previous run of the 21 | //sentence splitter 22 | Rule: cleanUp 23 | {Token} 24 | --> 25 | { 26 | //if there were any sentences created, then we need to remove the document 27 | //feature -> useful for future runs 28 | doc.getFeatures().remove("temp-last-sentence-end"); 29 | } 30 | -------------------------------------------------------------------------------- /GATEFiles/plugins/Crowd_Sourcing/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /GATEFiles/plugins/Crowd_Sourcing/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | GATE-plugin-Crowd_Sourcing 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.jdt.core.javanature 16 | 17 | 18 | -------------------------------------------------------------------------------- /GATEFiles/plugins/Crowd_Sourcing/creole.xml: -------------------------------------------------------------------------------- 1 | 2 | gate-crowd-sourcing.jar 3 | lib/gson-2.2.4.jar 4 | lib/formsrt.jar 5 | 6 | -------------------------------------------------------------------------------- /GATEFiles/plugins/Crowd_Sourcing/doc/javadoc/allclasses-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | All Classes (${plugin.name} JavaDoc) 7 | 8 | 9 | 10 | 11 |

All Classes

12 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /GATEFiles/plugins/Crowd_Sourcing/doc/javadoc/allclasses-noframe.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | All Classes (${plugin.name} JavaDoc) 7 | 8 | 9 | 10 | 11 |

All Classes

12 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /GATEFiles/plugins/Crowd_Sourcing/doc/javadoc/gate/crowdsource/classification/package-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | gate.crowdsource.classification (${plugin.name} JavaDoc) 7 | 8 | 9 | 10 | 11 |

gate.crowdsource.classification

12 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /GATEFiles/plugins/Crowd_Sourcing/doc/javadoc/gate/crowdsource/ne/package-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | gate.crowdsource.ne (${plugin.name} JavaDoc) 7 | 8 | 9 | 10 | 11 |

gate.crowdsource.ne

12 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /GATEFiles/plugins/Crowd_Sourcing/doc/javadoc/gate/crowdsource/package-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | gate.crowdsource (${plugin.name} JavaDoc) 7 | 8 | 9 | 10 | 11 |

gate.crowdsource

12 |
13 |

Interfaces

14 | 17 |
18 | 19 | 20 | -------------------------------------------------------------------------------- /GATEFiles/plugins/Crowd_Sourcing/doc/javadoc/gate/crowdsource/rest/package-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | gate.crowdsource.rest (${plugin.name} JavaDoc) 7 | 8 | 9 | 10 | 11 |

gate.crowdsource.rest

12 |
13 |

Classes

14 | 17 |
18 | 19 | 20 | -------------------------------------------------------------------------------- /GATEFiles/plugins/Crowd_Sourcing/doc/javadoc/overview-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Overview List (${plugin.name} JavaDoc) 7 | 8 | 9 | 10 | 11 | 12 | 21 |

 

22 | 23 | 24 | -------------------------------------------------------------------------------- /GATEFiles/plugins/Crowd_Sourcing/doc/javadoc/package-list: -------------------------------------------------------------------------------- 1 | gate.crowdsource 2 | gate.crowdsource.classification 3 | gate.crowdsource.ne 4 | gate.crowdsource.rest 5 | -------------------------------------------------------------------------------- /GATEFiles/plugins/Crowd_Sourcing/doc/javadoc/resources/background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/plugins/Crowd_Sourcing/doc/javadoc/resources/background.gif -------------------------------------------------------------------------------- /GATEFiles/plugins/Crowd_Sourcing/doc/javadoc/resources/tab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/plugins/Crowd_Sourcing/doc/javadoc/resources/tab.gif -------------------------------------------------------------------------------- /GATEFiles/plugins/Crowd_Sourcing/doc/javadoc/resources/titlebar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/plugins/Crowd_Sourcing/doc/javadoc/resources/titlebar.gif -------------------------------------------------------------------------------- /GATEFiles/plugins/Crowd_Sourcing/doc/javadoc/resources/titlebar_end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/plugins/Crowd_Sourcing/doc/javadoc/resources/titlebar_end.gif -------------------------------------------------------------------------------- /GATEFiles/plugins/Crowd_Sourcing/forms.jfpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/plugins/Crowd_Sourcing/forms.jfpr -------------------------------------------------------------------------------- /GATEFiles/plugins/Crowd_Sourcing/gate-crowd-sourcing.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/plugins/Crowd_Sourcing/gate-crowd-sourcing.jar -------------------------------------------------------------------------------- /GATEFiles/plugins/Crowd_Sourcing/lib/formsrt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/plugins/Crowd_Sourcing/lib/formsrt.jar -------------------------------------------------------------------------------- /GATEFiles/plugins/Crowd_Sourcing/lib/gson-2.2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/plugins/Crowd_Sourcing/lib/gson-2.2.4.jar -------------------------------------------------------------------------------- /GATEFiles/plugins/Crowd_Sourcing/src/gate/crowdsource/CrowdFlowerConstants.java: -------------------------------------------------------------------------------- 1 | /* 2 | * CrowdFlowerConstants.java 3 | * 4 | * Copyright (c) 1995-2014, The University of Sheffield. See the file 5 | * COPYRIGHT.txt in the software or at http://gate.ac.uk/gate/COPYRIGHT.txt 6 | * 7 | * This file is part of GATE (see http://gate.ac.uk/), and is free 8 | * software, licenced under the GNU Library General Public License, 9 | * Version 3, June 2007 (in the distribution as file licence.html, 10 | * and also available at http://gate.ac.uk/gate/licence.html). 11 | * 12 | * $Id: CrowdFlowerConstants.java 17412 2014-02-24 17:30:09Z ian_roberts $ 13 | */ 14 | package gate.crowdsource; 15 | 16 | public interface CrowdFlowerConstants { 17 | 18 | public static final String UNIT_ID_FEATURE_NAME = "cf_unit"; 19 | 20 | public static final String JUDGMENT_ID_FEATURE_NAME = "cf_judgment"; 21 | 22 | } 23 | -------------------------------------------------------------------------------- /GATEFiles/plugins/Crowd_Sourcing/src/gate/crowdsource/rest/gate-crowdflower.css: -------------------------------------------------------------------------------- 1 | /* highlight the target entity within the unit text */ 2 | .gate-entity { 3 | color: red; 4 | } 5 | 6 | /* rules to turn checkboxes into clickable words for annotation jobs */ 7 | .gate-snippet .cml_row { 8 | display: inline-block; 9 | float: left; 10 | } 11 | 12 | .gate-snippet label input { 13 | float: left; 14 | display: none; 15 | } 16 | 17 | .gate-snippet .checkboxes label input { 18 | margin-left:0; 19 | margin-right:0; 20 | } 21 | 22 | .gate-snippet label { 23 | padding: 3px; 24 | margin:0; 25 | } 26 | 27 | .gate-snippet label.selected { 28 | background: #0ff; 29 | } 30 | 31 | .gate-no-entities { 32 | padding-top: 10px; 33 | clear: both; 34 | } 35 | -------------------------------------------------------------------------------- /GATEFiles/plugins/Crowd_Sourcing/src/gate/crowdsource/rest/gate-crowdflower.js: -------------------------------------------------------------------------------- 1 | // CrowdFlower uses MooTools JS library 2 | $$('.gate-snippet').addEvent('change:relay(input)', function(e, target) { 3 | // when a checkbox inside an annotation snippet is checked or unchecked, toggle 4 | // the "selected" class on its containing label to match 5 | var parent = $$(target).getParents('label')[0]; 6 | parent.toggleClass('selected', target.checked); 7 | }); 8 | -------------------------------------------------------------------------------- /GATEFiles/plugins/DocumentNormalizer/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /GATEFiles/plugins/DocumentNormalizer/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | GATE-plugin-DocumentNormalizer 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.jdt.core.javanature 16 | 17 | 18 | -------------------------------------------------------------------------------- /GATEFiles/plugins/DocumentNormalizer/creole.xml: -------------------------------------------------------------------------------- 1 | 2 | doc-normalizer.jar 3 | 4 | -------------------------------------------------------------------------------- /GATEFiles/plugins/DocumentNormalizer/doc-normalizer.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/plugins/DocumentNormalizer/doc-normalizer.jar -------------------------------------------------------------------------------- /GATEFiles/plugins/DocumentNormalizer/doc/README.TXT: -------------------------------------------------------------------------------- 1 | A simple PR to allow for basic document normalization. Should usually be run as 2 | the first PR in a pipeline after Document Reset. The PR edits the document 3 | content and so once it has been run over a document once, future executions 4 | will have no effect although will require processing time. 5 | 6 | The PR works from a file of replacements. Essentially this file consists of 7 | pairs of lines. The first line specifics the text to replace, while the second 8 | line signifies what will be substituted in its place. The first line can be a 9 | regular expression, but back references cannot be used within the second line. 10 | 11 | The most common use for this PR is to normalise punctuation symbols as WYSIWYG 12 | editors often automatically replace standard apostrophe and hyphen symbols with 13 | more fancy versions. This makes processing text difficult as gazetteer lists, 14 | JAPE grammars and other resources usually assume the use of the standard 15 | symbols, i.e. the ones on the keyboard. The default config file is aimed at 16 | normalizing such cases. 17 | -------------------------------------------------------------------------------- /GATEFiles/plugins/DocumentNormalizer/doc/javadoc/allclasses-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | All Classes (Annotations As HTML Microdata JavaDoc) 7 | 8 | 9 | 10 | 11 |

All Classes

12 |
13 | 16 |
17 | 18 | 19 | -------------------------------------------------------------------------------- /GATEFiles/plugins/DocumentNormalizer/doc/javadoc/allclasses-noframe.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | All Classes (Annotations As HTML Microdata JavaDoc) 7 | 8 | 9 | 10 | 11 |

All Classes

12 |
13 | 16 |
17 | 18 | 19 | -------------------------------------------------------------------------------- /GATEFiles/plugins/DocumentNormalizer/doc/javadoc/gate/creole/package-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | gate.creole (Annotations As HTML Microdata JavaDoc) 7 | 8 | 9 | 10 | 11 |

gate.creole

12 |
13 |

Classes

14 | 17 |
18 | 19 | 20 | -------------------------------------------------------------------------------- /GATEFiles/plugins/DocumentNormalizer/doc/javadoc/package-list: -------------------------------------------------------------------------------- 1 | gate.creole 2 | -------------------------------------------------------------------------------- /GATEFiles/plugins/DocumentNormalizer/doc/javadoc/resources/background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/plugins/DocumentNormalizer/doc/javadoc/resources/background.gif -------------------------------------------------------------------------------- /GATEFiles/plugins/DocumentNormalizer/doc/javadoc/resources/tab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/plugins/DocumentNormalizer/doc/javadoc/resources/tab.gif -------------------------------------------------------------------------------- /GATEFiles/plugins/DocumentNormalizer/doc/javadoc/resources/titlebar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/plugins/DocumentNormalizer/doc/javadoc/resources/titlebar.gif -------------------------------------------------------------------------------- /GATEFiles/plugins/DocumentNormalizer/doc/javadoc/resources/titlebar_end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/plugins/DocumentNormalizer/doc/javadoc/resources/titlebar_end.gif -------------------------------------------------------------------------------- /GATEFiles/plugins/DocumentNormalizer/resources/replacements.lst: -------------------------------------------------------------------------------- 1 | ’ 2 | ' 3 | — 4 | - 5 | – 6 | - 7 | -------------------------------------------------------------------------------- /GATEFiles/plugins/Information_Retrieval/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /GATEFiles/plugins/Information_Retrieval/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | GATE-plugin-Information_Retrieval 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.jdt.core.javanature 16 | 17 | 18 | -------------------------------------------------------------------------------- /GATEFiles/plugins/Information_Retrieval/Information_Retrieval.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/plugins/Information_Retrieval/Information_Retrieval.jar -------------------------------------------------------------------------------- /GATEFiles/plugins/Information_Retrieval/creole.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | lib/lucene-core-3.5.0.jar 5 | Information_Retrieval.jar 6 | 7 | 8 | 9 | SearchPR 10 | gate.creole.ir.SearchPR 11 | Provides IR functionality. 12 | http://gate.ac.uk/userguide/sec:misc-creole:ir 13 | 15 | gate.creole.ir.IndexedCorpus 16 | 17 | java.lang.String 18 | java.lang.Integer 20 | 22 | java.util.ArrayList 23 | java.lang.String 26 | binoculars.gif 27 | 28 | 29 | 30 | Search Results 31 | gate.gui.SearchPRViewer 32 | Viewer for IR search results 33 | 34 | 35 | 36 | gate.creole.ir.SearchPR 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /GATEFiles/plugins/Information_Retrieval/doc/javadoc/allclasses-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | All Classes (Information_Retrieval JavaDoc) 7 | 8 | 9 | 10 | 11 |

All Classes

12 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /GATEFiles/plugins/Information_Retrieval/doc/javadoc/allclasses-noframe.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | All Classes (Information_Retrieval JavaDoc) 7 | 8 | 9 | 10 | 11 |

All Classes

12 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /GATEFiles/plugins/Information_Retrieval/doc/javadoc/gate/creole/ir/lucene/package-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | gate.creole.ir.lucene (Information_Retrieval JavaDoc) 7 | 8 | 9 | 10 | 11 |

gate.creole.ir.lucene

12 |
13 |

Classes

14 | 20 |
21 | 22 | 23 | -------------------------------------------------------------------------------- /GATEFiles/plugins/Information_Retrieval/doc/javadoc/gate/creole/ir/package-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | gate.creole.ir (Information_Retrieval JavaDoc) 7 | 8 | 9 | 10 | 11 |

gate.creole.ir

12 |
13 |

Classes

14 | 19 |
20 | 21 | 22 | -------------------------------------------------------------------------------- /GATEFiles/plugins/Information_Retrieval/doc/javadoc/gate/gui/package-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | gate.gui (Information_Retrieval JavaDoc) 7 | 8 | 9 | 10 | 11 |

gate.gui

12 |
13 |

Classes

14 | 17 |
18 | 19 | 20 | -------------------------------------------------------------------------------- /GATEFiles/plugins/Information_Retrieval/doc/javadoc/overview-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Overview List (Information_Retrieval JavaDoc) 7 | 8 | 9 | 10 | 11 | 12 |
13 |

Packages

14 | 19 |
20 |

 

21 | 22 | 23 | -------------------------------------------------------------------------------- /GATEFiles/plugins/Information_Retrieval/doc/javadoc/package-list: -------------------------------------------------------------------------------- 1 | gate.creole.ir 2 | gate.creole.ir.lucene 3 | gate.gui 4 | -------------------------------------------------------------------------------- /GATEFiles/plugins/Information_Retrieval/doc/javadoc/resources/background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/plugins/Information_Retrieval/doc/javadoc/resources/background.gif -------------------------------------------------------------------------------- /GATEFiles/plugins/Information_Retrieval/doc/javadoc/resources/tab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/plugins/Information_Retrieval/doc/javadoc/resources/tab.gif -------------------------------------------------------------------------------- /GATEFiles/plugins/Information_Retrieval/doc/javadoc/resources/titlebar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/plugins/Information_Retrieval/doc/javadoc/resources/titlebar.gif -------------------------------------------------------------------------------- /GATEFiles/plugins/Information_Retrieval/doc/javadoc/resources/titlebar_end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/plugins/Information_Retrieval/doc/javadoc/resources/titlebar_end.gif -------------------------------------------------------------------------------- /GATEFiles/plugins/Information_Retrieval/lib/lucene-core-3.5.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/plugins/Information_Retrieval/lib/lucene-core-3.5.0.jar -------------------------------------------------------------------------------- /GATEFiles/plugins/Information_Retrieval/src/gate/creole/ir/lucene/LuceneIREngine.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1995-2012, The University of Sheffield. See the file 3 | * COPYRIGHT.txt in the software or at http://gate.ac.uk/gate/COPYRIGHT.txt 4 | * 5 | * This file is part of GATE (see http://gate.ac.uk/), and is free 6 | * software, licenced under the GNU Library General Public License, 7 | * Version 2, June 1991 (in the distribution as file licence.html, 8 | * and also available at http://gate.ac.uk/gate/licence.html). 9 | * 10 | * Valentin Tablan 17/05/2002 11 | * 12 | * $Id: LuceneIREngine.java 17841 2014-04-16 12:35:41Z markagreenwood $ 13 | * 14 | */ 15 | package gate.creole.ir.lucene; 16 | 17 | import gate.Gate; 18 | import gate.creole.AbstractResource; 19 | import gate.creole.ir.IREngine; 20 | import gate.creole.ir.IndexManager; 21 | import gate.creole.ir.Search; 22 | import gate.creole.metadata.AutoInstance; 23 | import gate.creole.metadata.CreoleResource; 24 | 25 | /** 26 | * The lucene IR engine. 27 | * Packages a {@link LuceneIndexManager} and a {@link LuceneSearch}. 28 | */ 29 | @CreoleResource(name = "Lucene IR Engine", tool = true, autoinstances = @AutoInstance) 30 | public class LuceneIREngine extends AbstractResource implements IREngine{ 31 | 32 | private static final long serialVersionUID = -152880506664125169L; 33 | 34 | static { 35 | try { 36 | Gate.registerIREngine(LuceneIREngine.class.getName()); 37 | } 38 | catch(Exception cnfe) { 39 | throw new RuntimeException(cnfe); 40 | } 41 | } 42 | 43 | public LuceneIREngine() { 44 | search = new LuceneSearch(); 45 | indexManager = new LuceneIndexManager(); 46 | } 47 | 48 | @Override 49 | public Search getSearch() { 50 | return search; 51 | } 52 | 53 | @Override 54 | public IndexManager getIndexmanager() { 55 | return indexManager; 56 | } 57 | 58 | @Override 59 | public String getName(){ 60 | return "Lucene IR engine"; 61 | } 62 | 63 | Search search; 64 | IndexManager indexManager; 65 | 66 | } -------------------------------------------------------------------------------- /GATEFiles/plugins/Information_Retrieval/src/gate/creole/ir/lucene/LuceneIndexStatistics.java: -------------------------------------------------------------------------------- 1 | /* 2 | * LuceneIndexStatistics.java 3 | * 4 | * Copyright (c) 1995-2012, The University of Sheffield. See the file 5 | * COPYRIGHT.txt in the software or at http://gate.ac.uk/gate/COPYRIGHT.txt 6 | * 7 | * This file is part of GATE (see http://gate.ac.uk/), and is free 8 | * software, licenced under the GNU Library General Public License, 9 | * Version 2, June 1991 (in the distribution as file licence.html, 10 | * and also available at http://gate.ac.uk/gate/licence.html). 11 | * 12 | * Rosen Marinov, 19/Apr/2002 13 | * 14 | */ 15 | 16 | package gate.creole.ir.lucene; 17 | 18 | import gate.creole.ir.IndexStatistics; 19 | 20 | import java.util.Map; 21 | 22 | public class LuceneIndexStatistics implements IndexStatistics { 23 | 24 | public LuceneIndexStatistics(){ 25 | } 26 | 27 | @Override 28 | public Long getTermCount(){ 29 | //NOT IMPLEMENTED YET 30 | return null; 31 | } 32 | 33 | @Override 34 | public Long getUniqueTermCount(){ 35 | //NOT IMPLEMENTED YET 36 | return null; 37 | } 38 | 39 | @Override 40 | public Long getExhaustivity(Long docID, String fieldName){ 41 | //NOT IMPLEMENTED YET 42 | return null; 43 | } 44 | 45 | @Override 46 | public Long getSpecificity(String term){ 47 | //NOT IMPLEMENTED YET 48 | return null; 49 | } 50 | 51 | @SuppressWarnings("rawtypes") 52 | @Override 53 | public Map getTermFrequency(Long docID, String fieldName){ 54 | //NOT IMPLEMENTED YET 55 | return null; 56 | } 57 | 58 | } -------------------------------------------------------------------------------- /GATEFiles/plugins/Keyphrase_Extraction_Algorithm/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /GATEFiles/plugins/Keyphrase_Extraction_Algorithm/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | GATE-plugin-Keyphrase_Extraction_Algorithm 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.jdt.core.javanature 16 | 17 | 18 | -------------------------------------------------------------------------------- /GATEFiles/plugins/Keyphrase_Extraction_Algorithm/ACKNOWLEDGMENTS: -------------------------------------------------------------------------------- 1 | This product includes software developed by the 2 | Apache Software Foundation (http://www.apache.org/). 3 | -------------------------------------------------------------------------------- /GATEFiles/plugins/Keyphrase_Extraction_Algorithm/doc/javadoc/allclasses-noframe.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | All Classes (${plugin.name} JavaDoc) 7 | 8 | 9 | 10 | 11 |

All Classes

12 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /GATEFiles/plugins/Keyphrase_Extraction_Algorithm/doc/javadoc/gate/creole/kea/package-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | gate.creole.kea (${plugin.name} JavaDoc) 7 | 8 | 9 | 10 | 11 |

gate.creole.kea

12 |
13 |

Classes

14 | 18 |
19 | 20 | 21 | -------------------------------------------------------------------------------- /GATEFiles/plugins/Keyphrase_Extraction_Algorithm/doc/javadoc/kea/package-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | kea (${plugin.name} JavaDoc) 7 | 8 | 9 | 10 | 11 |

kea

12 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /GATEFiles/plugins/Keyphrase_Extraction_Algorithm/doc/javadoc/overview-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Overview List (${plugin.name} JavaDoc) 7 | 8 | 9 | 10 | 11 | 12 |
13 |

Packages

14 | 18 |
19 |

 

20 | 21 | 22 | -------------------------------------------------------------------------------- /GATEFiles/plugins/Keyphrase_Extraction_Algorithm/doc/javadoc/package-list: -------------------------------------------------------------------------------- 1 | gate.creole.kea 2 | kea 3 | -------------------------------------------------------------------------------- /GATEFiles/plugins/Keyphrase_Extraction_Algorithm/doc/javadoc/resources/background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/plugins/Keyphrase_Extraction_Algorithm/doc/javadoc/resources/background.gif -------------------------------------------------------------------------------- /GATEFiles/plugins/Keyphrase_Extraction_Algorithm/doc/javadoc/resources/tab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/plugins/Keyphrase_Extraction_Algorithm/doc/javadoc/resources/tab.gif -------------------------------------------------------------------------------- /GATEFiles/plugins/Keyphrase_Extraction_Algorithm/doc/javadoc/resources/titlebar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/plugins/Keyphrase_Extraction_Algorithm/doc/javadoc/resources/titlebar.gif -------------------------------------------------------------------------------- /GATEFiles/plugins/Keyphrase_Extraction_Algorithm/doc/javadoc/resources/titlebar_end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/plugins/Keyphrase_Extraction_Algorithm/doc/javadoc/resources/titlebar_end.gif -------------------------------------------------------------------------------- /GATEFiles/plugins/Keyphrase_Extraction_Algorithm/kea.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/plugins/Keyphrase_Extraction_Algorithm/kea.jar -------------------------------------------------------------------------------- /GATEFiles/plugins/Keyphrase_Extraction_Algorithm/lib/weka-3.4.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/GATEFiles/plugins/Keyphrase_Extraction_Algorithm/lib/weka-3.4.6.jar -------------------------------------------------------------------------------- /GATEFiles/plugins/Keyphrase_Extraction_Algorithm/src/kea/Counter.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Counter.java 3 | * Copyright (C) 2000 Eibe Frank 4 | * 5 | * This program is free software; you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation; either version 2 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program; if not, write to the Free Software 17 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 18 | */ 19 | 20 | package kea; 21 | 22 | import java.io.*; 23 | 24 | /** 25 | * Class that implements a simple counter. 26 | * 27 | * @author Eibe Frank (eibe@cs.waikato.ac.nz) 28 | * @version 1.0 29 | */ 30 | @SuppressWarnings("serial") 31 | public class Counter implements Serializable { 32 | 33 | /** Integer value stored */ 34 | private int m_val = 1; 35 | 36 | /** 37 | * Initializes the counter to 1 38 | */ 39 | public Counter() { 40 | 41 | m_val = 1; 42 | } 43 | 44 | /** 45 | * Initializes the counter to the given value 46 | */ 47 | public Counter(int val) { 48 | 49 | m_val = val; 50 | } 51 | 52 | /** 53 | * Increments the counter. 54 | */ 55 | public void increment() { 56 | 57 | m_val++; 58 | } 59 | 60 | /** 61 | * Gets the value. 62 | * @return the value 63 | */ 64 | public int value() { 65 | 66 | return m_val; 67 | } 68 | 69 | /** 70 | * Returns string containing value. 71 | */ 72 | public String toString() { 73 | 74 | return String.valueOf(m_val); 75 | } 76 | } 77 | -------------------------------------------------------------------------------- /GATEFiles/plugins/Keyphrase_Extraction_Algorithm/src/kea/Stemmer.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Stemmer.java 3 | * Copyright (C) 2001 Eibe Frank 4 | * 5 | * This program is free software; you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation; either version 2 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program; if not, write to the Free Software 17 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 18 | */ 19 | 20 | package kea; 21 | 22 | import java.io.Serializable; 23 | 24 | /** 25 | * Abstract class for stemmers. 26 | * 27 | * @author Eibe Frank (eibe@cs.waikato.ac.nz) 28 | * @version 1.0 29 | */ 30 | @SuppressWarnings("serial") 31 | public abstract class Stemmer implements Serializable { 32 | 33 | /** 34 | * Iterated stemming of the given word. 35 | */ 36 | public abstract String stem(String str); 37 | 38 | /** 39 | * Stems everything in the given string. 40 | */ 41 | public String stemString(String str) { 42 | 43 | StringBuffer result = new StringBuffer(); 44 | int start = -1; 45 | for (int j = 0; j < str.length(); j++) { 46 | char c = str.charAt(j); 47 | if (Character.isLetterOrDigit(c)) { 48 | if (start == -1) { 49 | start = j; 50 | } 51 | } else if (c == '\'') { 52 | if (start == -1) { 53 | result.append(c); 54 | } 55 | } else { 56 | if (start != -1) { 57 | result.append(stem(str.substring(start, j))); 58 | start = -1; 59 | } 60 | result.append(c); 61 | } 62 | } 63 | if (start != -1) { 64 | result.append(stem(str.substring(start, str.length()))); 65 | } 66 | return result.toString(); 67 | } 68 | } 69 | 70 | 71 | -------------------------------------------------------------------------------- /GATEFiles/plugins/Keyphrase_Extraction_Algorithm/src/kea/Stopwords.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Stopwords.java 3 | * Copyright (C) 2001 Eibe Frank 4 | * 5 | * This program is free software; you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation; either version 2 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program; if not, write to the Free Software 17 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 18 | */ 19 | 20 | package kea; 21 | 22 | import java.io.Serializable; 23 | 24 | /** 25 | * Class that can test whether a given string is a stop word. 26 | * Lowercases all words before the test. 27 | * 28 | * @author Eibe Frank (eibe@cs.waikato.ac.nz) 29 | * @version 1.0 30 | */ 31 | @SuppressWarnings("serial") 32 | public abstract class Stopwords implements Serializable { 33 | 34 | /** 35 | * Returns true if the given string is a stop word. 36 | */ 37 | public abstract boolean isStopword(String str); 38 | } 39 | 40 | 41 | -------------------------------------------------------------------------------- /JAPEGrammars/EmailFinder.jape: -------------------------------------------------------------------------------- 1 | Phase: EmailFinder 2 | Input: Address 3 | Options: control = appelt debug = false 4 | Rule: EmailRule 5 | ( 6 | {Address.kind == email,Address.ruleFinal == EmailFinal} 7 | ) 8 | :emailLookup 9 | --> 10 | { 11 | AnnotationSet addressSet = bindings.get("emailLookup"); 12 | AnnotationSet profileSection = inputAS.get("ProfileSection"); 13 | 14 | if(addressSet != null && addressSet.size() > 0){ 15 | //Try to find the address within the most probable location (first 10 lines of the document; a.k.a within the first page) 16 | AnnotationSet addresses = addressSet.getContained(profileSection.firstNode().getOffset(),profileSection.lastNode().getOffset()); 17 | if(addresses != null && addresses.size() > 0 && addressSet.lastNode().getOffset() <= profileSection.lastNode().getOffset()){ 18 | FeatureMap features = Factory.newFeatureMap(); 19 | features.put("rule","EmailRule"); 20 | features.put("kind","email"); 21 | outputAS.add(addresses.firstNode(),addresses.lastNode(),"EmailFinder",features); 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /JAPEGrammars/PhoneFinder.jape: -------------------------------------------------------------------------------- 1 | Phase: PhoneFinder 2 | Input: Address 3 | Options: control = appelt debug = false 4 | Rule: PhoneRule 5 | ( 6 | {Address.kind == phone,Address.ruleFinal == PhoneFinal} 7 | ) 8 | :phoneLookup 9 | --> 10 | { 11 | AnnotationSet addressSet = bindings.get("phoneLookup"); 12 | AnnotationSet profileSection = inputAS.get("ProfileSection"); 13 | 14 | if(addressSet != null && addressSet.size() > 0){ 15 | //Try to find the address within the most probable location (first 10 lines of the document; a.k.a within the first page) 16 | AnnotationSet addresses = addressSet.getContained(profileSection.firstNode().getOffset(),profileSection.lastNode().getOffset()); 17 | if(addresses != null && addresses.size() > 0 && addressSet.lastNode().getOffset() <= profileSection.lastNode().getOffset()){ 18 | FeatureMap features = Factory.newFeatureMap(); 19 | features.put("rule","PhoneRule"); 20 | features.put("kind","phone"); 21 | outputAS.add(addresses.firstNode(),addresses.lastNode(),"PhoneFinder",features); 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /JAPEGrammars/ProfileSection.jape: -------------------------------------------------------------------------------- 1 | Phase: ProfileSection 2 | Input: Sentence 3 | Options: control = once debug = true 4 | 5 | Rule: MarkProfileSection 6 | ( 7 | (({Sentence})[10]) 8 | ):profileSection 9 | --> 10 | :profileSection.ProfileSection = {} 11 | -------------------------------------------------------------------------------- /JAPEGrammars/SectionBodyFinderPre.jape: -------------------------------------------------------------------------------- 1 | Phase: SectionBodyFinderPre 2 | Input: SectionHeadingFinder WorkExperienceFinder 3 | Options: control = appelt debug = false 4 | 5 | Rule: SectionBodyPreRule 6 | ( 7 | {SectionHeadingFinder}|{WorkExperienceFinder} 8 | ) 9 | :sectionOrExpPre 10 | --> 11 | { 12 | long offset = bindings.get("sectionOrExpPre").firstNode().getOffset(); 13 | doc.getFeatures().put("lastSectionWorkExOffSet",offset); 14 | } 15 | -------------------------------------------------------------------------------- /JAPEGrammars/TitleFinder.jape: -------------------------------------------------------------------------------- 1 | Phase: TitleFinder 2 | Input: Lookup 3 | Options: control = once debug = false 4 | 5 | Rule: TitleRule 6 | ( 7 | {Lookup.majorType == jobtitle} 8 | ):titleLookup 9 | --> 10 | { 11 | AnnotationSet titleSet = bindings.get("titleLookup"); 12 | AnnotationSet profileSection = inputAS.get("ProfileSection"); 13 | 14 | if(titleSet != null && titleSet.size() > 0){ 15 | //Try to find the title within the most probable location (first 10 lines of the document; a.k.a within the first page) 16 | AnnotationSet titles = titleSet.getContained(profileSection.firstNode().getOffset(),profileSection.lastNode().getOffset()); 17 | if(titles != null && titles.size() > 0){ 18 | Annotation title = titles.iterator().next(); 19 | FeatureMap features = title.getFeatures(); 20 | features.put("rule","TitleRule"); 21 | features.put("kind","title"); 22 | outputAS.add(title.getStartNode(),title.getEndNode(),"TitleFinder",features); 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /JAPEGrammars/URLFinder.jape: -------------------------------------------------------------------------------- 1 | Phase: URLFinder 2 | Input: Address 3 | Options: control = appelt debug = false 4 | Rule: URLRule 5 | ( 6 | {Address.kind == url} 7 | ) 8 | :urlSection 9 | --> 10 | { 11 | AnnotationSet addressSet = bindings.get("urlSection"); 12 | AnnotationSet profileSection = inputAS.get("ProfileSection"); 13 | 14 | if(addressSet != null && addressSet.size() > 0){ 15 | //Try to find the URL address within the most probable location (first 10 lines of the document; a.k.a within the first page) 16 | AnnotationSet addresses = addressSet.getContained(profileSection.firstNode().getOffset(),profileSection.lastNode().getOffset()); 17 | if(addresses != null && addresses.size() > 0 && addressSet.lastNode().getOffset() <= profileSection.lastNode().getOffset()){ 18 | FeatureMap features = Factory.newFeatureMap(); 19 | features.put("rule","URLRule"); 20 | features.put("kind","url"); 21 | outputAS.add(addresses.firstNode(),addresses.lastNode(),"URLFinder",features); 22 | } 23 | } 24 | } 25 | 26 | -------------------------------------------------------------------------------- /JAPEGrammars/main.jape: -------------------------------------------------------------------------------- 1 | /* 2 | * main.jape 3 | * 4 | */ 5 | 6 | MultiPhase: ResumeParser 7 | Phases: 8 | ProfileSection 9 | NameFinder 10 | EmailFinder 11 | PhoneFinder 12 | AddressFinder 13 | URLFinder 14 | TitleFinder 15 | SectionHeadingFinder 16 | WorkExperienceFinder 17 | SectionBodyFinderPre 18 | SectionBodyFinder 19 | 20 | -------------------------------------------------------------------------------- /ResumeTransducer/README: -------------------------------------------------------------------------------- 1 | ResumeTransducer 2 | 3 | This directory has been created by the GATE bootstrap wizard. 4 | The following files and directories have been created: 5 | 6 | ResumeTransducer/ 7 | | 8 | +-- src/ 9 | | put all your Java sources in here. 10 | +-- resources/ 11 | | any external files used by your plugin (e.g. configuration files, 12 | | JAPE grammars, gazetteer lists, etc.) go in here. 13 | +-- build.xml 14 | | Ant build file for building your plugin. 15 | +-- build.properties 16 | | property definitions that control the build process go in here, 17 | | in particular, make sure that gate.home points to your copy of GATE. 18 | +-- creole.xml 19 | plugin configuration file for GATE - edit this to add parameters, etc., 20 | for your resources. 21 | 22 | To build your plugin you can use Ant: 23 | 24 | ant jar 25 | 26 | This will compile the Java code and package the classes into a JAR file. The 27 | build file also has a target to create JavaDoc documentation - "ant javadoc". 28 | If you run Ant without any arguments it will build everything in one pass. 29 | 30 | The build process creates additional files and directories: 31 | 32 | ResumeTransducer/ 33 | | 34 | +-- classes/ 35 | | compiled classes are placed in here. 36 | +-- doc/ 37 | | +-- javadoc/ 38 | +-- ResumeTransducer.jar 39 | -------------------------------------------------------------------------------- /ResumeTransducer/UnitTests/AntonyDeepakThomas.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/ResumeTransducer/UnitTests/AntonyDeepakThomas.pdf -------------------------------------------------------------------------------- /ResumeTransducer/bin/ResumeTransducer.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/ResumeTransducer/bin/ResumeTransducer.jar -------------------------------------------------------------------------------- /ResumeTransducer/build.properties: -------------------------------------------------------------------------------- 1 | # build.properties for ResumeTransducer 2 | # 3 | # NOTE: plugins included in the GATE default plugin directory should 4 | # work without this file being modified. This file should not be 5 | # checked into the subversion repository in order to allow different 6 | # settings for different people. 7 | 8 | # gate.home - the location of your top-level GATE directory 9 | # If your plugin is not located in the default plugins directory 10 | # of gate (GATEHOME/plugins/) the full path of the GATE home direcoty 11 | # should be specified here. 12 | # 13 | #gate.home=C:\Program Files\GATE_Developer_8.0 14 | 15 | # The name of this plugin. 16 | # If you want to overwrite the name as specified in the build.xml file, 17 | # you can do it here. 18 | #plugin.name=ResumeTransducer 19 | 20 | # All other settings in the build.xml file can be overwritten here ... 21 | # 22 | -------------------------------------------------------------------------------- /ResumeTransducer/classes/code4goal/antony/resumeparser/Annie.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/ResumeTransducer/classes/code4goal/antony/resumeparser/Annie.class -------------------------------------------------------------------------------- /ResumeTransducer/classes/code4goal/antony/resumeparser/ResumeParserProgram.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/ResumeTransducer/classes/code4goal/antony/resumeparser/ResumeParserProgram.class -------------------------------------------------------------------------------- /ResumeTransducer/creole.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | ResumeTransducer.jar 12 | 13 | -------------------------------------------------------------------------------- /ResumeTransducer/doc/javadoc/allclasses-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | All Classes (ResumeTransducer JavaDoc) 7 | 8 | 9 | 10 | 11 | 12 |

All Classes

13 |
14 | 17 |
18 | 19 | 20 | -------------------------------------------------------------------------------- /ResumeTransducer/doc/javadoc/allclasses-noframe.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | All Classes (ResumeTransducer JavaDoc) 7 | 8 | 9 | 10 | 11 | 12 |

All Classes

13 |
14 | 17 |
18 | 19 | 20 | -------------------------------------------------------------------------------- /ResumeTransducer/doc/javadoc/code4goal/antony/resumeparser/package-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | code4goal.antony.resumeparser (ResumeTransducer JavaDoc) 7 | 8 | 9 | 10 | 11 | 12 |

code4goal.antony.resumeparser

13 |
14 |

Classes

15 | 18 |
19 | 20 | 21 | -------------------------------------------------------------------------------- /ResumeTransducer/doc/javadoc/package-list: -------------------------------------------------------------------------------- 1 | code4goal.antony.resumeparser 2 | -------------------------------------------------------------------------------- /ResumeTransducer/doc/javadoc/script.js: -------------------------------------------------------------------------------- 1 | function show(type) 2 | { 3 | count = 0; 4 | for (var key in methods) { 5 | var row = document.getElementById(key); 6 | if ((methods[key] & type) != 0) { 7 | row.style.display = ''; 8 | row.className = (count++ % 2) ? rowColor : altColor; 9 | } 10 | else 11 | row.style.display = 'none'; 12 | } 13 | updateTabs(type); 14 | } 15 | 16 | function updateTabs(type) 17 | { 18 | for (var value in tabs) { 19 | var sNode = document.getElementById(tabs[value][0]); 20 | var spanNode = sNode.firstChild; 21 | if (value == type) { 22 | sNode.className = activeTableTab; 23 | spanNode.innerHTML = tabs[value][1]; 24 | } 25 | else { 26 | sNode.className = tableTab; 27 | spanNode.innerHTML = "" + tabs[value][1] + ""; 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /ResumeTransducer/lib/json-simple-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/ResumeTransducer/lib/json-simple-1.1.1.jar -------------------------------------------------------------------------------- /ResumeTransducer/lib/tika-app-1.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogsbread/ResumeParser/3f225133c2c658a988fbecbd03f8e779cae2843c/ResumeTransducer/lib/tika-app-1.7.jar --------------------------------------------------------------------------------