coolblaze03's picture
Upload folder using huggingface_hub
1514a0b verified
Raw
History Blame Contribute Delete
210 Bytes
def max_occurrences(list1):
max_val = 0
result = list1[0]
for i in list1:
occu = list1.count(i)
if occu > max_val:
max_val = occu
result = i
return result