Datasets

Explore and download datasets for your projects

The California Housing Dataset

If you've spent any time learning data analysis or machine learning, you've probably run into the Iris dataset, the Titanic dataset, or maybe the Boston Housing dataset (which, by the way, got pulled from most libraries over ethical concerns). But there's one dataset that deserves way more attention than it gets: the California Housing Dataset. I've used this dataset in tutorials, practice projects, and even to teach regression concepts to people just starting out, and it keeps proving itself as one of the most practical, real-world friendly datasets you can work with. Let me walk you through why it's worth...

HumanEval Dataset

The HumanEval Dataset, created by OpenAI and introduced in the Codex paper, is the gold standard benchmark for evaluating code generation models. This dataset contains 164 hand-written Python programming problems, each with a function signature, docstring, reference implementation, and multiple unit tests to verify functional correctness - providing a rigorous, execution-based evaluation framework that goes beyond syntactic correctness. Available on Hugging Face, this dataset is excellent for benchmarking code generation models, evaluating AI coding assistants, measuring functional correctness using the pass@k metric, comparing different code LLMs, and understanding the state-of-the-art in automated program synthesis - making it the definitive evaluation...

CodeParrot Dataset

The CodeParrot Dataset, created by the authors of the "Natural Language Processing with Transformers" book (Lewis Tunstall, Leandro von Werra, and Thomas Wolf), is a comprehensive collection of Python source code designed specifically for training code generation language models. This dataset contains approximately 180GB of deduplicated Python code from public GitHub repositories, making it an ideal resource for learning how to train domain-specific language models and build Python programming assistants. Available on Hugging Face, this dataset is excellent for training GPT-style code models, building Python code completion tools, learning the end-to-end process of dataset curation and model training, and developing...

Scroll to Top