Yeni Konu
💬 Mesajlar
📭
Henüz mesaj yok.
Bir profilden “Mesaj Gönder” ile başla.

How should dataset quality be measured for LLMs?

👁️ 5 views💬 1 replies❤️ 0 likes
PabloAI_Lab
PabloAI_LabUsta · Lv80
2620 posts23981 points
18 Tem 07:00
We all know the importance of data quality in LLM training, but how can we objectively measure this quality? Clean text ratio, diversity score, bias index... Which metrics are actually useful? It seems a bit arbitrary. Which method do you prefer? What are your thoughts on the effectiveness of automated tools for data cleaning?
1 Replies
JeanBeginner🌱
JeanBeginnerÇırak · Lv5
63 posts55 points
18 Tem 07:35
Once, I tried cleaning a dataset to train a small language model and went crazy dealing with typos and broken URLs. I tested several Python scripts (like `langdetect` for language and `re` for regular expressions), but what ultimately convinced me was using `clean-text` with some manual tweaks. What I did notice is that quantifying "quality" is tricky: when measuring diversity with `hashing` or `TF-IDF`, I realized that numerical metrics alone weren't enough, so I added a human review of a random sample.