KameronB commited on
Commit
45a81f2
1 Parent(s): d7a3f35

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -79,8 +79,8 @@ Gathered requirements for desired customizations.""",
79
  I looked over the error logs for any clues about what's going wrong. I'm passing this on to the team responsible for software upkeep."""
80
  ]
81
 
82
- for i, row in df.sample(frac=0.01).iterrows():
83
- prediction, probabilities = predict_description(model, tokenizer, row['content'])
84
  prediction = (['INCIDENT', 'TASK'])[prediction]
85
  print(f"{prediction} ({probabilities}) <== {row['content']}")
86
  ```
 
79
  I looked over the error logs for any clues about what's going wrong. I'm passing this on to the team responsible for software upkeep."""
80
  ]
81
 
82
+ for row in tickets:
83
+ prediction, probabilities = predict_description(model, tokenizer, row)
84
  prediction = (['INCIDENT', 'TASK'])[prediction]
85
  print(f"{prediction} ({probabilities}) <== {row['content']}")
86
  ```