Nadun102 commited on
Commit
8ec0424
·
verified ·
1 Parent(s): fbcaf57

Upload 7 files

Browse files
Files changed (7) hide show
  1. app.py +125 -0
  2. best_lstm_model.pt +3 -0
  3. label_encoder.pkl +3 -0
  4. lstm_dataset_500 (3).json +2002 -0
  5. lstm_model.pt +3 -0
  6. requirements.txt +4 -0
  7. vocab.pkl +3 -0
app.py ADDED
@@ -0,0 +1,125 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ import torch
3
+ import pickle
4
+ import numpy as np
5
+ import re
6
+ from collections import Counter
7
+ import torch.nn as nn
8
+
9
+ # ------------------------
10
+ # Device
11
+ # ------------------------
12
+ device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
13
+
14
+ # ------------------------
15
+ # Model Definition
16
+ # ------------------------
17
+ class LSTMClassifier(nn.Module):
18
+ def __init__(self, vocab_size, embedding_dim, hidden_dim, output_dim, n_layers=2, dropout=0.5):
19
+ super().__init__()
20
+ self.embedding = nn.Embedding(vocab_size, embedding_dim, padding_idx=0)
21
+ self.lstm = nn.LSTM(
22
+ embedding_dim,
23
+ hidden_dim,
24
+ num_layers=n_layers,
25
+ bidirectional=True,
26
+ dropout=dropout if n_layers > 1 else 0,
27
+ batch_first=True
28
+ )
29
+ self.dropout = nn.Dropout(dropout)
30
+ self.fc1 = nn.Linear(hidden_dim * 2, 64)
31
+ self.fc2 = nn.Linear(64, output_dim)
32
+ self.relu = nn.ReLU()
33
+
34
+ def forward(self, x):
35
+ x = self.dropout(self.embedding(x))
36
+ _, (hidden, _) = self.lstm(x)
37
+ hidden = torch.cat((hidden[-2], hidden[-1]), dim=1)
38
+ x = self.dropout(hidden)
39
+ x = self.relu(self.fc1(x))
40
+ x = self.dropout(x)
41
+ return self.fc2(x)
42
+
43
+ # ------------------------
44
+ # Load Saved Objects
45
+ # ------------------------
46
+ with open("vocab.pkl", "rb") as f:
47
+ vocab_data = pickle.load(f)
48
+ word2idx = vocab_data["word2idx"]
49
+ max_len = vocab_data["max_len"]
50
+
51
+ with open("label_encoder.pkl", "rb") as f:
52
+ label_encoder = pickle.load(f)
53
+
54
+ checkpoint = torch.load("lstm_model.pt", map_location=device)
55
+
56
+ model = LSTMClassifier(
57
+ vocab_size=checkpoint["vocab_size"],
58
+ embedding_dim=128,
59
+ hidden_dim=64,
60
+ output_dim=checkpoint["num_classes"]
61
+ ).to(device)
62
+
63
+ model.load_state_dict(checkpoint["model_state_dict"])
64
+ model.eval()
65
+
66
+ # ------------------------
67
+ # Helpers
68
+ # ------------------------
69
+ def clean_text(text):
70
+ text = text.lower()
71
+ text = re.sub(r"[^\w\s]", "", text)
72
+ return text
73
+
74
+ def text_to_sequence(text):
75
+ words = text.split()
76
+ seq = [word2idx.get(w, 1) for w in words]
77
+ if len(seq) < max_len:
78
+ seq += [0] * (max_len - len(seq))
79
+ else:
80
+ seq = seq[:max_len]
81
+ return seq
82
+
83
+ # ------------------------
84
+ # Prediction Function
85
+ # ------------------------
86
+ def predict_scam(text):
87
+ text_clean = clean_text(text)
88
+ seq = torch.LongTensor([text_to_sequence(text_clean)]).to(device)
89
+
90
+ with torch.no_grad():
91
+ outputs = model(seq)
92
+ probs = torch.softmax(outputs, dim=1).cpu().numpy()[0]
93
+
94
+ result = {
95
+ label: float(prob)
96
+ for label, prob in zip(label_encoder.classes_, probs)
97
+ }
98
+
99
+ prediction = label_encoder.classes_[np.argmax(probs)]
100
+ confidence = np.max(probs)
101
+
102
+ return prediction, f"{confidence:.2%}", result
103
+
104
+ # ------------------------
105
+ # Gradio UI
106
+ # ------------------------
107
+ interface = gr.Interface(
108
+ fn=predict_scam,
109
+ inputs=gr.Textbox(lines=4, placeholder="Enter SMS / Email text here..."),
110
+ outputs=[
111
+ gr.Label(label="Prediction"),
112
+ gr.Textbox(label="Confidence"),
113
+ gr.JSON(label="Class Probabilities")
114
+ ],
115
+ title="📨 Scam Message Detection (LSTM)",
116
+ description="Detect scam vs legitimate messages using a BiLSTM model trained on text data.",
117
+ examples=[
118
+ ["Your bank account has been locked. Verify immediately."],
119
+ ["Meeting confirmed for tomorrow at 10am"],
120
+ ["You won a cash prize. Click the link now!"]
121
+ ]
122
+ )
123
+
124
+ if __name__ == "__main__":
125
+ interface.launch()
best_lstm_model.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ef897c01dcebaf10f497e61a189def01b86b4266f47023ecbd091e96a54c4ef4
3
+ size 919327
label_encoder.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:65222842aab77cdf99e311acf11c470c6fca3ddc8f9174519dd671b53e7f6061
3
+ size 275
lstm_dataset_500 (3).json ADDED
@@ -0,0 +1,2002 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "transcript": "Your electricity will disconnect unless you pay using this link.",
4
+ "label": "suspicious"
5
+ },
6
+ {
7
+ "transcript": "Hello I want to confirm my appointment tomorrow morning.",
8
+ "label": "safe"
9
+ },
10
+ {
11
+ "transcript": "Install this security patch from this link to fix malware issue.",
12
+ "label": "suspicious"
13
+ },
14
+ {
15
+ "transcript": "Meeting rescheduled to tomorrow evening 5pm.",
16
+ "label": "safe"
17
+ },
18
+ {
19
+ "transcript": "Meeting rescheduled to tomorrow evening 5pm.",
20
+ "label": "safe"
21
+ },
22
+ {
23
+ "transcript": "Will the delivery ship today or tomorrow?",
24
+ "label": "safe"
25
+ },
26
+ {
27
+ "transcript": "You have won 113199 rupees gift reward, click link now to claim it.",
28
+ "label": "high_risk"
29
+ },
30
+ {
31
+ "transcript": "Government tax refund pending. Submit your bank details urgently.",
32
+ "label": "high_risk"
33
+ },
34
+ {
35
+ "transcript": "I want to upgrade my internet package next month.",
36
+ "label": "safe"
37
+ },
38
+ {
39
+ "transcript": "Your bank account login attempt detected. Reply with password instantly.",
40
+ "label": "high_risk"
41
+ },
42
+ {
43
+ "transcript": "Your bank account login attempt detected. Reply with password instantly.",
44
+ "label": "high_risk"
45
+ },
46
+ {
47
+ "transcript": "Can you send me the billing invoice for last month?",
48
+ "label": "safe"
49
+ },
50
+ {
51
+ "transcript": "Your OTP 447094 must be provided immediately to avoid your account getting blocked.",
52
+ "label": "high_risk"
53
+ },
54
+ {
55
+ "transcript": "Hello I want to confirm my appointment tomorrow morning.",
56
+ "label": "safe"
57
+ },
58
+ {
59
+ "transcript": "Can you send me the billing invoice for last month?",
60
+ "label": "safe"
61
+ },
62
+ {
63
+ "transcript": "I want to upgrade my internet package next month.",
64
+ "label": "safe"
65
+ },
66
+ {
67
+ "transcript": "Meeting rescheduled to tomorrow evening 5pm.",
68
+ "label": "safe"
69
+ },
70
+ {
71
+ "transcript": "Hello I want to confirm my appointment tomorrow morning.",
72
+ "label": "safe"
73
+ },
74
+ {
75
+ "transcript": "Download this attachment to fix system failure.",
76
+ "label": "suspicious"
77
+ },
78
+ {
79
+ "transcript": "Government tax refund pending. Submit your bank details urgently.",
80
+ "label": "high_risk"
81
+ },
82
+ {
83
+ "transcript": "Can you send me the billing invoice for last month?",
84
+ "label": "safe"
85
+ },
86
+ {
87
+ "transcript": "Hello I want to confirm my appointment tomorrow morning.",
88
+ "label": "safe"
89
+ },
90
+ {
91
+ "transcript": "Exclusive crypto trading group available. Send wallet phrase for join.",
92
+ "label": "suspicious"
93
+ },
94
+ {
95
+ "transcript": "Will the delivery ship today or tomorrow?",
96
+ "label": "safe"
97
+ },
98
+ {
99
+ "transcript": "Investment guaranteed 300 percent return. Join now via link.",
100
+ "label": "suspicious"
101
+ },
102
+ {
103
+ "transcript": "Please verify time available for call this evening.",
104
+ "label": "safe"
105
+ },
106
+ {
107
+ "transcript": "Will the delivery ship today or tomorrow?",
108
+ "label": "safe"
109
+ },
110
+ {
111
+ "transcript": "Please verify time available for call this evening.",
112
+ "label": "safe"
113
+ },
114
+ {
115
+ "transcript": "I want to upgrade my internet package next month.",
116
+ "label": "safe"
117
+ },
118
+ {
119
+ "transcript": "Meeting rescheduled to tomorrow evening 5pm.",
120
+ "label": "safe"
121
+ },
122
+ {
123
+ "transcript": "Can you send me the billing invoice for last month?",
124
+ "label": "safe"
125
+ },
126
+ {
127
+ "transcript": "Your card will be terminated today unless you share CVV immediately.",
128
+ "label": "high_risk"
129
+ },
130
+ {
131
+ "transcript": "Click this website to unlock secret bonus reward limited time.",
132
+ "label": "suspicious"
133
+ },
134
+ {
135
+ "transcript": "Your electricity will disconnect unless you pay using this link.",
136
+ "label": "suspicious"
137
+ },
138
+ {
139
+ "transcript": "Please verify time available for call this evening.",
140
+ "label": "safe"
141
+ },
142
+ {
143
+ "transcript": "Will the delivery ship today or tomorrow?",
144
+ "label": "safe"
145
+ },
146
+ {
147
+ "transcript": "Exclusive crypto trading group available. Send wallet phrase for join.",
148
+ "label": "suspicious"
149
+ },
150
+ {
151
+ "transcript": "Your OTP 502891 must be provided immediately to avoid your account getting blocked.",
152
+ "label": "high_risk"
153
+ },
154
+ {
155
+ "transcript": "Exclusive crypto trading group available. Send wallet phrase for join.",
156
+ "label": "suspicious"
157
+ },
158
+ {
159
+ "transcript": "Install this security patch from this link to fix malware issue.",
160
+ "label": "suspicious"
161
+ },
162
+ {
163
+ "transcript": "Your card will be terminated today unless you share CVV immediately.",
164
+ "label": "high_risk"
165
+ },
166
+ {
167
+ "transcript": "You have won 389145 rupees gift reward, click link now to claim it.",
168
+ "label": "high_risk"
169
+ },
170
+ {
171
+ "transcript": "Your bank account login attempt detected. Reply with password instantly.",
172
+ "label": "high_risk"
173
+ },
174
+ {
175
+ "transcript": "Exclusive crypto trading group available. Send wallet phrase for join.",
176
+ "label": "suspicious"
177
+ },
178
+ {
179
+ "transcript": "Government tax refund pending. Submit your bank details urgently.",
180
+ "label": "high_risk"
181
+ },
182
+ {
183
+ "transcript": "Install this security patch from this link to fix malware issue.",
184
+ "label": "suspicious"
185
+ },
186
+ {
187
+ "transcript": "Install this security patch from this link to fix malware issue.",
188
+ "label": "suspicious"
189
+ },
190
+ {
191
+ "transcript": "Please verify time available for call this evening.",
192
+ "label": "safe"
193
+ },
194
+ {
195
+ "transcript": "We detected new login from unknown device. Send latest OTP to secure.",
196
+ "label": "high_risk"
197
+ },
198
+ {
199
+ "transcript": "Your bank account login attempt detected. Reply with password instantly.",
200
+ "label": "high_risk"
201
+ },
202
+ {
203
+ "transcript": "Your bank account login attempt detected. Reply with password instantly.",
204
+ "label": "high_risk"
205
+ },
206
+ {
207
+ "transcript": "Will the delivery ship today or tomorrow?",
208
+ "label": "safe"
209
+ },
210
+ {
211
+ "transcript": "Exclusive crypto trading group available. Send wallet phrase for join.",
212
+ "label": "suspicious"
213
+ },
214
+ {
215
+ "transcript": "Government tax refund pending. Submit your bank details urgently.",
216
+ "label": "high_risk"
217
+ },
218
+ {
219
+ "transcript": "Can you send me the billing invoice for last month?",
220
+ "label": "safe"
221
+ },
222
+ {
223
+ "transcript": "Will the delivery ship today or tomorrow?",
224
+ "label": "safe"
225
+ },
226
+ {
227
+ "transcript": "We detected new login from unknown device. Send latest OTP to secure.",
228
+ "label": "high_risk"
229
+ },
230
+ {
231
+ "transcript": "Hello I want to confirm my appointment tomorrow morning.",
232
+ "label": "safe"
233
+ },
234
+ {
235
+ "transcript": "Meeting rescheduled to tomorrow evening 5pm.",
236
+ "label": "safe"
237
+ },
238
+ {
239
+ "transcript": "Government tax refund pending. Submit your bank details urgently.",
240
+ "label": "high_risk"
241
+ },
242
+ {
243
+ "transcript": "We detected new login from unknown device. Send latest OTP to secure.",
244
+ "label": "high_risk"
245
+ },
246
+ {
247
+ "transcript": "Hello I want to confirm my appointment tomorrow morning.",
248
+ "label": "safe"
249
+ },
250
+ {
251
+ "transcript": "You have won 129858 rupees gift reward, click link now to claim it.",
252
+ "label": "high_risk"
253
+ },
254
+ {
255
+ "transcript": "Your bank account login attempt detected. Reply with password instantly.",
256
+ "label": "high_risk"
257
+ },
258
+ {
259
+ "transcript": "Click this website to unlock secret bonus reward limited time.",
260
+ "label": "suspicious"
261
+ },
262
+ {
263
+ "transcript": "Your bank account login attempt detected. Reply with password instantly.",
264
+ "label": "high_risk"
265
+ },
266
+ {
267
+ "transcript": "Exclusive crypto trading group available. Send wallet phrase for join.",
268
+ "label": "suspicious"
269
+ },
270
+ {
271
+ "transcript": "Click this website to unlock secret bonus reward limited time.",
272
+ "label": "suspicious"
273
+ },
274
+ {
275
+ "transcript": "Government tax refund pending. Submit your bank details urgently.",
276
+ "label": "high_risk"
277
+ },
278
+ {
279
+ "transcript": "Can you send me the billing invoice for last month?",
280
+ "label": "safe"
281
+ },
282
+ {
283
+ "transcript": "Your OTP 382348 must be provided immediately to avoid your account getting blocked.",
284
+ "label": "high_risk"
285
+ },
286
+ {
287
+ "transcript": "Your electricity will disconnect unless you pay using this link.",
288
+ "label": "suspicious"
289
+ },
290
+ {
291
+ "transcript": "Meeting rescheduled to tomorrow evening 5pm.",
292
+ "label": "safe"
293
+ },
294
+ {
295
+ "transcript": "Will the delivery ship today or tomorrow?",
296
+ "label": "safe"
297
+ },
298
+ {
299
+ "transcript": "Your bank account login attempt detected. Reply with password instantly.",
300
+ "label": "high_risk"
301
+ },
302
+ {
303
+ "transcript": "Your bank account login attempt detected. Reply with password instantly.",
304
+ "label": "high_risk"
305
+ },
306
+ {
307
+ "transcript": "Please verify time available for call this evening.",
308
+ "label": "safe"
309
+ },
310
+ {
311
+ "transcript": "Your card will be terminated today unless you share CVV immediately.",
312
+ "label": "high_risk"
313
+ },
314
+ {
315
+ "transcript": "Install this security patch from this link to fix malware issue.",
316
+ "label": "suspicious"
317
+ },
318
+ {
319
+ "transcript": "Exclusive crypto trading group available. Send wallet phrase for join.",
320
+ "label": "suspicious"
321
+ },
322
+ {
323
+ "transcript": "Government tax refund pending. Submit your bank details urgently.",
324
+ "label": "high_risk"
325
+ },
326
+ {
327
+ "transcript": "Exclusive crypto trading group available. Send wallet phrase for join.",
328
+ "label": "suspicious"
329
+ },
330
+ {
331
+ "transcript": "Meeting rescheduled to tomorrow evening 5pm.",
332
+ "label": "safe"
333
+ },
334
+ {
335
+ "transcript": "You have won 245333 rupees gift reward, click link now to claim it.",
336
+ "label": "high_risk"
337
+ },
338
+ {
339
+ "transcript": "Your OTP 442640 must be provided immediately to avoid your account getting blocked.",
340
+ "label": "high_risk"
341
+ },
342
+ {
343
+ "transcript": "Your OTP 400633 must be provided immediately to avoid your account getting blocked.",
344
+ "label": "high_risk"
345
+ },
346
+ {
347
+ "transcript": "Your OTP 129959 must be provided immediately to avoid your account getting blocked.",
348
+ "label": "high_risk"
349
+ },
350
+ {
351
+ "transcript": "You have won 46406 rupees gift reward, click link now to claim it.",
352
+ "label": "high_risk"
353
+ },
354
+ {
355
+ "transcript": "You have won 492373 rupees gift reward, click link now to claim it.",
356
+ "label": "high_risk"
357
+ },
358
+ {
359
+ "transcript": "Hello I want to confirm my appointment tomorrow morning.",
360
+ "label": "safe"
361
+ },
362
+ {
363
+ "transcript": "Your bank account login attempt detected. Reply with password instantly.",
364
+ "label": "high_risk"
365
+ },
366
+ {
367
+ "transcript": "Will the delivery ship today or tomorrow?",
368
+ "label": "safe"
369
+ },
370
+ {
371
+ "transcript": "Exclusive crypto trading group available. Send wallet phrase for join.",
372
+ "label": "suspicious"
373
+ },
374
+ {
375
+ "transcript": "Click this website to unlock secret bonus reward limited time.",
376
+ "label": "suspicious"
377
+ },
378
+ {
379
+ "transcript": "Click this website to unlock secret bonus reward limited time.",
380
+ "label": "suspicious"
381
+ },
382
+ {
383
+ "transcript": "Investment guaranteed 300 percent return. Join now via link.",
384
+ "label": "suspicious"
385
+ },
386
+ {
387
+ "transcript": "I want to upgrade my internet package next month.",
388
+ "label": "safe"
389
+ },
390
+ {
391
+ "transcript": "Will the delivery ship today or tomorrow?",
392
+ "label": "safe"
393
+ },
394
+ {
395
+ "transcript": "Investment guaranteed 300 percent return. Join now via link.",
396
+ "label": "suspicious"
397
+ },
398
+ {
399
+ "transcript": "Please verify time available for call this evening.",
400
+ "label": "safe"
401
+ },
402
+ {
403
+ "transcript": "Hello I want to confirm my appointment tomorrow morning.",
404
+ "label": "safe"
405
+ },
406
+ {
407
+ "transcript": "Click this website to unlock secret bonus reward limited time.",
408
+ "label": "suspicious"
409
+ },
410
+ {
411
+ "transcript": "Install this security patch from this link to fix malware issue.",
412
+ "label": "suspicious"
413
+ },
414
+ {
415
+ "transcript": "Meeting rescheduled to tomorrow evening 5pm.",
416
+ "label": "safe"
417
+ },
418
+ {
419
+ "transcript": "Hello I want to confirm my appointment tomorrow morning.",
420
+ "label": "safe"
421
+ },
422
+ {
423
+ "transcript": "Will the delivery ship today or tomorrow?",
424
+ "label": "safe"
425
+ },
426
+ {
427
+ "transcript": "Your bank account login attempt detected. Reply with password instantly.",
428
+ "label": "high_risk"
429
+ },
430
+ {
431
+ "transcript": "Your bank account login attempt detected. Reply with password instantly.",
432
+ "label": "high_risk"
433
+ },
434
+ {
435
+ "transcript": "Install this security patch from this link to fix malware issue.",
436
+ "label": "suspicious"
437
+ },
438
+ {
439
+ "transcript": "Government tax refund pending. Submit your bank details urgently.",
440
+ "label": "high_risk"
441
+ },
442
+ {
443
+ "transcript": "Click this website to unlock secret bonus reward limited time.",
444
+ "label": "suspicious"
445
+ },
446
+ {
447
+ "transcript": "Your electricity will disconnect unless you pay using this link.",
448
+ "label": "suspicious"
449
+ },
450
+ {
451
+ "transcript": "Your electricity will disconnect unless you pay using this link.",
452
+ "label": "suspicious"
453
+ },
454
+ {
455
+ "transcript": "Your electricity will disconnect unless you pay using this link.",
456
+ "label": "suspicious"
457
+ },
458
+ {
459
+ "transcript": "We detected new login from unknown device. Send latest OTP to secure.",
460
+ "label": "high_risk"
461
+ },
462
+ {
463
+ "transcript": "Meeting rescheduled to tomorrow evening 5pm.",
464
+ "label": "safe"
465
+ },
466
+ {
467
+ "transcript": "Hello I want to confirm my appointment tomorrow morning.",
468
+ "label": "safe"
469
+ },
470
+ {
471
+ "transcript": "Download this attachment to fix system failure.",
472
+ "label": "suspicious"
473
+ },
474
+ {
475
+ "transcript": "Please verify time available for call this evening.",
476
+ "label": "safe"
477
+ },
478
+ {
479
+ "transcript": "Meeting rescheduled to tomorrow evening 5pm.",
480
+ "label": "safe"
481
+ },
482
+ {
483
+ "transcript": "Hello I want to confirm my appointment tomorrow morning.",
484
+ "label": "safe"
485
+ },
486
+ {
487
+ "transcript": "You have won 48608 rupees gift reward, click link now to claim it.",
488
+ "label": "high_risk"
489
+ },
490
+ {
491
+ "transcript": "Please verify time available for call this evening.",
492
+ "label": "safe"
493
+ },
494
+ {
495
+ "transcript": "I want to upgrade my internet package next month.",
496
+ "label": "safe"
497
+ },
498
+ {
499
+ "transcript": "Your card will be terminated today unless you share CVV immediately.",
500
+ "label": "high_risk"
501
+ },
502
+ {
503
+ "transcript": "Your card will be terminated today unless you share CVV immediately.",
504
+ "label": "high_risk"
505
+ },
506
+ {
507
+ "transcript": "Your electricity will disconnect unless you pay using this link.",
508
+ "label": "suspicious"
509
+ },
510
+ {
511
+ "transcript": "Your bank account login attempt detected. Reply with password instantly.",
512
+ "label": "high_risk"
513
+ },
514
+ {
515
+ "transcript": "Install this security patch from this link to fix malware issue.",
516
+ "label": "suspicious"
517
+ },
518
+ {
519
+ "transcript": "You have won 399512 rupees gift reward, click link now to claim it.",
520
+ "label": "high_risk"
521
+ },
522
+ {
523
+ "transcript": "Can you send me the billing invoice for last month?",
524
+ "label": "safe"
525
+ },
526
+ {
527
+ "transcript": "Government tax refund pending. Submit your bank details urgently.",
528
+ "label": "high_risk"
529
+ },
530
+ {
531
+ "transcript": "Your bank account login attempt detected. Reply with password instantly.",
532
+ "label": "high_risk"
533
+ },
534
+ {
535
+ "transcript": "Will the delivery ship today or tomorrow?",
536
+ "label": "safe"
537
+ },
538
+ {
539
+ "transcript": "Click this website to unlock secret bonus reward limited time.",
540
+ "label": "suspicious"
541
+ },
542
+ {
543
+ "transcript": "Can you send me the billing invoice for last month?",
544
+ "label": "safe"
545
+ },
546
+ {
547
+ "transcript": "Hello I want to confirm my appointment tomorrow morning.",
548
+ "label": "safe"
549
+ },
550
+ {
551
+ "transcript": "Your bank account login attempt detected. Reply with password instantly.",
552
+ "label": "high_risk"
553
+ },
554
+ {
555
+ "transcript": "I want to upgrade my internet package next month.",
556
+ "label": "safe"
557
+ },
558
+ {
559
+ "transcript": "Please verify time available for call this evening.",
560
+ "label": "safe"
561
+ },
562
+ {
563
+ "transcript": "I want to upgrade my internet package next month.",
564
+ "label": "safe"
565
+ },
566
+ {
567
+ "transcript": "Your bank account login attempt detected. Reply with password instantly.",
568
+ "label": "high_risk"
569
+ },
570
+ {
571
+ "transcript": "Will the delivery ship today or tomorrow?",
572
+ "label": "safe"
573
+ },
574
+ {
575
+ "transcript": "Please verify time available for call this evening.",
576
+ "label": "safe"
577
+ },
578
+ {
579
+ "transcript": "Click this website to unlock secret bonus reward limited time.",
580
+ "label": "suspicious"
581
+ },
582
+ {
583
+ "transcript": "Hello I want to confirm my appointment tomorrow morning.",
584
+ "label": "safe"
585
+ },
586
+ {
587
+ "transcript": "Government tax refund pending. Submit your bank details urgently.",
588
+ "label": "high_risk"
589
+ },
590
+ {
591
+ "transcript": "Can you send me the billing invoice for last month?",
592
+ "label": "safe"
593
+ },
594
+ {
595
+ "transcript": "Install this security patch from this link to fix malware issue.",
596
+ "label": "suspicious"
597
+ },
598
+ {
599
+ "transcript": "Click this website to unlock secret bonus reward limited time.",
600
+ "label": "suspicious"
601
+ },
602
+ {
603
+ "transcript": "Install this security patch from this link to fix malware issue.",
604
+ "label": "suspicious"
605
+ },
606
+ {
607
+ "transcript": "I want to upgrade my internet package next month.",
608
+ "label": "safe"
609
+ },
610
+ {
611
+ "transcript": "Investment guaranteed 300 percent return. Join now via link.",
612
+ "label": "suspicious"
613
+ },
614
+ {
615
+ "transcript": "I want to upgrade my internet package next month.",
616
+ "label": "safe"
617
+ },
618
+ {
619
+ "transcript": "Your bank account login attempt detected. Reply with password instantly.",
620
+ "label": "high_risk"
621
+ },
622
+ {
623
+ "transcript": "You have won 418771 rupees gift reward, click link now to claim it.",
624
+ "label": "high_risk"
625
+ },
626
+ {
627
+ "transcript": "Install this security patch from this link to fix malware issue.",
628
+ "label": "suspicious"
629
+ },
630
+ {
631
+ "transcript": "Click this website to unlock secret bonus reward limited time.",
632
+ "label": "suspicious"
633
+ },
634
+ {
635
+ "transcript": "Can you send me the billing invoice for last month?",
636
+ "label": "safe"
637
+ },
638
+ {
639
+ "transcript": "Your electricity will disconnect unless you pay using this link.",
640
+ "label": "suspicious"
641
+ },
642
+ {
643
+ "transcript": "Download this attachment to fix system failure.",
644
+ "label": "suspicious"
645
+ },
646
+ {
647
+ "transcript": "Exclusive crypto trading group available. Send wallet phrase for join.",
648
+ "label": "suspicious"
649
+ },
650
+ {
651
+ "transcript": "Please verify time available for call this evening.",
652
+ "label": "safe"
653
+ },
654
+ {
655
+ "transcript": "Government tax refund pending. Submit your bank details urgently.",
656
+ "label": "high_risk"
657
+ },
658
+ {
659
+ "transcript": "Exclusive crypto trading group available. Send wallet phrase for join.",
660
+ "label": "suspicious"
661
+ },
662
+ {
663
+ "transcript": "Your OTP 237028 must be provided immediately to avoid your account getting blocked.",
664
+ "label": "high_risk"
665
+ },
666
+ {
667
+ "transcript": "Will the delivery ship today or tomorrow?",
668
+ "label": "safe"
669
+ },
670
+ {
671
+ "transcript": "I want to upgrade my internet package next month.",
672
+ "label": "safe"
673
+ },
674
+ {
675
+ "transcript": "Meeting rescheduled to tomorrow evening 5pm.",
676
+ "label": "safe"
677
+ },
678
+ {
679
+ "transcript": "Your electricity will disconnect unless you pay using this link.",
680
+ "label": "suspicious"
681
+ },
682
+ {
683
+ "transcript": "Install this security patch from this link to fix malware issue.",
684
+ "label": "suspicious"
685
+ },
686
+ {
687
+ "transcript": "Will the delivery ship today or tomorrow?",
688
+ "label": "safe"
689
+ },
690
+ {
691
+ "transcript": "Click this website to unlock secret bonus reward limited time.",
692
+ "label": "suspicious"
693
+ },
694
+ {
695
+ "transcript": "You have won 362013 rupees gift reward, click link now to claim it.",
696
+ "label": "high_risk"
697
+ },
698
+ {
699
+ "transcript": "Hello I want to confirm my appointment tomorrow morning.",
700
+ "label": "safe"
701
+ },
702
+ {
703
+ "transcript": "Can you send me the billing invoice for last month?",
704
+ "label": "safe"
705
+ },
706
+ {
707
+ "transcript": "Meeting rescheduled to tomorrow evening 5pm.",
708
+ "label": "safe"
709
+ },
710
+ {
711
+ "transcript": "Exclusive crypto trading group available. Send wallet phrase for join.",
712
+ "label": "suspicious"
713
+ },
714
+ {
715
+ "transcript": "Click this website to unlock secret bonus reward limited time.",
716
+ "label": "suspicious"
717
+ },
718
+ {
719
+ "transcript": "Government tax refund pending. Submit your bank details urgently.",
720
+ "label": "high_risk"
721
+ },
722
+ {
723
+ "transcript": "Exclusive crypto trading group available. Send wallet phrase for join.",
724
+ "label": "suspicious"
725
+ },
726
+ {
727
+ "transcript": "Your bank account login attempt detected. Reply with password instantly.",
728
+ "label": "high_risk"
729
+ },
730
+ {
731
+ "transcript": "Click this website to unlock secret bonus reward limited time.",
732
+ "label": "suspicious"
733
+ },
734
+ {
735
+ "transcript": "Meeting rescheduled to tomorrow evening 5pm.",
736
+ "label": "safe"
737
+ },
738
+ {
739
+ "transcript": "Your electricity will disconnect unless you pay using this link.",
740
+ "label": "suspicious"
741
+ },
742
+ {
743
+ "transcript": "Hello I want to confirm my appointment tomorrow morning.",
744
+ "label": "safe"
745
+ },
746
+ {
747
+ "transcript": "We detected new login from unknown device. Send latest OTP to secure.",
748
+ "label": "high_risk"
749
+ },
750
+ {
751
+ "transcript": "Please verify time available for call this evening.",
752
+ "label": "safe"
753
+ },
754
+ {
755
+ "transcript": "Exclusive crypto trading group available. Send wallet phrase for join.",
756
+ "label": "suspicious"
757
+ },
758
+ {
759
+ "transcript": "Download this attachment to fix system failure.",
760
+ "label": "suspicious"
761
+ },
762
+ {
763
+ "transcript": "Click this website to unlock secret bonus reward limited time.",
764
+ "label": "suspicious"
765
+ },
766
+ {
767
+ "transcript": "Government tax refund pending. Submit your bank details urgently.",
768
+ "label": "high_risk"
769
+ },
770
+ {
771
+ "transcript": "Can you send me the billing invoice for last month?",
772
+ "label": "safe"
773
+ },
774
+ {
775
+ "transcript": "Meeting rescheduled to tomorrow evening 5pm.",
776
+ "label": "safe"
777
+ },
778
+ {
779
+ "transcript": "Your OTP 853494 must be provided immediately to avoid your account getting blocked.",
780
+ "label": "high_risk"
781
+ },
782
+ {
783
+ "transcript": "Click this website to unlock secret bonus reward limited time.",
784
+ "label": "suspicious"
785
+ },
786
+ {
787
+ "transcript": "Download this attachment to fix system failure.",
788
+ "label": "suspicious"
789
+ },
790
+ {
791
+ "transcript": "Please verify time available for call this evening.",
792
+ "label": "safe"
793
+ },
794
+ {
795
+ "transcript": "Your bank account login attempt detected. Reply with password instantly.",
796
+ "label": "high_risk"
797
+ },
798
+ {
799
+ "transcript": "You have won 298486 rupees gift reward, click link now to claim it.",
800
+ "label": "high_risk"
801
+ },
802
+ {
803
+ "transcript": "Will the delivery ship today or tomorrow?",
804
+ "label": "safe"
805
+ },
806
+ {
807
+ "transcript": "Investment guaranteed 300 percent return. Join now via link.",
808
+ "label": "suspicious"
809
+ },
810
+ {
811
+ "transcript": "Investment guaranteed 300 percent return. Join now via link.",
812
+ "label": "suspicious"
813
+ },
814
+ {
815
+ "transcript": "Meeting rescheduled to tomorrow evening 5pm.",
816
+ "label": "safe"
817
+ },
818
+ {
819
+ "transcript": "Government tax refund pending. Submit your bank details urgently.",
820
+ "label": "high_risk"
821
+ },
822
+ {
823
+ "transcript": "Install this security patch from this link to fix malware issue.",
824
+ "label": "suspicious"
825
+ },
826
+ {
827
+ "transcript": "Your card will be terminated today unless you share CVV immediately.",
828
+ "label": "high_risk"
829
+ },
830
+ {
831
+ "transcript": "You have won 114587 rupees gift reward, click link now to claim it.",
832
+ "label": "high_risk"
833
+ },
834
+ {
835
+ "transcript": "Hello I want to confirm my appointment tomorrow morning.",
836
+ "label": "safe"
837
+ },
838
+ {
839
+ "transcript": "Your OTP 374051 must be provided immediately to avoid your account getting blocked.",
840
+ "label": "high_risk"
841
+ },
842
+ {
843
+ "transcript": "Your OTP 475678 must be provided immediately to avoid your account getting blocked.",
844
+ "label": "high_risk"
845
+ },
846
+ {
847
+ "transcript": "Download this attachment to fix system failure.",
848
+ "label": "suspicious"
849
+ },
850
+ {
851
+ "transcript": "Your card will be terminated today unless you share CVV immediately.",
852
+ "label": "high_risk"
853
+ },
854
+ {
855
+ "transcript": "Investment guaranteed 300 percent return. Join now via link.",
856
+ "label": "suspicious"
857
+ },
858
+ {
859
+ "transcript": "Exclusive crypto trading group available. Send wallet phrase for join.",
860
+ "label": "suspicious"
861
+ },
862
+ {
863
+ "transcript": "Click this website to unlock secret bonus reward limited time.",
864
+ "label": "suspicious"
865
+ },
866
+ {
867
+ "transcript": "Hello I want to confirm my appointment tomorrow morning.",
868
+ "label": "safe"
869
+ },
870
+ {
871
+ "transcript": "Your electricity will disconnect unless you pay using this link.",
872
+ "label": "suspicious"
873
+ },
874
+ {
875
+ "transcript": "Your card will be terminated today unless you share CVV immediately.",
876
+ "label": "high_risk"
877
+ },
878
+ {
879
+ "transcript": "I want to upgrade my internet package next month.",
880
+ "label": "safe"
881
+ },
882
+ {
883
+ "transcript": "Your card will be terminated today unless you share CVV immediately.",
884
+ "label": "high_risk"
885
+ },
886
+ {
887
+ "transcript": "We detected new login from unknown device. Send latest OTP to secure.",
888
+ "label": "high_risk"
889
+ },
890
+ {
891
+ "transcript": "Investment guaranteed 300 percent return. Join now via link.",
892
+ "label": "suspicious"
893
+ },
894
+ {
895
+ "transcript": "Your OTP 328511 must be provided immediately to avoid your account getting blocked.",
896
+ "label": "high_risk"
897
+ },
898
+ {
899
+ "transcript": "Your bank account login attempt detected. Reply with password instantly.",
900
+ "label": "high_risk"
901
+ },
902
+ {
903
+ "transcript": "I want to upgrade my internet package next month.",
904
+ "label": "safe"
905
+ },
906
+ {
907
+ "transcript": "Your card will be terminated today unless you share CVV immediately.",
908
+ "label": "high_risk"
909
+ },
910
+ {
911
+ "transcript": "Meeting rescheduled to tomorrow evening 5pm.",
912
+ "label": "safe"
913
+ },
914
+ {
915
+ "transcript": "Exclusive crypto trading group available. Send wallet phrase for join.",
916
+ "label": "suspicious"
917
+ },
918
+ {
919
+ "transcript": "Government tax refund pending. Submit your bank details urgently.",
920
+ "label": "high_risk"
921
+ },
922
+ {
923
+ "transcript": "Hello I want to confirm my appointment tomorrow morning.",
924
+ "label": "safe"
925
+ },
926
+ {
927
+ "transcript": "Exclusive crypto trading group available. Send wallet phrase for join.",
928
+ "label": "suspicious"
929
+ },
930
+ {
931
+ "transcript": "Click this website to unlock secret bonus reward limited time.",
932
+ "label": "suspicious"
933
+ },
934
+ {
935
+ "transcript": "I want to upgrade my internet package next month.",
936
+ "label": "safe"
937
+ },
938
+ {
939
+ "transcript": "I want to upgrade my internet package next month.",
940
+ "label": "safe"
941
+ },
942
+ {
943
+ "transcript": "Your electricity will disconnect unless you pay using this link.",
944
+ "label": "suspicious"
945
+ },
946
+ {
947
+ "transcript": "Your electricity will disconnect unless you pay using this link.",
948
+ "label": "suspicious"
949
+ },
950
+ {
951
+ "transcript": "Install this security patch from this link to fix malware issue.",
952
+ "label": "suspicious"
953
+ },
954
+ {
955
+ "transcript": "Your bank account login attempt detected. Reply with password instantly.",
956
+ "label": "high_risk"
957
+ },
958
+ {
959
+ "transcript": "Will the delivery ship today or tomorrow?",
960
+ "label": "safe"
961
+ },
962
+ {
963
+ "transcript": "Meeting rescheduled to tomorrow evening 5pm.",
964
+ "label": "safe"
965
+ },
966
+ {
967
+ "transcript": "Exclusive crypto trading group available. Send wallet phrase for join.",
968
+ "label": "suspicious"
969
+ },
970
+ {
971
+ "transcript": "Your bank account login attempt detected. Reply with password instantly.",
972
+ "label": "high_risk"
973
+ },
974
+ {
975
+ "transcript": "Your bank account login attempt detected. Reply with password instantly.",
976
+ "label": "high_risk"
977
+ },
978
+ {
979
+ "transcript": "Click this website to unlock secret bonus reward limited time.",
980
+ "label": "suspicious"
981
+ },
982
+ {
983
+ "transcript": "Install this security patch from this link to fix malware issue.",
984
+ "label": "suspicious"
985
+ },
986
+ {
987
+ "transcript": "You have won 116301 rupees gift reward, click link now to claim it.",
988
+ "label": "high_risk"
989
+ },
990
+ {
991
+ "transcript": "Download this attachment to fix system failure.",
992
+ "label": "suspicious"
993
+ },
994
+ {
995
+ "transcript": "Government tax refund pending. Submit your bank details urgently.",
996
+ "label": "high_risk"
997
+ },
998
+ {
999
+ "transcript": "You have won 218314 rupees gift reward, click link now to claim it.",
1000
+ "label": "high_risk"
1001
+ },
1002
+ {
1003
+ "transcript": "Hello I want to confirm my appointment tomorrow morning.",
1004
+ "label": "safe"
1005
+ },
1006
+ {
1007
+ "transcript": "Your card will be terminated today unless you share CVV immediately.",
1008
+ "label": "high_risk"
1009
+ },
1010
+ {
1011
+ "transcript": "I want to upgrade my internet package next month.",
1012
+ "label": "safe"
1013
+ },
1014
+ {
1015
+ "transcript": "Exclusive crypto trading group available. Send wallet phrase for join.",
1016
+ "label": "suspicious"
1017
+ },
1018
+ {
1019
+ "transcript": "You have won 165578 rupees gift reward, click link now to claim it.",
1020
+ "label": "high_risk"
1021
+ },
1022
+ {
1023
+ "transcript": "Hello I want to confirm my appointment tomorrow morning.",
1024
+ "label": "safe"
1025
+ },
1026
+ {
1027
+ "transcript": "Your bank account login attempt detected. Reply with password instantly.",
1028
+ "label": "high_risk"
1029
+ },
1030
+ {
1031
+ "transcript": "Investment guaranteed 300 percent return. Join now via link.",
1032
+ "label": "suspicious"
1033
+ },
1034
+ {
1035
+ "transcript": "Your bank account login attempt detected. Reply with password instantly.",
1036
+ "label": "high_risk"
1037
+ },
1038
+ {
1039
+ "transcript": "We detected new login from unknown device. Send latest OTP to secure.",
1040
+ "label": "high_risk"
1041
+ },
1042
+ {
1043
+ "transcript": "Please verify time available for call this evening.",
1044
+ "label": "safe"
1045
+ },
1046
+ {
1047
+ "transcript": "Your bank account login attempt detected. Reply with password instantly.",
1048
+ "label": "high_risk"
1049
+ },
1050
+ {
1051
+ "transcript": "Your bank account login attempt detected. Reply with password instantly.",
1052
+ "label": "high_risk"
1053
+ },
1054
+ {
1055
+ "transcript": "Your card will be terminated today unless you share CVV immediately.",
1056
+ "label": "high_risk"
1057
+ },
1058
+ {
1059
+ "transcript": "Will the delivery ship today or tomorrow?",
1060
+ "label": "safe"
1061
+ },
1062
+ {
1063
+ "transcript": "Will the delivery ship today or tomorrow?",
1064
+ "label": "safe"
1065
+ },
1066
+ {
1067
+ "transcript": "Download this attachment to fix system failure.",
1068
+ "label": "suspicious"
1069
+ },
1070
+ {
1071
+ "transcript": "We detected new login from unknown device. Send latest OTP to secure.",
1072
+ "label": "high_risk"
1073
+ },
1074
+ {
1075
+ "transcript": "Your electricity will disconnect unless you pay using this link.",
1076
+ "label": "suspicious"
1077
+ },
1078
+ {
1079
+ "transcript": "Can you send me the billing invoice for last month?",
1080
+ "label": "safe"
1081
+ },
1082
+ {
1083
+ "transcript": "Government tax refund pending. Submit your bank details urgently.",
1084
+ "label": "high_risk"
1085
+ },
1086
+ {
1087
+ "transcript": "We detected new login from unknown device. Send latest OTP to secure.",
1088
+ "label": "high_risk"
1089
+ },
1090
+ {
1091
+ "transcript": "Meeting rescheduled to tomorrow evening 5pm.",
1092
+ "label": "safe"
1093
+ },
1094
+ {
1095
+ "transcript": "Will the delivery ship today or tomorrow?",
1096
+ "label": "safe"
1097
+ },
1098
+ {
1099
+ "transcript": "Hello I want to confirm my appointment tomorrow morning.",
1100
+ "label": "safe"
1101
+ },
1102
+ {
1103
+ "transcript": "Install this security patch from this link to fix malware issue.",
1104
+ "label": "suspicious"
1105
+ },
1106
+ {
1107
+ "transcript": "Exclusive crypto trading group available. Send wallet phrase for join.",
1108
+ "label": "suspicious"
1109
+ },
1110
+ {
1111
+ "transcript": "Install this security patch from this link to fix malware issue.",
1112
+ "label": "suspicious"
1113
+ },
1114
+ {
1115
+ "transcript": "I want to upgrade my internet package next month.",
1116
+ "label": "safe"
1117
+ },
1118
+ {
1119
+ "transcript": "Hello I want to confirm my appointment tomorrow morning.",
1120
+ "label": "safe"
1121
+ },
1122
+ {
1123
+ "transcript": "Can you send me the billing invoice for last month?",
1124
+ "label": "safe"
1125
+ },
1126
+ {
1127
+ "transcript": "I want to upgrade my internet package next month.",
1128
+ "label": "safe"
1129
+ },
1130
+ {
1131
+ "transcript": "Hello I want to confirm my appointment tomorrow morning.",
1132
+ "label": "safe"
1133
+ },
1134
+ {
1135
+ "transcript": "You have won 489551 rupees gift reward, click link now to claim it.",
1136
+ "label": "high_risk"
1137
+ },
1138
+ {
1139
+ "transcript": "I want to upgrade my internet package next month.",
1140
+ "label": "safe"
1141
+ },
1142
+ {
1143
+ "transcript": "Your bank account login attempt detected. Reply with password instantly.",
1144
+ "label": "high_risk"
1145
+ },
1146
+ {
1147
+ "transcript": "Investment guaranteed 300 percent return. Join now via link.",
1148
+ "label": "suspicious"
1149
+ },
1150
+ {
1151
+ "transcript": "Install this security patch from this link to fix malware issue.",
1152
+ "label": "suspicious"
1153
+ },
1154
+ {
1155
+ "transcript": "Install this security patch from this link to fix malware issue.",
1156
+ "label": "suspicious"
1157
+ },
1158
+ {
1159
+ "transcript": "Hello I want to confirm my appointment tomorrow morning.",
1160
+ "label": "safe"
1161
+ },
1162
+ {
1163
+ "transcript": "Click this website to unlock secret bonus reward limited time.",
1164
+ "label": "suspicious"
1165
+ },
1166
+ {
1167
+ "transcript": "Install this security patch from this link to fix malware issue.",
1168
+ "label": "suspicious"
1169
+ },
1170
+ {
1171
+ "transcript": "Meeting rescheduled to tomorrow evening 5pm.",
1172
+ "label": "safe"
1173
+ },
1174
+ {
1175
+ "transcript": "Government tax refund pending. Submit your bank details urgently.",
1176
+ "label": "high_risk"
1177
+ },
1178
+ {
1179
+ "transcript": "Your electricity will disconnect unless you pay using this link.",
1180
+ "label": "suspicious"
1181
+ },
1182
+ {
1183
+ "transcript": "Install this security patch from this link to fix malware issue.",
1184
+ "label": "suspicious"
1185
+ },
1186
+ {
1187
+ "transcript": "You have won 411880 rupees gift reward, click link now to claim it.",
1188
+ "label": "high_risk"
1189
+ },
1190
+ {
1191
+ "transcript": "Please verify time available for call this evening.",
1192
+ "label": "safe"
1193
+ },
1194
+ {
1195
+ "transcript": "You have won 131230 rupees gift reward, click link now to claim it.",
1196
+ "label": "high_risk"
1197
+ },
1198
+ {
1199
+ "transcript": "I want to upgrade my internet package next month.",
1200
+ "label": "safe"
1201
+ },
1202
+ {
1203
+ "transcript": "Your OTP 925626 must be provided immediately to avoid your account getting blocked.",
1204
+ "label": "high_risk"
1205
+ },
1206
+ {
1207
+ "transcript": "You have won 417908 rupees gift reward, click link now to claim it.",
1208
+ "label": "high_risk"
1209
+ },
1210
+ {
1211
+ "transcript": "Your electricity will disconnect unless you pay using this link.",
1212
+ "label": "suspicious"
1213
+ },
1214
+ {
1215
+ "transcript": "I want to upgrade my internet package next month.",
1216
+ "label": "safe"
1217
+ },
1218
+ {
1219
+ "transcript": "Your bank account login attempt detected. Reply with password instantly.",
1220
+ "label": "high_risk"
1221
+ },
1222
+ {
1223
+ "transcript": "Hello I want to confirm my appointment tomorrow morning.",
1224
+ "label": "safe"
1225
+ },
1226
+ {
1227
+ "transcript": "Government tax refund pending. Submit your bank details urgently.",
1228
+ "label": "high_risk"
1229
+ },
1230
+ {
1231
+ "transcript": "We detected new login from unknown device. Send latest OTP to secure.",
1232
+ "label": "high_risk"
1233
+ },
1234
+ {
1235
+ "transcript": "Government tax refund pending. Submit your bank details urgently.",
1236
+ "label": "high_risk"
1237
+ },
1238
+ {
1239
+ "transcript": "Government tax refund pending. Submit your bank details urgently.",
1240
+ "label": "high_risk"
1241
+ },
1242
+ {
1243
+ "transcript": "We detected new login from unknown device. Send latest OTP to secure.",
1244
+ "label": "high_risk"
1245
+ },
1246
+ {
1247
+ "transcript": "Download this attachment to fix system failure.",
1248
+ "label": "suspicious"
1249
+ },
1250
+ {
1251
+ "transcript": "Hello I want to confirm my appointment tomorrow morning.",
1252
+ "label": "safe"
1253
+ },
1254
+ {
1255
+ "transcript": "Hello I want to confirm my appointment tomorrow morning.",
1256
+ "label": "safe"
1257
+ },
1258
+ {
1259
+ "transcript": "Please verify time available for call this evening.",
1260
+ "label": "safe"
1261
+ },
1262
+ {
1263
+ "transcript": "Exclusive crypto trading group available. Send wallet phrase for join.",
1264
+ "label": "suspicious"
1265
+ },
1266
+ {
1267
+ "transcript": "Download this attachment to fix system failure.",
1268
+ "label": "suspicious"
1269
+ },
1270
+ {
1271
+ "transcript": "Click this website to unlock secret bonus reward limited time.",
1272
+ "label": "suspicious"
1273
+ },
1274
+ {
1275
+ "transcript": "Your OTP 715343 must be provided immediately to avoid your account getting blocked.",
1276
+ "label": "high_risk"
1277
+ },
1278
+ {
1279
+ "transcript": "Download this attachment to fix system failure.",
1280
+ "label": "suspicious"
1281
+ },
1282
+ {
1283
+ "transcript": "Government tax refund pending. Submit your bank details urgently.",
1284
+ "label": "high_risk"
1285
+ },
1286
+ {
1287
+ "transcript": "Your OTP 246558 must be provided immediately to avoid your account getting blocked.",
1288
+ "label": "high_risk"
1289
+ },
1290
+ {
1291
+ "transcript": "Install this security patch from this link to fix malware issue.",
1292
+ "label": "suspicious"
1293
+ },
1294
+ {
1295
+ "transcript": "Please verify time available for call this evening.",
1296
+ "label": "safe"
1297
+ },
1298
+ {
1299
+ "transcript": "Meeting rescheduled to tomorrow evening 5pm.",
1300
+ "label": "safe"
1301
+ },
1302
+ {
1303
+ "transcript": "Please verify time available for call this evening.",
1304
+ "label": "safe"
1305
+ },
1306
+ {
1307
+ "transcript": "Please verify time available for call this evening.",
1308
+ "label": "safe"
1309
+ },
1310
+ {
1311
+ "transcript": "Meeting rescheduled to tomorrow evening 5pm.",
1312
+ "label": "safe"
1313
+ },
1314
+ {
1315
+ "transcript": "Government tax refund pending. Submit your bank details urgently.",
1316
+ "label": "high_risk"
1317
+ },
1318
+ {
1319
+ "transcript": "Will the delivery ship today or tomorrow?",
1320
+ "label": "safe"
1321
+ },
1322
+ {
1323
+ "transcript": "Government tax refund pending. Submit your bank details urgently.",
1324
+ "label": "high_risk"
1325
+ },
1326
+ {
1327
+ "transcript": "Download this attachment to fix system failure.",
1328
+ "label": "suspicious"
1329
+ },
1330
+ {
1331
+ "transcript": "Investment guaranteed 300 percent return. Join now via link.",
1332
+ "label": "suspicious"
1333
+ },
1334
+ {
1335
+ "transcript": "Click this website to unlock secret bonus reward limited time.",
1336
+ "label": "suspicious"
1337
+ },
1338
+ {
1339
+ "transcript": "I want to upgrade my internet package next month.",
1340
+ "label": "safe"
1341
+ },
1342
+ {
1343
+ "transcript": "Can you send me the billing invoice for last month?",
1344
+ "label": "safe"
1345
+ },
1346
+ {
1347
+ "transcript": "Your bank account login attempt detected. Reply with password instantly.",
1348
+ "label": "high_risk"
1349
+ },
1350
+ {
1351
+ "transcript": "Download this attachment to fix system failure.",
1352
+ "label": "suspicious"
1353
+ },
1354
+ {
1355
+ "transcript": "Government tax refund pending. Submit your bank details urgently.",
1356
+ "label": "high_risk"
1357
+ },
1358
+ {
1359
+ "transcript": "Your card will be terminated today unless you share CVV immediately.",
1360
+ "label": "high_risk"
1361
+ },
1362
+ {
1363
+ "transcript": "Can you send me the billing invoice for last month?",
1364
+ "label": "safe"
1365
+ },
1366
+ {
1367
+ "transcript": "Government tax refund pending. Submit your bank details urgently.",
1368
+ "label": "high_risk"
1369
+ },
1370
+ {
1371
+ "transcript": "Meeting rescheduled to tomorrow evening 5pm.",
1372
+ "label": "safe"
1373
+ },
1374
+ {
1375
+ "transcript": "Download this attachment to fix system failure.",
1376
+ "label": "suspicious"
1377
+ },
1378
+ {
1379
+ "transcript": "You have won 93938 rupees gift reward, click link now to claim it.",
1380
+ "label": "high_risk"
1381
+ },
1382
+ {
1383
+ "transcript": "Please verify time available for call this evening.",
1384
+ "label": "safe"
1385
+ },
1386
+ {
1387
+ "transcript": "Meeting rescheduled to tomorrow evening 5pm.",
1388
+ "label": "safe"
1389
+ },
1390
+ {
1391
+ "transcript": "We detected new login from unknown device. Send latest OTP to secure.",
1392
+ "label": "high_risk"
1393
+ },
1394
+ {
1395
+ "transcript": "Your electricity will disconnect unless you pay using this link.",
1396
+ "label": "suspicious"
1397
+ },
1398
+ {
1399
+ "transcript": "Meeting rescheduled to tomorrow evening 5pm.",
1400
+ "label": "safe"
1401
+ },
1402
+ {
1403
+ "transcript": "Your OTP 283075 must be provided immediately to avoid your account getting blocked.",
1404
+ "label": "high_risk"
1405
+ },
1406
+ {
1407
+ "transcript": "Click this website to unlock secret bonus reward limited time.",
1408
+ "label": "suspicious"
1409
+ },
1410
+ {
1411
+ "transcript": "Download this attachment to fix system failure.",
1412
+ "label": "suspicious"
1413
+ },
1414
+ {
1415
+ "transcript": "We detected new login from unknown device. Send latest OTP to secure.",
1416
+ "label": "high_risk"
1417
+ },
1418
+ {
1419
+ "transcript": "Download this attachment to fix system failure.",
1420
+ "label": "suspicious"
1421
+ },
1422
+ {
1423
+ "transcript": "Your electricity will disconnect unless you pay using this link.",
1424
+ "label": "suspicious"
1425
+ },
1426
+ {
1427
+ "transcript": "Investment guaranteed 300 percent return. Join now via link.",
1428
+ "label": "suspicious"
1429
+ },
1430
+ {
1431
+ "transcript": "Meeting rescheduled to tomorrow evening 5pm.",
1432
+ "label": "safe"
1433
+ },
1434
+ {
1435
+ "transcript": "Please verify time available for call this evening.",
1436
+ "label": "safe"
1437
+ },
1438
+ {
1439
+ "transcript": "Hello I want to confirm my appointment tomorrow morning.",
1440
+ "label": "safe"
1441
+ },
1442
+ {
1443
+ "transcript": "Will the delivery ship today or tomorrow?",
1444
+ "label": "safe"
1445
+ },
1446
+ {
1447
+ "transcript": "Will the delivery ship today or tomorrow?",
1448
+ "label": "safe"
1449
+ },
1450
+ {
1451
+ "transcript": "Can you send me the billing invoice for last month?",
1452
+ "label": "safe"
1453
+ },
1454
+ {
1455
+ "transcript": "Government tax refund pending. Submit your bank details urgently.",
1456
+ "label": "high_risk"
1457
+ },
1458
+ {
1459
+ "transcript": "Will the delivery ship today or tomorrow?",
1460
+ "label": "safe"
1461
+ },
1462
+ {
1463
+ "transcript": "Will the delivery ship today or tomorrow?",
1464
+ "label": "safe"
1465
+ },
1466
+ {
1467
+ "transcript": "Exclusive crypto trading group available. Send wallet phrase for join.",
1468
+ "label": "suspicious"
1469
+ },
1470
+ {
1471
+ "transcript": "Hello I want to confirm my appointment tomorrow morning.",
1472
+ "label": "safe"
1473
+ },
1474
+ {
1475
+ "transcript": "Can you send me the billing invoice for last month?",
1476
+ "label": "safe"
1477
+ },
1478
+ {
1479
+ "transcript": "Meeting rescheduled to tomorrow evening 5pm.",
1480
+ "label": "safe"
1481
+ },
1482
+ {
1483
+ "transcript": "Your electricity will disconnect unless you pay using this link.",
1484
+ "label": "suspicious"
1485
+ },
1486
+ {
1487
+ "transcript": "Hello I want to confirm my appointment tomorrow morning.",
1488
+ "label": "safe"
1489
+ },
1490
+ {
1491
+ "transcript": "I want to upgrade my internet package next month.",
1492
+ "label": "safe"
1493
+ },
1494
+ {
1495
+ "transcript": "We detected new login from unknown device. Send latest OTP to secure.",
1496
+ "label": "high_risk"
1497
+ },
1498
+ {
1499
+ "transcript": "Your bank account login attempt detected. Reply with password instantly.",
1500
+ "label": "high_risk"
1501
+ },
1502
+ {
1503
+ "transcript": "Exclusive crypto trading group available. Send wallet phrase for join.",
1504
+ "label": "suspicious"
1505
+ },
1506
+ {
1507
+ "transcript": "Click this website to unlock secret bonus reward limited time.",
1508
+ "label": "suspicious"
1509
+ },
1510
+ {
1511
+ "transcript": "I want to upgrade my internet package next month.",
1512
+ "label": "safe"
1513
+ },
1514
+ {
1515
+ "transcript": "Hello I want to confirm my appointment tomorrow morning.",
1516
+ "label": "safe"
1517
+ },
1518
+ {
1519
+ "transcript": "Download this attachment to fix system failure.",
1520
+ "label": "suspicious"
1521
+ },
1522
+ {
1523
+ "transcript": "Download this attachment to fix system failure.",
1524
+ "label": "suspicious"
1525
+ },
1526
+ {
1527
+ "transcript": "Your bank account login attempt detected. Reply with password instantly.",
1528
+ "label": "high_risk"
1529
+ },
1530
+ {
1531
+ "transcript": "Can you send me the billing invoice for last month?",
1532
+ "label": "safe"
1533
+ },
1534
+ {
1535
+ "transcript": "Meeting rescheduled to tomorrow evening 5pm.",
1536
+ "label": "safe"
1537
+ },
1538
+ {
1539
+ "transcript": "Please verify time available for call this evening.",
1540
+ "label": "safe"
1541
+ },
1542
+ {
1543
+ "transcript": "You have won 332699 rupees gift reward, click link now to claim it.",
1544
+ "label": "high_risk"
1545
+ },
1546
+ {
1547
+ "transcript": "Please verify time available for call this evening.",
1548
+ "label": "safe"
1549
+ },
1550
+ {
1551
+ "transcript": "Investment guaranteed 300 percent return. Join now via link.",
1552
+ "label": "suspicious"
1553
+ },
1554
+ {
1555
+ "transcript": "Download this attachment to fix system failure.",
1556
+ "label": "suspicious"
1557
+ },
1558
+ {
1559
+ "transcript": "Hello I want to confirm my appointment tomorrow morning.",
1560
+ "label": "safe"
1561
+ },
1562
+ {
1563
+ "transcript": "Your bank account login attempt detected. Reply with password instantly.",
1564
+ "label": "high_risk"
1565
+ },
1566
+ {
1567
+ "transcript": "I want to upgrade my internet package next month.",
1568
+ "label": "safe"
1569
+ },
1570
+ {
1571
+ "transcript": "Government tax refund pending. Submit your bank details urgently.",
1572
+ "label": "high_risk"
1573
+ },
1574
+ {
1575
+ "transcript": "Click this website to unlock secret bonus reward limited time.",
1576
+ "label": "suspicious"
1577
+ },
1578
+ {
1579
+ "transcript": "Click this website to unlock secret bonus reward limited time.",
1580
+ "label": "suspicious"
1581
+ },
1582
+ {
1583
+ "transcript": "We detected new login from unknown device. Send latest OTP to secure.",
1584
+ "label": "high_risk"
1585
+ },
1586
+ {
1587
+ "transcript": "Will the delivery ship today or tomorrow?",
1588
+ "label": "safe"
1589
+ },
1590
+ {
1591
+ "transcript": "Investment guaranteed 300 percent return. Join now via link.",
1592
+ "label": "suspicious"
1593
+ },
1594
+ {
1595
+ "transcript": "Your OTP 714849 must be provided immediately to avoid your account getting blocked.",
1596
+ "label": "high_risk"
1597
+ },
1598
+ {
1599
+ "transcript": "Exclusive crypto trading group available. Send wallet phrase for join.",
1600
+ "label": "suspicious"
1601
+ },
1602
+ {
1603
+ "transcript": "We detected new login from unknown device. Send latest OTP to secure.",
1604
+ "label": "high_risk"
1605
+ },
1606
+ {
1607
+ "transcript": "Install this security patch from this link to fix malware issue.",
1608
+ "label": "suspicious"
1609
+ },
1610
+ {
1611
+ "transcript": "I want to upgrade my internet package next month.",
1612
+ "label": "safe"
1613
+ },
1614
+ {
1615
+ "transcript": "Hello I want to confirm my appointment tomorrow morning.",
1616
+ "label": "safe"
1617
+ },
1618
+ {
1619
+ "transcript": "I want to upgrade my internet package next month.",
1620
+ "label": "safe"
1621
+ },
1622
+ {
1623
+ "transcript": "Exclusive crypto trading group available. Send wallet phrase for join.",
1624
+ "label": "suspicious"
1625
+ },
1626
+ {
1627
+ "transcript": "I want to upgrade my internet package next month.",
1628
+ "label": "safe"
1629
+ },
1630
+ {
1631
+ "transcript": "Government tax refund pending. Submit your bank details urgently.",
1632
+ "label": "high_risk"
1633
+ },
1634
+ {
1635
+ "transcript": "Can you send me the billing invoice for last month?",
1636
+ "label": "safe"
1637
+ },
1638
+ {
1639
+ "transcript": "Your OTP 558890 must be provided immediately to avoid your account getting blocked.",
1640
+ "label": "high_risk"
1641
+ },
1642
+ {
1643
+ "transcript": "Will the delivery ship today or tomorrow?",
1644
+ "label": "safe"
1645
+ },
1646
+ {
1647
+ "transcript": "Your card will be terminated today unless you share CVV immediately.",
1648
+ "label": "high_risk"
1649
+ },
1650
+ {
1651
+ "transcript": "Your card will be terminated today unless you share CVV immediately.",
1652
+ "label": "high_risk"
1653
+ },
1654
+ {
1655
+ "transcript": "Government tax refund pending. Submit your bank details urgently.",
1656
+ "label": "high_risk"
1657
+ },
1658
+ {
1659
+ "transcript": "Meeting rescheduled to tomorrow evening 5pm.",
1660
+ "label": "safe"
1661
+ },
1662
+ {
1663
+ "transcript": "I want to upgrade my internet package next month.",
1664
+ "label": "safe"
1665
+ },
1666
+ {
1667
+ "transcript": "Install this security patch from this link to fix malware issue.",
1668
+ "label": "suspicious"
1669
+ },
1670
+ {
1671
+ "transcript": "Install this security patch from this link to fix malware issue.",
1672
+ "label": "suspicious"
1673
+ },
1674
+ {
1675
+ "transcript": "Hello I want to confirm my appointment tomorrow morning.",
1676
+ "label": "safe"
1677
+ },
1678
+ {
1679
+ "transcript": "I want to upgrade my internet package next month.",
1680
+ "label": "safe"
1681
+ },
1682
+ {
1683
+ "transcript": "I want to upgrade my internet package next month.",
1684
+ "label": "safe"
1685
+ },
1686
+ {
1687
+ "transcript": "Exclusive crypto trading group available. Send wallet phrase for join.",
1688
+ "label": "suspicious"
1689
+ },
1690
+ {
1691
+ "transcript": "Please verify time available for call this evening.",
1692
+ "label": "safe"
1693
+ },
1694
+ {
1695
+ "transcript": "Your card will be terminated today unless you share CVV immediately.",
1696
+ "label": "high_risk"
1697
+ },
1698
+ {
1699
+ "transcript": "Your OTP 990868 must be provided immediately to avoid your account getting blocked.",
1700
+ "label": "high_risk"
1701
+ },
1702
+ {
1703
+ "transcript": "Exclusive crypto trading group available. Send wallet phrase for join.",
1704
+ "label": "suspicious"
1705
+ },
1706
+ {
1707
+ "transcript": "We detected new login from unknown device. Send latest OTP to secure.",
1708
+ "label": "high_risk"
1709
+ },
1710
+ {
1711
+ "transcript": "Exclusive crypto trading group available. Send wallet phrase for join.",
1712
+ "label": "suspicious"
1713
+ },
1714
+ {
1715
+ "transcript": "Your electricity will disconnect unless you pay using this link.",
1716
+ "label": "suspicious"
1717
+ },
1718
+ {
1719
+ "transcript": "Will the delivery ship today or tomorrow?",
1720
+ "label": "safe"
1721
+ },
1722
+ {
1723
+ "transcript": "Meeting rescheduled to tomorrow evening 5pm.",
1724
+ "label": "safe"
1725
+ },
1726
+ {
1727
+ "transcript": "Can you send me the billing invoice for last month?",
1728
+ "label": "safe"
1729
+ },
1730
+ {
1731
+ "transcript": "Your OTP 349958 must be provided immediately to avoid your account getting blocked.",
1732
+ "label": "high_risk"
1733
+ },
1734
+ {
1735
+ "transcript": "Investment guaranteed 300 percent return. Join now via link.",
1736
+ "label": "suspicious"
1737
+ },
1738
+ {
1739
+ "transcript": "Will the delivery ship today or tomorrow?",
1740
+ "label": "safe"
1741
+ },
1742
+ {
1743
+ "transcript": "Install this security patch from this link to fix malware issue.",
1744
+ "label": "suspicious"
1745
+ },
1746
+ {
1747
+ "transcript": "Investment guaranteed 300 percent return. Join now via link.",
1748
+ "label": "suspicious"
1749
+ },
1750
+ {
1751
+ "transcript": "Your bank account login attempt detected. Reply with password instantly.",
1752
+ "label": "high_risk"
1753
+ },
1754
+ {
1755
+ "transcript": "Please verify time available for call this evening.",
1756
+ "label": "safe"
1757
+ },
1758
+ {
1759
+ "transcript": "Will the delivery ship today or tomorrow?",
1760
+ "label": "safe"
1761
+ },
1762
+ {
1763
+ "transcript": "Your OTP 544519 must be provided immediately to avoid your account getting blocked.",
1764
+ "label": "high_risk"
1765
+ },
1766
+ {
1767
+ "transcript": "Install this security patch from this link to fix malware issue.",
1768
+ "label": "suspicious"
1769
+ },
1770
+ {
1771
+ "transcript": "Your electricity will disconnect unless you pay using this link.",
1772
+ "label": "suspicious"
1773
+ },
1774
+ {
1775
+ "transcript": "Investment guaranteed 300 percent return. Join now via link.",
1776
+ "label": "suspicious"
1777
+ },
1778
+ {
1779
+ "transcript": "Your card will be terminated today unless you share CVV immediately.",
1780
+ "label": "high_risk"
1781
+ },
1782
+ {
1783
+ "transcript": "Your bank account login attempt detected. Reply with password instantly.",
1784
+ "label": "high_risk"
1785
+ },
1786
+ {
1787
+ "transcript": "Click this website to unlock secret bonus reward limited time.",
1788
+ "label": "suspicious"
1789
+ },
1790
+ {
1791
+ "transcript": "Click this website to unlock secret bonus reward limited time.",
1792
+ "label": "suspicious"
1793
+ },
1794
+ {
1795
+ "transcript": "Click this website to unlock secret bonus reward limited time.",
1796
+ "label": "suspicious"
1797
+ },
1798
+ {
1799
+ "transcript": "Government tax refund pending. Submit your bank details urgently.",
1800
+ "label": "high_risk"
1801
+ },
1802
+ {
1803
+ "transcript": "Your card will be terminated today unless you share CVV immediately.",
1804
+ "label": "high_risk"
1805
+ },
1806
+ {
1807
+ "transcript": "Please verify time available for call this evening.",
1808
+ "label": "safe"
1809
+ },
1810
+ {
1811
+ "transcript": "Download this attachment to fix system failure.",
1812
+ "label": "suspicious"
1813
+ },
1814
+ {
1815
+ "transcript": "Please verify time available for call this evening.",
1816
+ "label": "safe"
1817
+ },
1818
+ {
1819
+ "transcript": "Exclusive crypto trading group available. Send wallet phrase for join.",
1820
+ "label": "suspicious"
1821
+ },
1822
+ {
1823
+ "transcript": "Investment guaranteed 300 percent return. Join now via link.",
1824
+ "label": "suspicious"
1825
+ },
1826
+ {
1827
+ "transcript": "Can you send me the billing invoice for last month?",
1828
+ "label": "safe"
1829
+ },
1830
+ {
1831
+ "transcript": "Your bank account login attempt detected. Reply with password instantly.",
1832
+ "label": "high_risk"
1833
+ },
1834
+ {
1835
+ "transcript": "Government tax refund pending. Submit your bank details urgently.",
1836
+ "label": "high_risk"
1837
+ },
1838
+ {
1839
+ "transcript": "Investment guaranteed 300 percent return. Join now via link.",
1840
+ "label": "suspicious"
1841
+ },
1842
+ {
1843
+ "transcript": "You have won 137497 rupees gift reward, click link now to claim it.",
1844
+ "label": "high_risk"
1845
+ },
1846
+ {
1847
+ "transcript": "I want to upgrade my internet package next month.",
1848
+ "label": "safe"
1849
+ },
1850
+ {
1851
+ "transcript": "We detected new login from unknown device. Send latest OTP to secure.",
1852
+ "label": "high_risk"
1853
+ },
1854
+ {
1855
+ "transcript": "Meeting rescheduled to tomorrow evening 5pm.",
1856
+ "label": "safe"
1857
+ },
1858
+ {
1859
+ "transcript": "Your electricity will disconnect unless you pay using this link.",
1860
+ "label": "suspicious"
1861
+ },
1862
+ {
1863
+ "transcript": "Please verify time available for call this evening.",
1864
+ "label": "safe"
1865
+ },
1866
+ {
1867
+ "transcript": "We detected new login from unknown device. Send latest OTP to secure.",
1868
+ "label": "high_risk"
1869
+ },
1870
+ {
1871
+ "transcript": "Download this attachment to fix system failure.",
1872
+ "label": "suspicious"
1873
+ },
1874
+ {
1875
+ "transcript": "Will the delivery ship today or tomorrow?",
1876
+ "label": "safe"
1877
+ },
1878
+ {
1879
+ "transcript": "Please verify time available for call this evening.",
1880
+ "label": "safe"
1881
+ },
1882
+ {
1883
+ "transcript": "Install this security patch from this link to fix malware issue.",
1884
+ "label": "suspicious"
1885
+ },
1886
+ {
1887
+ "transcript": "Meeting rescheduled to tomorrow evening 5pm.",
1888
+ "label": "safe"
1889
+ },
1890
+ {
1891
+ "transcript": "Your OTP 337405 must be provided immediately to avoid your account getting blocked.",
1892
+ "label": "high_risk"
1893
+ },
1894
+ {
1895
+ "transcript": "Government tax refund pending. Submit your bank details urgently.",
1896
+ "label": "high_risk"
1897
+ },
1898
+ {
1899
+ "transcript": "Your bank account login attempt detected. Reply with password instantly.",
1900
+ "label": "high_risk"
1901
+ },
1902
+ {
1903
+ "transcript": "Investment guaranteed 300 percent return. Join now via link.",
1904
+ "label": "suspicious"
1905
+ },
1906
+ {
1907
+ "transcript": "Meeting rescheduled to tomorrow evening 5pm.",
1908
+ "label": "safe"
1909
+ },
1910
+ {
1911
+ "transcript": "Will the delivery ship today or tomorrow?",
1912
+ "label": "safe"
1913
+ },
1914
+ {
1915
+ "transcript": "Can you send me the billing invoice for last month?",
1916
+ "label": "safe"
1917
+ },
1918
+ {
1919
+ "transcript": "Government tax refund pending. Submit your bank details urgently.",
1920
+ "label": "high_risk"
1921
+ },
1922
+ {
1923
+ "transcript": "Meeting rescheduled to tomorrow evening 5pm.",
1924
+ "label": "safe"
1925
+ },
1926
+ {
1927
+ "transcript": "I want to upgrade my internet package next month.",
1928
+ "label": "safe"
1929
+ },
1930
+ {
1931
+ "transcript": "Install this security patch from this link to fix malware issue.",
1932
+ "label": "suspicious"
1933
+ },
1934
+ {
1935
+ "transcript": "Click this website to unlock secret bonus reward limited time.",
1936
+ "label": "suspicious"
1937
+ },
1938
+ {
1939
+ "transcript": "I want to upgrade my internet package next month.",
1940
+ "label": "safe"
1941
+ },
1942
+ {
1943
+ "transcript": "Click this website to unlock secret bonus reward limited time.",
1944
+ "label": "suspicious"
1945
+ },
1946
+ {
1947
+ "transcript": "Investment guaranteed 300 percent return. Join now via link.",
1948
+ "label": "suspicious"
1949
+ },
1950
+ {
1951
+ "transcript": "Please verify time available for call this evening.",
1952
+ "label": "safe"
1953
+ },
1954
+ {
1955
+ "transcript": "Exclusive crypto trading group available. Send wallet phrase for join.",
1956
+ "label": "suspicious"
1957
+ },
1958
+ {
1959
+ "transcript": "You have won 132099 rupees gift reward, click link now to claim it.",
1960
+ "label": "high_risk"
1961
+ },
1962
+ {
1963
+ "transcript": "Download this attachment to fix system failure.",
1964
+ "label": "suspicious"
1965
+ },
1966
+ {
1967
+ "transcript": "Your card will be terminated today unless you share CVV immediately.",
1968
+ "label": "high_risk"
1969
+ },
1970
+ {
1971
+ "transcript": "Exclusive crypto trading group available. Send wallet phrase for join.",
1972
+ "label": "suspicious"
1973
+ },
1974
+ {
1975
+ "transcript": "Please verify time available for call this evening.",
1976
+ "label": "safe"
1977
+ },
1978
+ {
1979
+ "transcript": "We detected new login from unknown device. Send latest OTP to secure.",
1980
+ "label": "high_risk"
1981
+ },
1982
+ {
1983
+ "transcript": "Will the delivery ship today or tomorrow?",
1984
+ "label": "safe"
1985
+ },
1986
+ {
1987
+ "transcript": "You have won 311713 rupees gift reward, click link now to claim it.",
1988
+ "label": "high_risk"
1989
+ },
1990
+ {
1991
+ "transcript": "Investment guaranteed 300 percent return. Join now via link.",
1992
+ "label": "suspicious"
1993
+ },
1994
+ {
1995
+ "transcript": "Investment guaranteed 300 percent return. Join now via link.",
1996
+ "label": "suspicious"
1997
+ },
1998
+ {
1999
+ "transcript": "Hello I want to confirm my appointment tomorrow morning.",
2000
+ "label": "safe"
2001
+ }
2002
+ ]
lstm_model.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:34251cdb99b948800e6172600e2217bc3873d9736e3141f65dd5494762c3bfea
3
+ size 919266
requirements.txt ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ torch
2
+ gradio
3
+ numpy
4
+ pickle-mixin
vocab.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5d2b150af85d7d157eab9fcbda5724355d00532ea9b9ee8db61eb0e011d438d8
3
+ size 2476