Update README.md
Browse files
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
|
| 83 |
-
prediction, probabilities = predict_description(model, tokenizer, row
|
| 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 |
```
|