daveni commited on
Commit
0f98c39
1 Parent(s): 78a263f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +0 -1
README.md CHANGED
@@ -51,7 +51,6 @@ encoded_input = tokenizer(text, return_tensors='pt')
51
  output = model(**encoded_input)
52
  scores = output[0][0].detach().numpy()
53
  scores = softmax(scores)
54
-
55
  # Print labels and scores
56
  ranking = np.argsort(scores)
57
  ranking = ranking[::-1]
 
51
  output = model(**encoded_input)
52
  scores = output[0][0].detach().numpy()
53
  scores = softmax(scores)
 
54
  # Print labels and scores
55
  ranking = np.argsort(scores)
56
  ranking = ranking[::-1]