CiteAudit / venues.py
Wenyu Zhang
add application file
e83b370
# Curated list of CS/AI publication venues
# VENUE_NAMES are full names and should be matched case-insensitively.
# VENUE_ABBREVIATIONS are short forms and MUST be matched case-sensitively.
VENUE_NAMES = [
"Neural Information Processing Systems",
"International Conference on Machine Learning",
"International Conference on Learning Representations",
"Computer Vision and Pattern Recognition",
"International Conference on Computer Vision",
"European Conference on Computer Vision",
"Association for the Advancement of Artificial Intelligence",
"International Joint Conference on Artificial Intelligence",
"Association for Computational Linguistics",
"Empirical Methods in Natural Language Processing",
"North American Chapter of the Association for Computational Linguistics",
"International Conference on Computational Linguistics",
"Journal of Machine Learning Research",
"IEEE Transactions on Pattern Analysis and Machine Intelligence",
"International Journal of Computer Vision",
"Knowledge Discovery and Data Mining",
"Special Interest Group on Information Retrieval",
"The Web Conference",
"Web Search and Data Mining",
"Conference on Robot Learning",
"International Conference on Robotics and Automation",
"International Conference on Intelligent Robots and Systems",
"Robotics: Science and Systems",
"Uncertainty in Artificial Intelligence",
"Artificial Intelligence and Statistics",
"Pattern Analysis and Machine Intelligence"
]
VENUE_ABBREVIATIONS = [
"NeurIPS",
"ICML",
"ICLR",
"CVPR",
"ICCV",
"ECCV",
"AAAI",
"IJCAI",
"ACL",
"EMNLP",
"NAACL",
"COLING",
"JMLR",
"TPAMI",
"IJCV",
"KDD",
"SIGIR",
"WWW",
"WSDM",
"CoRL",
"ICRA",
"IROS",
"RSS",
"UAI",
"AISTATS",
"NIPS",
"PAMI"
]
# Common terms associated with venues
COMMON_TERMS = [
"Proceedings of",
"In Proc.",
"Advances in",
"Workshop on",
"Symposium on",
"Conference on",
"Transactions on",
"Journal of"
]