system HF staff commited on
Commit
7ffb212
1 Parent(s): 894f378

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -1
README.md CHANGED
@@ -15,7 +15,7 @@ from transformers import *
15
  import torch
16
 
17
  tokenizer = AutoTokenizer.from_pretrained("jeniya/BERTOverflow")
18
- model = AutoModel.from_pretrained("jeniya/BERTOverflow")
19
 
20
  ```
21
 
@@ -28,6 +28,7 @@ model = AutoModel.from_pretrained("jeniya/BERTOverflow")
28
  title={Code and Named Entity Recognition in StackOverflow},
29
  author={Tabassum, Jeniya and Maddela, Mounica and Xu, Wei and Ritter, Alan },
30
  booktitle = {Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics (ACL)},
 
31
  year = {2020},
32
  }
33
  ```
 
15
  import torch
16
 
17
  tokenizer = AutoTokenizer.from_pretrained("jeniya/BERTOverflow")
18
+ model = AutoModelForTokenClassification.from_pretrained("jeniya/BERTOverflow")
19
 
20
  ```
21
 
 
28
  title={Code and Named Entity Recognition in StackOverflow},
29
  author={Tabassum, Jeniya and Maddela, Mounica and Xu, Wei and Ritter, Alan },
30
  booktitle = {Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics (ACL)},
31
+ url={https://www.aclweb.org/anthology/2020.acl-main.443/}
32
  year = {2020},
33
  }
34
  ```