Dataset Viewer
The dataset viewer is not available for this subset.
Cannot get the split names for the config 'default' of the dataset.
Exception:    SplitsNotFoundError
Message:      The split names could not be parsed from the dataset config.
Traceback:    Traceback (most recent call last):
                File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 286, in get_dataset_config_info
                  for split_generator in builder._split_generators(
                                         ~~~~~~~~~~~~~~~~~~~~~~~~~^
                      StreamingDownloadManager(base_path=builder.base_path, download_config=download_config)
                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                  )
                  ^
                File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 101, in _split_generators
                  pa_table = next(iter(self._generate_tables(**splits[0].gen_kwargs, allow_full_read=False)))[1]
                             ~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
              StopIteration
              
              The above exception was the direct cause of the following exception:
              
              Traceback (most recent call last):
                File "/src/services/worker/src/worker/job_runners/config/split_names.py", line 66, in compute_split_names_from_streaming_response
                  for split in get_dataset_split_names(
                               ~~~~~~~~~~~~~~~~~~~~~~~^
                      path=dataset,
                      ^^^^^^^^^^^^^
                      config_name=config,
                      ^^^^^^^^^^^^^^^^^^^
                      token=hf_token,
                      ^^^^^^^^^^^^^^^
                  )
                  ^
                File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 340, in get_dataset_split_names
                  info = get_dataset_config_info(
                      path,
                  ...<6 lines>...
                      **config_kwargs,
                  )
                File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 291, in get_dataset_config_info
                  raise SplitsNotFoundError("The split names could not be parsed from the dataset config.") from err
              datasets.inspect.SplitsNotFoundError: The split names could not be parsed from the dataset config.

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

Kerala Districts Malayalam Corpus

Open JSONL dataset collection for building Malayalam language models, organized by the 14 districts of Kerala.

Folder Structure

kerala-districts/
  README.md
  data/
    alappuzha.jsonl
    ernakulam.jsonl
    idukki.jsonl
    kannur.jsonl
    kasaragod.jsonl
    kollam.jsonl
    kottayam.jsonl
    kozhikode.jsonl
    malappuram.jsonl
    palakkad.jsonl
    pathanamthitta.jsonl
    thiruvananthapuram.jsonl
    thrissur.jsonl
    wayanad.jsonl
  docs/
    schema.md
  scripts/
    validate_jsonl.py

JSONL Format

Each line in a district file should be one JSON object:

{"id":"ernakulam-000001","district":"ernakulam","text":"...","source":"...","source_url":"...","license":"...","language":"ml","category":"general","created_at":"2026-07-07"}

Use one record per text unit. Keep only open, redistributable data and preserve source/license metadata.

Recommended Hugging Face Upload

From inside this folder:

huggingface-cli login
git init
git remote add origin https://huggingface.co/datasets/YOUR_USERNAME/kerala-districts
git add .
git commit -m "Add Kerala district JSONL dataset structure"
git push -u origin main

Before pushing, run:

python scripts/validate_jsonl.py
Downloads last month
35