rahulm-selector commited on
Commit
35f2dfb
·
verified ·
1 Parent(s): 2c11d3d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -4
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
- # Example label mapping (you can load this from a JSON file or config)
45
  label_mapping = model.config.id2label
46
 
47
- # Get the event name from the predicted class
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