SamLowe commited on
Commit
a01ed1d
1 Parent(s): 26b3c8f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -91,7 +91,7 @@ logits = model.run(output_names=output_names, input_feed=input_feed_dict)[0]
91
  # produces a numpy array, one row per input item, one col per label
92
 
93
  # Post-processing. Gets the scores per label in range.
94
- # Auto done by Transformers' pipeline, but we must di it manually with ORT.
95
  model_outputs = sigmoid(logits)
96
 
97
  # for example, just to show the top result per input item
 
91
  # produces a numpy array, one row per input item, one col per label
92
 
93
  # Post-processing. Gets the scores per label in range.
94
+ # Auto done by Transformers' pipeline, but we must do it manually with ORT.
95
  model_outputs = sigmoid(logits)
96
 
97
  # for example, just to show the top result per input item