CoolFace
Datasetpublic

AroshN/priority-dataset

Task Priority Classification Dataset Dataset Summary This dataset contains structured task attributes used to train classification models (such as XGBoost) for automated task priority determination. Data Structure The dataset contains the following columns: Column Name Type Description task_id string Unique identifier for the task title string Short description of the task days_until_due integer Number of days left until deadline… See the full description on the dataset page: https://huggingface.co/datasets/AroshN/priority-dataset.

sourceHugging Facemitupdated 14d agoView on Hugging Face
0likes35downloads
Dataset Card

Task Priority Classification Dataset

Dataset Summary

This dataset contains structured task attributes used to train classification models (such as XGBoost) for automated task priority determination.

Data Structure

The dataset contains the following columns:

Column NameTypeDescription
task_idstringUnique identifier for the task
titlestringShort description of the task
days_until_dueintegerNumber of days left until deadline
estimated_hoursfloatEstimated time to completion
urgencyintegerUser-defined urgency score (1 to 5)
prioritystringTarget label (Low, Medium, High)

Usage

\\\`python from datasets import load_dataset

dataset = load_dataset("AroshN/task-priority-dataset") print(dataset["train"][0]) \\\`