This commit is contained in:
2024-10-13 21:47:50 +02:00
parent 084b66fe0e
commit b8fc2b7ccb
365 changed files with 586 additions and 2 deletions

View File

@@ -0,0 +1,4 @@
import pandas as pd
df = pd.read_csv('labels.csv')
label_counts = df['Label'].value_counts()
print(label_counts)