├── LICENSE ├── MANIFEST.in ├── README.md ├── dispatcher.py ├── en ├── accounting │ ├── ifrs_iasb.csv │ ├── uk_gaap.csv │ ├── us_fasb.csv │ ├── us_gaap.csv │ └── us_gasb.csv ├── financial │ └── financial.csv ├── geopolitical │ ├── au_regulators.csv │ ├── ca_regulators.csv │ ├── uk_regulators.csv │ └── us_state_regulators.csv ├── legal │ ├── au_courts.csv │ ├── ca_courts.csv │ ├── common_US_terms_top1000.csv │ ├── common_law.csv │ ├── common_top_law_terms.csv │ ├── real_estate.csv │ ├── us_cfr.csv │ ├── us_courts.csv │ ├── us_federal_acts.csv │ ├── us_state_code_citations.csv │ ├── us_state_courts.csv │ └── us_usc.csv ├── medical │ └── download_icd_2017.sh ├── scientific │ └── us_hazardous_waste.csv └── word2vec │ ├── w2v_cbow_all_size100_window10 │ ├── w2v_cbow_all_size100_window20 │ ├── w2v_cbow_all_size100_window5 │ ├── w2v_cbow_all_size200_window10 │ ├── w2v_cbow_all_size200_window20 │ ├── w2v_cbow_all_size200_window5 │ ├── w2v_cbow_all_size300_window10 │ ├── w2v_cbow_all_size300_window20 │ ├── w2v_cbow_all_size300_window5 │ ├── w2v_cbow_all_size50_window10 │ ├── w2v_cbow_all_size50_window20 │ ├── w2v_cbow_all_size50_window5 │ ├── w2v_cbow_credit_size200_window10 │ ├── w2v_cbow_employment_size200_window10 │ ├── w2v_cbow_lease_size200_window10 │ ├── w2v_cbow_services_size200_window10 │ └── w2v_cbow_underwriting_size200_window10 ├── multi ├── geopolitical │ ├── geopolitical_divisions.csv │ ├── geopolitical_relationships.csv │ └── us_federal_regulators.csv ├── legal │ └── de_courts.csv └── scientific │ ├── chemical_compounds.csv │ └── chemical_elements.csv └── sources └── blacks_second_edition ├── blacks_second_edition_terms.csv ├── blacks_second_edition_terms.json └── blacks_second_edition_terms.xls /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/README.md -------------------------------------------------------------------------------- /dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/dispatcher.py -------------------------------------------------------------------------------- /en/accounting/ifrs_iasb.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/accounting/ifrs_iasb.csv -------------------------------------------------------------------------------- /en/accounting/uk_gaap.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/accounting/uk_gaap.csv -------------------------------------------------------------------------------- /en/accounting/us_fasb.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/accounting/us_fasb.csv -------------------------------------------------------------------------------- /en/accounting/us_gaap.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/accounting/us_gaap.csv -------------------------------------------------------------------------------- /en/accounting/us_gasb.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/accounting/us_gasb.csv -------------------------------------------------------------------------------- /en/financial/financial.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/financial/financial.csv -------------------------------------------------------------------------------- /en/geopolitical/au_regulators.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/geopolitical/au_regulators.csv -------------------------------------------------------------------------------- /en/geopolitical/ca_regulators.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/geopolitical/ca_regulators.csv -------------------------------------------------------------------------------- /en/geopolitical/uk_regulators.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/geopolitical/uk_regulators.csv -------------------------------------------------------------------------------- /en/geopolitical/us_state_regulators.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/geopolitical/us_state_regulators.csv -------------------------------------------------------------------------------- /en/legal/au_courts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/legal/au_courts.csv -------------------------------------------------------------------------------- /en/legal/ca_courts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/legal/ca_courts.csv -------------------------------------------------------------------------------- /en/legal/common_US_terms_top1000.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/legal/common_US_terms_top1000.csv -------------------------------------------------------------------------------- /en/legal/common_law.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/legal/common_law.csv -------------------------------------------------------------------------------- /en/legal/common_top_law_terms.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/legal/common_top_law_terms.csv -------------------------------------------------------------------------------- /en/legal/real_estate.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/legal/real_estate.csv -------------------------------------------------------------------------------- /en/legal/us_cfr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/legal/us_cfr.csv -------------------------------------------------------------------------------- /en/legal/us_courts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/legal/us_courts.csv -------------------------------------------------------------------------------- /en/legal/us_federal_acts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/legal/us_federal_acts.csv -------------------------------------------------------------------------------- /en/legal/us_state_code_citations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/legal/us_state_code_citations.csv -------------------------------------------------------------------------------- /en/legal/us_state_courts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/legal/us_state_courts.csv -------------------------------------------------------------------------------- /en/legal/us_usc.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/legal/us_usc.csv -------------------------------------------------------------------------------- /en/medical/download_icd_2017.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/medical/download_icd_2017.sh -------------------------------------------------------------------------------- /en/scientific/us_hazardous_waste.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/scientific/us_hazardous_waste.csv -------------------------------------------------------------------------------- /en/word2vec/w2v_cbow_all_size100_window10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/word2vec/w2v_cbow_all_size100_window10 -------------------------------------------------------------------------------- /en/word2vec/w2v_cbow_all_size100_window20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/word2vec/w2v_cbow_all_size100_window20 -------------------------------------------------------------------------------- /en/word2vec/w2v_cbow_all_size100_window5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/word2vec/w2v_cbow_all_size100_window5 -------------------------------------------------------------------------------- /en/word2vec/w2v_cbow_all_size200_window10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/word2vec/w2v_cbow_all_size200_window10 -------------------------------------------------------------------------------- /en/word2vec/w2v_cbow_all_size200_window20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/word2vec/w2v_cbow_all_size200_window20 -------------------------------------------------------------------------------- /en/word2vec/w2v_cbow_all_size200_window5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/word2vec/w2v_cbow_all_size200_window5 -------------------------------------------------------------------------------- /en/word2vec/w2v_cbow_all_size300_window10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/word2vec/w2v_cbow_all_size300_window10 -------------------------------------------------------------------------------- /en/word2vec/w2v_cbow_all_size300_window20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/word2vec/w2v_cbow_all_size300_window20 -------------------------------------------------------------------------------- /en/word2vec/w2v_cbow_all_size300_window5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/word2vec/w2v_cbow_all_size300_window5 -------------------------------------------------------------------------------- /en/word2vec/w2v_cbow_all_size50_window10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/word2vec/w2v_cbow_all_size50_window10 -------------------------------------------------------------------------------- /en/word2vec/w2v_cbow_all_size50_window20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/word2vec/w2v_cbow_all_size50_window20 -------------------------------------------------------------------------------- /en/word2vec/w2v_cbow_all_size50_window5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/word2vec/w2v_cbow_all_size50_window5 -------------------------------------------------------------------------------- /en/word2vec/w2v_cbow_credit_size200_window10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/word2vec/w2v_cbow_credit_size200_window10 -------------------------------------------------------------------------------- /en/word2vec/w2v_cbow_employment_size200_window10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/word2vec/w2v_cbow_employment_size200_window10 -------------------------------------------------------------------------------- /en/word2vec/w2v_cbow_lease_size200_window10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/word2vec/w2v_cbow_lease_size200_window10 -------------------------------------------------------------------------------- /en/word2vec/w2v_cbow_services_size200_window10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/word2vec/w2v_cbow_services_size200_window10 -------------------------------------------------------------------------------- /en/word2vec/w2v_cbow_underwriting_size200_window10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/en/word2vec/w2v_cbow_underwriting_size200_window10 -------------------------------------------------------------------------------- /multi/geopolitical/geopolitical_divisions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/multi/geopolitical/geopolitical_divisions.csv -------------------------------------------------------------------------------- /multi/geopolitical/geopolitical_relationships.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/multi/geopolitical/geopolitical_relationships.csv -------------------------------------------------------------------------------- /multi/geopolitical/us_federal_regulators.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/multi/geopolitical/us_federal_regulators.csv -------------------------------------------------------------------------------- /multi/legal/de_courts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/multi/legal/de_courts.csv -------------------------------------------------------------------------------- /multi/scientific/chemical_compounds.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/multi/scientific/chemical_compounds.csv -------------------------------------------------------------------------------- /multi/scientific/chemical_elements.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/multi/scientific/chemical_elements.csv -------------------------------------------------------------------------------- /sources/blacks_second_edition/blacks_second_edition_terms.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/sources/blacks_second_edition/blacks_second_edition_terms.csv -------------------------------------------------------------------------------- /sources/blacks_second_edition/blacks_second_edition_terms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/sources/blacks_second_edition/blacks_second_edition_terms.json -------------------------------------------------------------------------------- /sources/blacks_second_edition/blacks_second_edition_terms.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/lexpredict-legal-dictionary/HEAD/sources/blacks_second_edition/blacks_second_edition_terms.xls --------------------------------------------------------------------------------