File size: 792 Bytes
b109984 |
1 2 3 4 5 6 7 8 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 |
Ontonotes 5.0 Named Entity Recognition Dataset # Source https://catalog.ldc.upenn.edu/LDC2013T19 https://github.com/NorskRegnesentral/weak-supervision-for-NER # Entities "DATE", "MONEY", "WORK_OF_ART", "CARDINAL", "ORG", "PERSON", "GPE", "NORP", "PERCENT", "ORDINAL", "TIME", "LOC", "LANGUAGE", "FAC", "EVENT", "QUANTITY", "PRODUCT", "LAW" # Label Functions 5 labeling functions in total, as shown below lfs = [ "Core_Keywords", "Regex_Patterns", "Numeric_Patterns", "wiki_fine", "money_detector", "date_detector", "number_detector", "company_type_detector", "full_name_detector", "misc_detector", "crunchbase_cased", "crunchbase_uncased", "geo_cased", "geo_uncased", "Multitoken_wiki", "wiki_cased", "wiki_uncased" ] |