Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

95 rindas
3.6 KiB

  1. # Headline aliases — maps a full name/phrase to a canonical short form so that
  2. # "Federal Reserve" and "the Fed" normalize to the same token and cluster together.
  3. #
  4. # Format: one entry per line under [aliases]:
  5. # "full phrase" = "canonical"
  6. #
  7. # Matching rules:
  8. # * Case-insensitive and after punctuation removal (so "people's" == "peoples").
  9. # * Whole-word only — "united states" will not match inside "united statesman".
  10. # * Longest phrases are applied first — "president of the united states" wins
  11. # over "united states".
  12. # * The canonical form MUST NOT be a stopword (see resources/stopwords.txt), or
  13. # it will be stripped during normalization and the alias is lost.
  14. [aliases]
  15. # ---------------------------------------------------------------- US government
  16. "federal reserve" = "fed"
  17. "federal reserve system" = "fed"
  18. "white house" = "wh"
  19. "central intelligence agency" = "cia"
  20. "federal bureau of investigation" = "fbi"
  21. "national security agency" = "nsa"
  22. "department of justice" = "doj"
  23. "department of defense" = "dod"
  24. "department of homeland security" = "dhs"
  25. "environmental protection agency" = "epa"
  26. "securities and exchange commission" = "sec"
  27. "internal revenue service" = "irs"
  28. "social security administration" = "ssa"
  29. "centers for disease control" = "cdc"
  30. "centers for disease control and prevention" = "cdc"
  31. "food and drug administration" = "fda"
  32. "federal aviation administration" = "faa"
  33. "federal communications commission" = "fcc"
  34. "federal trade commission" = "ftc"
  35. "federal emergency management agency" = "fema"
  36. "national aeronautics and space administration" = "nasa"
  37. "national institutes of health" = "nih"
  38. "national transportation safety board" = "ntsb"
  39. "supreme court" = "scotus"
  40. "supreme court of the united states" = "scotus"
  41. "house of representatives" = "house"
  42. "president of the united states" = "potus"
  43. "vice president" = "vp"
  44. "prime minister" = "pm"
  45. "secretary of state" = "secstate"
  46. "attorney general" = "ag"
  47. # ---------------------------------------------------------- International bodies
  48. # "un" and "who" are stopwords, so these use concatenated forms to survive.
  49. "united nations" = "unitednations"
  50. "world health organization" = "worldhealthorg"
  51. "united nations security council" = "unsc"
  52. "international monetary fund" = "imf"
  53. "world trade organization" = "wto"
  54. "north atlantic treaty organization" = "nato"
  55. "international criminal court" = "icc"
  56. "international atomic energy agency" = "iaea"
  57. "organization of the petroleum exporting countries" = "opec"
  58. "european union" = "eu"
  59. "african union" = "au"
  60. "association of southeast asian nations" = "asean"
  61. # ----------------------------------------------------------- Countries & regions
  62. "united states" = "us"
  63. "united states of america" = "us"
  64. "united kingdom" = "uk"
  65. "great britain" = "uk"
  66. "united arab emirates" = "uae"
  67. "people's republic of china" = "china"
  68. "republic of korea" = "south korea"
  69. "democratic people's republic of korea" = "north korea"
  70. "saudi arabia" = "saudi"
  71. "middle east" = "mideast"
  72. "asia pacific" = "apac"
  73. "latin america" = "latam"
  74. # ----------------------------------------------------------- Politics & economy
  75. "republican party" = "gop"
  76. "democratic party" = "democrats"
  77. "gross domestic product" = "gdp"
  78. "gross national product" = "gnp"
  79. "consumer price index" = "cpi"
  80. "initial public offering" = "ipo"
  81. "unemployment rate" = "unemployment"
  82. "inflation rate" = "inflation"
  83. "national debt" = "debt"
  84. "budget deficit" = "deficit"
  85. # ---------------------------------------------------------- Technology & other
  86. "artificial intelligence" = "ai"
  87. "machine learning" = "ml"
  88. "electric vehicle" = "ev"
  89. "international space station" = "iss"