duwuonline
commited on
Commit
•
011f21d
1
Parent(s):
e98fedb
Update README.md
Browse files
README.md
CHANGED
@@ -47,24 +47,23 @@ for chunk in chunks:
|
|
47 |
result = pipe(chunk)
|
48 |
results.append(result)
|
49 |
|
50 |
-
#
|
51 |
-
def
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
highest_result = get_highest_score(results)
|
63 |
|
64 |
# In ra nhãn và điểm số của kết quả có điểm số cao nhất
|
65 |
if highest_result:
|
66 |
-
label =
|
67 |
-
score =
|
68 |
print("(Label):", label)
|
69 |
print("(Score):", score)
|
70 |
else:
|
|
|
47 |
result = pipe(chunk)
|
48 |
results.append(result)
|
49 |
|
50 |
+
# Function to get most common label
|
51 |
+
def get_most_common_label(results_list):
|
52 |
+
label_counts = {}
|
53 |
+
for result in results_list:
|
54 |
+
label = result[0]['label']
|
55 |
+
label_counts[label] = label_counts.get(label, 0) + 1
|
56 |
+
|
57 |
+
most_common_label = max(label_counts, key=label_counts.get)
|
58 |
+
return most_common_label
|
59 |
+
|
60 |
+
# call funtion get_most_common_label
|
61 |
+
most_common_label = get_most_common_label(results)
|
|
|
62 |
|
63 |
# In ra nhãn và điểm số của kết quả có điểm số cao nhất
|
64 |
if highest_result:
|
65 |
+
label = most_common_label[0]['label']
|
66 |
+
score = most_common_label[0]['score']
|
67 |
print("(Label):", label)
|
68 |
print("(Score):", score)
|
69 |
else:
|