duwuonline commited on
Commit
011f21d
1 Parent(s): e98fedb

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -15
README.md CHANGED
@@ -47,24 +47,23 @@ for chunk in chunks:
47
  result = pipe(chunk)
48
  results.append(result)
49
 
50
- # Hàm để tìm kết quả có điểm số cao nhất
51
- def get_highest_score(result_list):
52
- highest_score = -1
53
- highest_result = None
54
- for result in result_list:
55
- score = result[0]['score']
56
- if score > highest_score:
57
- highest_score = score
58
- highest_result = result
59
- return highest_result
60
-
61
- # call funtion get_highest_score
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 = highest_result[0]['label']
67
- score = highest_result[0]['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: