tavily_venue_domains.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "official_proceedings_hosts": [
  3. "papers.nips.cc",
  4. "proceedings.neurips.cc",
  5. "proceedings.iclr.cc",
  6. "proceedings.mlr.press",
  7. "openaccess.thecvf.com",
  8. "aclanthology.org",
  9. "aaai.org",
  10. "ijcai.org"
  11. ],
  12. "include_domains_by_canonical": {
  13. "neurips": ["papers.nips.cc", "proceedings.neurips.cc"],
  14. "iclr": ["proceedings.iclr.cc"],
  15. "icml": ["proceedings.mlr.press"],
  16. "cvpr": ["openaccess.thecvf.com"],
  17. "iccv": ["openaccess.thecvf.com"],
  18. "eccv": ["openaccess.thecvf.com"],
  19. "aaai": ["aaai.org"],
  20. "acl": ["aclanthology.org"],
  21. "emnlp": ["aclanthology.org"],
  22. "coling": ["aclanthology.org"],
  23. "ijcai": ["ijcai.org"],
  24. "sigir": ["aclanthology.org"]
  25. },
  26. "substring_rules": [
  27. {
  28. "domains": ["papers.nips.cc", "proceedings.neurips.cc"],
  29. "any": [
  30. {"regex": "(?<!\\w)nips(?!\\w)"},
  31. {"substring": "neurips"},
  32. {"substring": "neural information processing"}
  33. ]
  34. },
  35. {
  36. "domains": ["proceedings.iclr.cc"],
  37. "any": [
  38. {"substring": "iclr"},
  39. {"substring": "international conference on learning representations"}
  40. ]
  41. },
  42. {
  43. "domains": ["proceedings.mlr.press"],
  44. "any": [
  45. {"substring": "icml"},
  46. {"substring": "international conference on machine learning"},
  47. {"regex": "\\bpmlr\\b"}
  48. ]
  49. },
  50. {
  51. "domains": ["openaccess.thecvf.com"],
  52. "any": [
  53. {"substring": "cvpr"},
  54. {"substring": "iccv"},
  55. {"substring": "eccv"},
  56. {"substring": "wacv"},
  57. {"substring": "ieee/cvf"},
  58. {"substring": "computer vision and pattern recognition"},
  59. {"substring": "european conference on computer vision"},
  60. {"substring": "international conference on computer vision"}
  61. ]
  62. },
  63. {"domains": ["aaai.org"], "any": [{"substring": "aaai"}]},
  64. {"domains": ["ijcai.org"], "any": [{"substring": "ijcai"}]},
  65. {
  66. "domains": ["aclanthology.org"],
  67. "any": [
  68. {"substring": "emnlp"},
  69. {"substring": "naacl"},
  70. {"substring": "eacl"},
  71. {"substring": "coling"},
  72. {"substring": "aclanthology"},
  73. {"substring": "findings of acl"},
  74. {"substring": "findings of emnlp"},
  75. {"substring": "findings of naacl"},
  76. {"regex": "\\bacl\\b"}
  77. ]
  78. },
  79. {"domains": ["aclanthology.org"], "any": [{"substring": "sigir"}]}
  80. ]
  81. }