datasets
Training and evaluation data, with the modality, task and licence stated up front. Listed live from the Hugging Face Hub.
code-generation-sft-100k
Code Generation SFT (100K)
100,000 ShareGPT conversations covering code generation across 8 programming languages, 21 categories, and 22 distinct programming tasks. Each example includes a detailed natural language request and a complete, working implementation with explanations of key design decisions.
Motivation
Coding assistants are the highest-adoption LLM application category, but most open training datasets focus on isolated functions without context. This… See the full description on the dataset page: https://huggingface.co/datasets/stindardlogic/code-generation-sft-100k.LiveCodeBench-CodeGenerationradon-test-code_generation
radon-test-code_generation
Description
Code generation test dataset for RADON model evaluation with programming prompts
Usage
Load Dataset
from datasets import load_dataset
dataset = load_dataset("MagistrTheOne/radon-test-code_generation")
print(dataset)
Use with RADON Model
from transformers import AutoModelForCausalLM, AutoTokenizer
# Load RADON model
model = AutoModelForCausalLM.from_pretrained("MagistrTheOne/RadonSAI")
tokenizer =… See the full description on the dataset page: https://huggingface.co/datasets/MagistrTheOne/radon-test-code_generation.
