code readability
code-readability-krod
Java Code Readability Merged & Modified
This dataset contains 69276 Java code snippets along with a readability score, mined from Github and automatically processed and labelled.
You can download the dataset using Hugging Face:
from datasets import load_dataset
ds = load_dataset("se2p/code-readability-krod")
The snippets are not split into train and test (and validation) set. Thus, the whole dataset is in the train set:
ds = ds['train']
ds_as_list = ds.to_list() # Convert the… See the full description on the dataset page: https://huggingface.co/datasets/se2p/code-readability-krod.code-readability-merged
Java Code Readability Merged Dataset
This dataset contains 421 Java code snippets along with a readability score, aggregated from several scientific papers [1, 2, 3].
You can download the dataset using Hugging Face:
from datasets import load_dataset
ds = load_dataset("se2p/code-readability-merged")
The snippets are not split into train and test (and validation) set. Thus, the whole dataset is in the train set:
ds = ds['train']
ds_as_list = ds.to_list() # Convert the dataset to… See the full description on the dataset page: https://huggingface.co/datasets/se2p/code-readability-merged.Dorn_Code_Readability
Software Readability Dataset
This repository contains the dataset used to build and evaluate the readability model presented in:
A General Software Readability Model
Jonathan Dorn & Westley Weimer, University of Virginia
The dataset consists of human-annotated code snippets sampled from real open-source projects and labeled for perceived readability. It is the largest such dataset collected for software readability research to date.
📦 Dataset Summary… See the full description on the dataset page: https://huggingface.co/datasets/rufimelo/Dorn_Code_Readability.
