Update README.md
Browse files
README.md
CHANGED
@@ -19,7 +19,7 @@ Developed by [Selector AI](https://www.selector.ai/)
|
|
19 |
```python
|
20 |
from transformers import BertForSequenceClassification, BertTokenizer
|
21 |
|
22 |
-
# Load the model and tokenizer from Hugging Face
|
23 |
model = BertForSequenceClassification.from_pretrained("rahulm-selector/log-classifier-BERT-v1")
|
24 |
tokenizer = BertTokenizer.from_pretrained("rahulm-selector/log-classifier-BERT-v1")
|
25 |
|
@@ -41,12 +41,11 @@ with torch.no_grad():
|
|
41 |
# Step 4: Get the predicted class (the class with the highest score)
|
42 |
predicted_class = torch.argmax(logits, dim=1).item()
|
43 |
|
44 |
-
#
|
45 |
label_mapping = model.config.id2label
|
46 |
|
47 |
-
# Get the event name
|
48 |
predicted_event = label_mapping[predicted_class]
|
49 |
-
|
50 |
print(f"Predicted Event: {predicted_event}")
|
51 |
```
|
52 |
|
|
|
19 |
```python
|
20 |
from transformers import BertForSequenceClassification, BertTokenizer
|
21 |
|
22 |
+
# Step 1: Load the model and tokenizer from Hugging Face
|
23 |
model = BertForSequenceClassification.from_pretrained("rahulm-selector/log-classifier-BERT-v1")
|
24 |
tokenizer = BertTokenizer.from_pretrained("rahulm-selector/log-classifier-BERT-v1")
|
25 |
|
|
|
41 |
# Step 4: Get the predicted class (the class with the highest score)
|
42 |
predicted_class = torch.argmax(logits, dim=1).item()
|
43 |
|
44 |
+
# label mapping (can load from JSON file in repo or config)
|
45 |
label_mapping = model.config.id2label
|
46 |
|
47 |
+
# Step 5: Get the event name
|
48 |
predicted_event = label_mapping[predicted_class]
|
|
|
49 |
print(f"Predicted Event: {predicted_event}")
|
50 |
```
|
51 |
|