TimSchopf commited on
Commit
4f00bca
·
1 Parent(s): 017ad41

Update imports in code example

Browse files
Files changed (1) hide show
  1. README.md +4 -1
README.md CHANGED
@@ -35,10 +35,13 @@ Code: https://github.com/sebischair/Exploring-NLP-Research
35
  ## How to use the pretrained model
36
 
37
  ```python
 
 
 
38
  from transformers import BertForSequenceClassification, AutoTokenizer
39
  # load model and tokenizer
40
  tokenizer = AutoTokenizer.from_pretrained('TimSchopf/specter2_nlp_classifier')
41
- model = BertForSequenceClassification.from_pretrained('TimSchopf/specter2_nlp_classifier'
42
 
43
  # prepare data
44
  papers = [{'title': 'Attention Is All You Need', 'abstract': 'The dominant sequence transduction models are based on complex recurrent or convolutional neural networks in an encoder-decoder configuration. The best performing models also connect the encoder and decoder through an attention mechanism. We propose a new simple network architecture, the Transformer, based solely on attention mechanisms, dispensing with recurrence and convolutions entirely. Experiments on two machine translation tasks show these models to be superior in quality while being more parallelizable and requiring significantly less time to train. Our model achieves 28.4 BLEU on the WMT 2014 English-to-German translation task, improving over the existing best results, including ensembles by over 2 BLEU. On the WMT 2014 English-to-French translation task, our model establishes a new single-model state-of-the-art BLEU score of 41.8 after training for 3.5 days on eight GPUs, a small fraction of the training costs of the best models from the literature. We show that the Transformer generalizes well to other tasks by applying it successfully to English constituency parsing both with large and limited training data.'},
 
35
  ## How to use the pretrained model
36
 
37
  ```python
38
+ from typing import List
39
+ import torch
40
+ from torch.utils.data import DataLoader
41
  from transformers import BertForSequenceClassification, AutoTokenizer
42
  # load model and tokenizer
43
  tokenizer = AutoTokenizer.from_pretrained('TimSchopf/specter2_nlp_classifier')
44
+ model = BertForSequenceClassification.from_pretrained('TimSchopf/specter2_nlp_classifier')
45
 
46
  # prepare data
47
  papers = [{'title': 'Attention Is All You Need', 'abstract': 'The dominant sequence transduction models are based on complex recurrent or convolutional neural networks in an encoder-decoder configuration. The best performing models also connect the encoder and decoder through an attention mechanism. We propose a new simple network architecture, the Transformer, based solely on attention mechanisms, dispensing with recurrence and convolutions entirely. Experiments on two machine translation tasks show these models to be superior in quality while being more parallelizable and requiring significantly less time to train. Our model achieves 28.4 BLEU on the WMT 2014 English-to-German translation task, improving over the existing best results, including ensembles by over 2 BLEU. On the WMT 2014 English-to-French translation task, our model establishes a new single-model state-of-the-art BLEU score of 41.8 after training for 3.5 days on eight GPUs, a small fraction of the training costs of the best models from the literature. We show that the Transformer generalizes well to other tasks by applying it successfully to English constituency parsing both with large and limited training data.'},