CoolFace
Datasetpublic

sumya123/students-subject-preferences

Students' Subject Preferences A small survey-style dataset recording which school subjects five students like and dislike. Each row is one student: their ID, the subjects they named as favorites, and the subjects they named as least favorites. Subject names are in Mongolian Cyrillic. Files File Rows Description data/train.jsonl 5 One JSON object per student Schema Column Type Description student_id int Student identifier… See the full description on the dataset page: https://huggingface.co/datasets/sumya123/students-subject-preferences.

sourceHugging Facecc-by-4.0updated 10d agoView on Hugging Face
0likes26downloads
Dataset Card

Students' Subject Preferences

A small survey-style dataset recording which school subjects five students like and dislike. Each row is one student: their ID, the subjects they named as favorites, and the subjects they named as least favorites. Subject names are in Mongolian Cyrillic.

Files

FileRowsDescription
data/train.jsonl5One JSON object per student

Schema

ColumnTypeDescription
student_idintStudent identifier, 1–5
favorite_subjectslist[string]Subjects the student likes (up to 3, in the order given)
least_favorite_subjectslist[string]Subjects the student dislikes (up to 3, in the order given)

Example row

json
{
  "student_id": 2,
  "favorite_subjects": ["Тамир", "Эрүүл мэнд", "Нийгэм"],
  "least_favorite_subjects": ["Монгол хэл", "Математик", "Уран зохиол"]
}

Loading

python
from datasets import load_dataset

ds = load_dataset("sumya123/students-subject-preferences")
print(ds["train"][0])

Notes on collection and normalisation

  • The raw responses were written in Latin-script Mongolian; subject names here are normalised to standard Mongolian Cyrillic spellings. The mapping applied was: Angli helАнгли хэл, niigemНийгэм, matМатематик, pizikФизик, gazarzuiГазарзүй, tamirТамир, Eruul mendЭрүүл мэнд, Mongol helМонгол хэл, uran zoiholУран зохиол, tvvhТүүх, himiХими, biologiБиологи, undesni bichigҮндэсний бичиг, hogjimХөгжим, oros helОрос хэл.
  • ibo is kept verbatim: the respondent confirmed it is a subject name but did not give its canonical spelling, so it was not guessed.
  • Every student named exactly 3 favorites and 3 least favorites in the source list; the order within each list is the order in which they were reported and is not a ranking.

Intended use

Reference data for school-subject preference questions, and a starting point for a larger survey collecting the same fields. With 5 rows it is illustrative, not statistically meaningful — no model should be trained or evaluated on it as if it were a real sample.

License

Released under CC BY 4.0. Change this if the underlying survey was subject to different terms.