CoolFace
Datasetpublic

michsethowusu/Code-170k-venda

Dataset Description Code-170k-venda is a groundbreaking dataset containing 176,999 programming conversations, originally sourced from glaiveai/glaive-code-assistant-v2 and translated into Venda, making coding education accessible to Venda speakers. 🌟 Key Features 176,999 high-quality conversations about programming and coding Pure Venda language - democratizing coding education Multi-turn dialogues covering various programming concepts Diverse topics: algorithms… See the full description on the dataset page: https://huggingface.co/datasets/michsethowusu/Code-170k-venda.

sourceHugging Faceapache-2.0updated 11mo agoView on Hugging Face
0likes27downloads
Dataset Card

Dataset Description

Code-170k-venda is a groundbreaking dataset containing 176,999 programming conversations, originally sourced from glaiveai/glaive-code-assistant-v2 and translated into Venda, making coding education accessible to Venda speakers.

🌟 Key Features

  • β€”176,999 high-quality conversations about programming and coding
  • β€”Pure Venda language - democratizing coding education
  • β€”Multi-turn dialogues covering various programming concepts
  • β€”Diverse topics: algorithms, data structures, debugging, best practices, and more
  • β€”Ready for instruction tuning of Large Language Models

🎯 Use Cases

  • β€”Training Venda-language coding assistants
  • β€”Building educational tools for Venda developers
  • β€”Researching multilingual code generation
  • β€”Creating programming tutorials in Venda
  • β€”Supporting low-resource language AI development

Dataset Structure

Data Fields

  • β€”conversations: A list of conversation turns, where each turn contains:
  • β€”from: The speaker ("human" or "gpt")
  • β€”value: The message content in Venda

Example

python
{
  "conversations": [
    {
      "from": "human",
      "value": "[Question in Venda]"
    },
    {
      "from": "gpt",
      "value": "[Answer in Venda]"
    }
  ]
}

Usage

Loading the Dataset

python
from datasets import load_dataset

# Load the dataset
dataset = load_dataset("michsethowusu/Code-170k-venda")

# Access training data
train_data = dataset['train']

# Example: Print first conversation
for turn in train_data[0]['conversations']:
    print(f"{turn['from']}: {turn['value']}")

Citation

bibtex
@dataset{code170k_venda,
  title={Code-170k-venda: Programming Conversations in Venda},
  year={2025},
  publisher={Hugging Face},
  url={https://huggingface.co/datasets/michsethowusu/Code-170k-venda}
}

License

This dataset is released under the Apache 2.0 License.


Thank you for using Code-170k-venda to advance programming education in Venda! 🌍✨