(Bill) Yuchen Lin commited on
Commit
8746fcc
1 Parent(s): 318551b
Files changed (2) hide show
  1. abbr.tsv +16 -0
  2. app.py +1 -1
abbr.tsv ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Proc. of SIGMOD | Proceedings of the .* International Conference on Management of Data, {SIGMOD} Conference
2
+ Proc. of NAACL-HLT | Proceedings of the .* Conference of the North {A}merican Chapter of the Association for Computational Linguistics: Human Language Technologies
3
+ Proc. of EMNLP | Proceedings of the .* Conference on Empirical Methods in Natural Language Processing
4
+ Proc. of ACL | Proceedings of the .* Annual Meeting of the Association for Computational Linguistics
5
+ Proc. of WWW | {WWW} '.*: The Web Conference .*
6
+ Proc. of ICLR | .* International Conference on Learning Representations,
7
+ Proc. of ICML | Proceedings of the .* International Conference on Machine Learning.*
8
+ Proc. of ICML | Machine Learning, Proceedings of the .* International Conference
9
+ Proc. of AAAI | Proceedings of the .*AAAI.* Conference on Artificial Intelligence
10
+ Proc. of KDD | The .* {ACM} {SIGKDD} International Conference on Knowledge Discovery
11
+ Proc. of CVPR | .*IEEE Computer Society Conference on Computer Vision and Pattern Recognition.*
12
+ Proc. of CVPR | .*IEEE/CVF Conference on Computer Vision and Pattern Recognition,.*
13
+ Proc. of ICDE | .*International Conference on Data Engineering.*
14
+ Proc. of SIGIR | .*International {ACM} {SIGIR}.*
15
+ Proc. of INTERSPEECH | Interspeech .*Annual Conference of the International Speech.*
16
+ TKDE | IEEE Transactions on Knowledge and Data Engineering
app.py CHANGED
@@ -7,7 +7,7 @@ import uuid
7
  # Load Bib Database
8
  filepath = os.path.abspath(rebiber.__file__).replace("__init__.py","")
9
  bib_list_path = os.path.join(filepath, "bib_list.txt")
10
- abbr_tsv_path = os.path.join(filepath, "abbr.tsv")
11
 
12
  bib_db = rebiber.construct_bib_db(bib_list_path, start_dir=filepath)
13
 
 
7
  # Load Bib Database
8
  filepath = os.path.abspath(rebiber.__file__).replace("__init__.py","")
9
  bib_list_path = os.path.join(filepath, "bib_list.txt")
10
+ abbr_tsv_path = "abbr.tsv"
11
 
12
  bib_db = rebiber.construct_bib_db(bib_list_path, start_dir=filepath)
13