Category: Datatards

Here you can observe the biggest nerds in the world in their natural habitat, longing for data sets. Not that it isn’t interesting, i’m interested. Maybe they know where the chix are. But what do they need it for? World domination?

Need A Messy Dataset For A Class I’m In, Where Can I Go To Get One?

I’m in college right now and I need an “unclean/untidy” dataset. One that has a bunch of missing values, poor formatting, duplicate entries, etc., is there a website I can go to that gives data like this? I hope to get into the renewable energy field, so data covering that topic would be exactly what I’m looking for, but any website that has this sort of this would help me.

Thanks in advance

submitted by /u/timedoesnotwait
[link] [comments]

To Everyone In The Datasets Community, I Would Like To Give An Update

My name is Jason Baumgartner and I am the founder of Pushshift. I have been dealing with some health issues but hopefully my eye surgery will be coming up soon. I developed PSCs (posterior subcapular cataracts) from late onset Diabetes.

I have been working lately to bring more amazing APIs and tools to the research community including making available a large amount of datasets containing YouTube data and many other social media datasets.

Currently I have collected around 15 billion Youtube comments and billions of YouTube channel metadata and video metadata.

My goal, once my surgery is completed and my eyes heal is to get back into the community and invite others who love data to work with all this data.

I greatly appreciate everyone who donates or spreads the word about my gofundme.

I will be providing updates over time, but if you want to reach out to me, please use the email in my Reddit profile (the gmail one).

I want to thank all of the datasets moderators for assisting me during this challenging period in my life.

I am very excited to get back into the saddle and pursuing my biggest passion – data science and datasets.

I no longer control the Pushshift domain bit I will be sharing a new name soon and letting everyone know what’s been happening over the past 2 years.

Thanks again and I will try to respond to as many emails as possible.

You can find the link to my gofundme in my Reddit profile or my post in /r/pushshift.

Feel free to ask questions in this post and I will try to answer as soon as possible. Also, if you have any questions about specific social media data that you are interested in, I would be happy to clarify what data I currently have and what is on the roadmap in the future. It would be very helpful to see what data sources people are interested in!

submitted by /u/Stuck_In_the_Matrix
[link] [comments]

Tideon AI Makes Analyzing Excel Datasets 5x Faster — Try It Free

If you work with Excel files regularly, I wanted to share something that’s been a game-changer for me: Tideon AI — an AI-powered platform that lets you chat with your datasets instantly.

Instead of manually digging through spreadsheets, you can:

  • Upload Excel files and ask questions in plain English
  • Get instant insights without writing formulas

Would love to hear if this helps anyone here streamline their workflow!

Link: https://tideon.ai

submitted by /u/Narrow_Ground1495
[link] [comments]

Made My First Dataset! Ca. 100 Scanned Pages Of Books From 1910-1920, Serbian Cyrillic. Kaggle And HF

Hi everyone, first time building a dataset. This is a v0.1, about 100 scans of book pages (both single and double-page per scan). The books are in the public domain. The intended use is for anyone looking to do image-to-text software work.

The scans are in a .jpg format, with a PDF with the whole collection.

I have also included 2 .txt files:

1)”raw” (aka not corrected for halluciations, artifacts, etc.) .txt file for anyone looking to do a check. The file is in Markdown.

2) A “corrected” .txt file, where the hallucinations, artifacts, errors, etc. were manually corrected. This file is in .txt, not Markdown.

Looking for feedback if this is useful, how to make a dataset like this better, etc.

Kaggle: https://www.kaggle.com/datasets/booksofjeremiah/serbian-cyrillic-script-printed

Huggingface: https://huggingface.co/datasets/Books-of-Jeremiah/raw-OCR-serbian-cyrillic

Any feedback on whether the set is useful for other use cases or how it can be made better is appreciated!

submitted by /u/Books_Of_Jeremiah
[link] [comments]

[P] Training Better LLMs With 30% Less Data – Entropy-Based Data Distillation

I’ve been experimenting with data-efficient LLM training as part of a project I’m calling Oren, focused on entropy-based dataset filtering.

The philosophy behind this emerged from knowledge distillation pipelines, where student models basically inherit the same limitations of intelligence as the teacher models have. Thus, the goal of Oren is to change LLM training completely – from the current frontier approach of rapidly upscaling in compute and GPU hours to a new strategy: optimizing training datasets for smaller, smarter models.

The experimentation setup: two identical 100M-parameter language models.

  • Model A: trained on 700M raw tokens
  • Model B: trained on the top 70% of samples (500M tokens) selected via entropy-based filtering

Result: Model B matched Model A in performance, while using 30% less data, time, and compute. No architecture or hyperparameter changes.

Open-source models:

🤗 Model A – Raw (700M tokens)

🤗 Model B – Filtered (500M tokens)

Full documentation:

👾GitHub Repository

I’d love feedback, especially on how to generalize this into a reusable pipeline that can be directly applied onto LLMs before training and/or fine-tuning–I’m currently thinking of a multi-agent system, with each agent being a SLM trained on a subdomain (i.e., coding, math, science), each with their own scoring metrics. Would love feedback from anyone here who has tried entropy or loss-based filtering and possibly even scaled it

submitted by /u/Jolly-Act9349
[link] [comments]

New EV And Petrol Car Price Dataset. Visualization Beginner

Hello, For a personal learning project in data visualization I am looking for the most up-to-date database possible containing all the models of new vehicles sold in France and europa with car characteristics and recommended official price. Ideally, this database would contain the data of the last 2 to 5 years. I want to be able to plot EV car price per kilometer and buying price vs autonomy etc. thank you in advance it is my first Reddit post

submitted by /u/Accomplished-Cat5112
[link] [comments]

Building A Synthetic Dataset From A 200MB Documented C#/YAML Codebase For LoRA Fine-Tuning

hello everyone.

I’m building a synthetic dataset from our ~200MB private codebase to fine-tune a 120B parameter GPT-OSS LLM using QLoRA. The model will be used for bug fixing, new code/config generation.

Codebase specifics:

  • Primarily C# with extensive JSON/YAML configs (with common patterns)
  • Good documentation & comments exist throughout
  • Total size: ~200MB of code/config files

My plan:

  1. Use tree-sitter to parse C# and extract methods/functions with their docstrings
  2. Parse JSON/YAML files to identify configuration patterns
  3. Generate synthetic prompts using existing docstrings + maybe light LLM augmentation
  4. Format as JSONL with prompt-completion pairs
  5. Train using QLoRA for efficiency

Specific questions:

  1. Parsing with existing docs: Since I have good comments/docstrings, should I primarily use those as prompts rather than generating synthetic ones? Or combine both?
  2. Bug-fixing specific data: How would you structure training examples for bug fixing? Should I create “broken code -> fixed code” pairs, or “bug report -> fix” pairs?
  3. Configuration generation: For JSON/YAML, what’s the best way to create training examples? Show partial configs and train to complete them?
  4. Scale considerations: For a 200MB codebase targeting a 120B model with LoRA – what’s a realistic expected dataset size? Thousands or tens of thousands of examples?
  5. Tooling recommendations: Are there any code-specific dataset tools that work particularly well with documented codebases?

Any experiences with similar code-to-dataset pipelines would be incredibly valuable! especially from those who’ve worked with C# codebases or configuration generation.

submitted by /u/gagarinten
[link] [comments]

Appreciation And Continued Contribution Of Tech Datasets

👋 Hey everyone!

The response to my first datasets has been insane – thank you! 🚀

Your support made these go viral, and they’re still trending on the Hugging Face datasets homepage:

🏆 Proven Performers: – GitHub Code 2025 (12k+ downloads, 83+ likes) – Top 10 on HF Datasets – ArXiv Papers (8k+ downloads, 51+ likes) – Top 20 on HF Datasets

Now I’m expanding from scientific papers and code into hardware, maker culture, and engineering wisdom with three new domain-specific datasets:

🔥 New Datasets Dropped

  1. Phoronix Articles
  2. What is Phoronix? The definitive source for Linux, open-source, and hardware performance journalism since 2004. For more info visit: https://www.phoronix.com/
  3. Dataset contains: articles with full text, metadata, and comment counts
  4. Want a Linux & hardware news AI? Train models on 50K+ articles tracking 20 years of tech evolution

🔗 Link: https://huggingface.co/datasets/nick007x/phoronix-articles

  1. Hackaday Posts
  2. What is Hackaday? The epicenter of maker culture – DIY projects, hardware hacks, and engineering creativity. For more info visit: https://hackaday.com/
  3. Dataset contains: articles with nested comment threads and engagement metrics
  4. Want a maker community AI? Build assistants that understand electronics projects, 3D printing, and hardware innovation

🔗 Link: https://huggingface.co/datasets/nick007x/hackaday-posts

  1. EEVblog Posts
  2. What is EEVblog? The largest electronics engineering forum – a popular online platform and YouTube channel for electronics enthusiasts, hobbyists, and engineers. For more info visit: https://www.eevblog.com/forum/
  3. Dataset contains: forum posts with author expertise levels and technical discussions
  4. Want an electronics expert? Train AI mentors that explain circuits, troubleshoot designs, and guide hardware projects

🔗 Link: https://huggingface.co/datasets/nick007x/eevblog-posts

submitted by /u/its_just_me_007x
[link] [comments]

Im Looking For A Dataset Of Meme Gifs.

im working on an app and id like to be able to search for gifs locally. i understand there are many services for this already, but im looking for a dataset i can host myself.

it would be good id the dataset was also labeled in a way that could make it searchable, if not, then i’ll try figure that part out.

submitted by /u/Accurate-Screen8774
[link] [comments]

Master’s Project Ideas To Build Quantitative/data Skills?

Hey everyone,

I’m a master’s student in sociology starting my research project. My main goal is to get better at quantitative analysis, stats, working with real datasets, and python.

I was initially interested in Central Asian migration to France, but I’m realizing it’s hard to find big or open data on that. So I’m open to other sociological topics that will let me really practice data analysis.

I will greatly appreciate suggestions for topics, datasets, or directions that would help me build those skills?

Thanks!

submitted by /u/NebooCHADnezzar
[link] [comments]

I Built A Small AI That Reads Spreadsheets And Tells You The Story Inside — Want To Help Test It?

Hey everyone,
I’m testing a small experiment under Aptorie Labs, an AI that looks at your CSV or Excel files and writes a short, plain-English story about what’s really happening in the data.

It’s called Data-to-Narrative, and it’s built around a simple idea:
Instead of dashboards full of numbers, you get a short paragraph that sounds like a human analyst, no jargon, no buzzwords, just what matters.

I’m looking for a few early testers to try it out this week. You upload a dataset (sales, support tickets, survey results, etc.), and I’ll send back a written summary you can actually read and share with your team.

If you’re interested, DM me and I’ll send you the invite link to the beta upload form.
It’s part of a closed test, so I’m keeping the first batch small to make sure the summaries feel right.

Thanks in advance to anyone who wants to kick the tires. I’ll post a few anonymized examples once we’ve run the first round of tests.

Len

submitted by /u/lenbuilds
[link] [comments]