Update README.md
Browse files
README.md
CHANGED
@@ -15,7 +15,7 @@ from transformers import *
|
|
15 |
import torch
|
16 |
|
17 |
tokenizer = AutoTokenizer.from_pretrained("jeniya/BERTOverflow")
|
18 |
-
model =
|
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 |
```
|