jayebaku commited on
Commit
cb93119
·
verified ·
1 Parent(s): f160eb9

Update classifier.py

Browse files
Files changed (1) hide show
  1. classifier.py +1 -1
classifier.py CHANGED
@@ -7,7 +7,7 @@ def classify(tweet, event_model, hftoken, threshold):
7
  results = {"text": None, "event": None, "score": None}
8
 
9
  # event type prediction with transformers pipeline
10
- event_predictor = pipeline(task="text-classification", model=event_model,
11
  batch_size=512, token=hftoken, device="cpu")
12
  tokenizer_kwargs = {'padding': True, 'truncation': True, 'max_length': 512}
13
  prediction = event_predictor(tweet, **tokenizer_kwargs)[0]
 
7
  results = {"text": None, "event": None, "score": None}
8
 
9
  # event type prediction with transformers pipeline
10
+ event_predictor = tpipeline(task="text-classification", model=event_model,
11
  batch_size=512, token=hftoken, device="cpu")
12
  tokenizer_kwargs = {'padding': True, 'truncation': True, 'max_length': 512}
13
  prediction = event_predictor(tweet, **tokenizer_kwargs)[0]