jeniya/BERTOverflow_stackoverflow_github
236
1 2 3# BERTOverflow4 5## Model description6 7We pre-trained BERT-base model on 152 million sentences from the StackOverflow's 10 year archive. More details of this model can be found in our ACL 2020 paper: [Code and Named Entity Recognition in StackOverflow](https://www.aclweb.org/anthology/2020.acl-main.443/). We would like to thank [Wuwei Lan](https://lanwuwei.github.io/) for helping us in training this model. 8 9 10 11 12#### How to use13 14```python15from transformers import *16import torch17 18tokenizer = AutoTokenizer.from_pretrained("jeniya/BERTOverflow")19model = AutoModelForTokenClassification.from_pretrained("jeniya/BERTOverflow")20 21```22 23 24 25### BibTeX entry and citation info26 27```bibtex28@inproceedings{tabassum2020code,29 title={Code and Named Entity Recognition in StackOverflow},30 author={Tabassum, Jeniya and Maddela, Mounica and Xu, Wei and Ritter, Alan },31 booktitle = {Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics (ACL)},32 url={https://www.aclweb.org/anthology/2020.acl-main.443/}33 year = {2020},34}35```