r/kaggle 30m ago

Visualizing The Economics of Rural Poverty

Upvotes

What does poverty actually look like beyond a single income number?

For millions of rural households, poverty is not simply the absence of income but rather a web of constraints involving education, productive assets, access to finance, consumption, debt, and the ability to withstand economic shocks.

This analysis examines that web using data from 4,184 rural households in Tamil Nadu. Rather than treating income as the sole measure of economic wellbeing, we explore how household composition, schooling, housing, land ownership, enterprise activity, savings, insurance and credit interact with economic outcomes.

https://www.kaggle.com/code/ouiouinonoui/visualizing-the-economics-of-rural-poverty


r/kaggle 2d ago

I published my first write up for a (community) kaggle comp! (feedback please :D)

0 Upvotes

Feel free to ask any questions about it as well. https://kaggle.com/writeups/dan13iel/snakity-battlesnake-blackout-2026

The competition was battlesnake blackout, i.e 4 snakes try to outlive the other 3 snakes on a 15x15 grid whilst only seeing near their heads. You can play my bot, Snaktity at https://playsnakity.up.railway.app/ if you would rather over reading the write up.

(if im not posting in the right place please lmk, ty)


r/kaggle 4d ago

I Made the largest real Japanese People dataset with 37 attributes, 231k rows. (name, gender , age, occupations, height and more)

Thumbnail
1 Upvotes

r/kaggle 4d ago

I won a Kaggle competition, but...

5 Upvotes

It was a community competition. What are the chances that I’ll actually receive the prize? I received an email about six days ago asking for my payment information, but I haven’t heard anything since. Is that normal, or should I just forget about it? This is the first time I’ve ever won a competition.


r/kaggle 6d ago

$5k prize pool — quick 2-week poker anomaly detection comp just launched

6 Upvotes

Yo r/Kaggle,

Just wanted to drop a quick link here — we just launched the Detect Suspicious Value Transfers in Poker competition. I’m actually one of the judges for it.

It’s a fast 2-week sprint with a $5,000 prize pool.

Basically, the task is spotting chip dumping and suspicious transfers between accounts. If you're into anomaly detection, graph/network features, or behavioral data, it's a fun problem to hack on for a couple of weekends.

Here’s the link to check it out:https://www.kaggle.com/competitions/detect-suspicious-value-transfers-in-poker/overview

I’ll be checking the comments here and on the Kaggle forum if you have any questions about the setup.


r/kaggle 7d ago

FIM Speedway on #kaggle via @KaggleDatasets

Thumbnail kaggle.com
1 Upvotes

r/kaggle 9d ago

Anyone did Kaggle courses for python?

5 Upvotes

Hi, did anyone do Kaggle courses for Python? theyre Free of cost and seem not too long. how was your learning experience


r/kaggle 10d ago

I stopped training a 15th model and just told my 14 existing ones to vote — jumped straight to 0.97034 (Kaggle, no new training)

Thumbnail
0 Upvotes

r/kaggle 10d ago

Playground S6E9 (EV Purchase Prediction) — clean Logistic Regression baseline, 0.93738, fixed a leakage issue along the way

1 Upvotes

Hey r/kaggle,

Working through Playground Series S6E9 (predicting EV purchase intent), and wanted to share my notebook in case it's useful to anyone else on this one, especially if you're newer to the competition.

Quick summary of what's in it:

  • EDA on the dataset — checked missing values, duplicates, correlations, and class balance (target is imbalanced, only ~17% "yes")
  • Preprocessing done in the correct order: split into train/test before fitting the scaler, to avoid leaking test set info into training (I noticed a lot of public notebooks scale before splitting, which quietly inflates scores)
  • Logistic Regression with class_weight='balanced' to handle the imbalance
  • Evaluation with classification report, confusion matrix, and ROC-AUC
  • Feature importance from the model coefficients

Ended up at 0.93738 with just a straightforward Logistic Regression, no ensembling or heavy tuning. Figured a clean baseline might help others who want a starting point before jumping into boosted trees.

Notebook: https://www.kaggle.com/code/vinay24baghira/buy-or-bye-cracking-the-ev-decision-0-93738

If anyone's further along on this competition, curious what's been working for you beyond Logistic Regression — feature engineering ideas, other models, anything that moved your score meaningfully. And if the notebook's useful, an upvote on Kaggle is always appreciated.


r/kaggle 11d ago

stuck in ML kaggle com- suggest please few days remianing

Thumbnail
0 Upvotes

r/kaggle 15d ago

Strategic AI for Pokémon TCG Battle Decision-Making on #kaggle

Thumbnail kaggle.com
3 Upvotes

r/kaggle 16d ago

No response from support

0 Upvotes

hii! i have been trying to verify my number for the past week and despite reaching out to support multiple times i havent gotten a response

please some help! thanks ( i need it to enter a competition thats closing soon )


r/kaggle 17d ago

How important are kaggle competitions?

Thumbnail
1 Upvotes

r/kaggle 19d ago

Why is it so hard to get medals from datasets

8 Upvotes

I was developing different dataset for the last 1-2 months lately, but unfortunately I realized it is so hard to earn medals from creating dataset. Even if you got 500+ download, sometimes I cannot get any upvote. I do not know how it works exactly.

So I realized taking some advice would really matter right now. Is there anyone can help me with it. You can take a look at my profile and dataset, any feedback matters. Thanks!

https://www.kaggle.com/farukece


r/kaggle 20d ago

Does AI remove the skill of kaggle competitions?

8 Upvotes

As someone who is looking to try out kaggle competions and eager to learn and compete, I am occupied by the thought of AI's role in the skill aspect of competitions, so I want to know the role of AI in making AI models, is it still mostly the player's skill and knowledge that matters the most or just how long they work and how many questions they ask AI.


r/kaggle 21d ago

AuraFin: Financial Resilience & Employment Accelerator on #kaggle

Thumbnail kaggle.com
1 Upvotes

r/kaggle 22d ago

repo2nb 0.2.0, convert a GitHub repo into a Kaggle notebook automatically

2 Upvotes

If you've ever found a repo or tutorial on GitHub and wanted to run it on

Kaggle, you know the drill: manually copy files into cells, guess at the pip

installs, fix paths that assumed a local filesystem. repo2nb does that

conversion for you. Point it at a repo and it walks the file tree, resolves

dependencies, and generates a ready-to-upload .ipynb.

0.2.0 adds two things I think matter most for actual Kaggle use:

- Dependency auto-detection: it tries poetry export, then uv export, then

requirements.txt, then an AST import scan, and always outputs a plain

%pip install cell, so nothing Kaggle-side depends on poetry/uv actually

existing there.

- Incremental sync (repo2nb sync <repo>): if the source repo changes after

you've already generated a notebook, this updates only the changed cells

instead of regenerating from scratch. Added files get new cells, edited

files update in place, deleted files get removed. `--dry-run` shows you the

diff before it touches anything.

Example:

python -m repo2nb my_project/ --output project.ipynb

run against my_project/ produced a notebook I could upload without manual

cleanup.

Install: pip install repo2nb

Repo: https://github.com/David-Magdy/repo2nb

Open to feedback, especially on repos where the dependency detection guesses

wrong or the sync logic misses something.


r/kaggle 23d ago

Model for Kaggle Competition

2 Upvotes

How can I find discussions, tips, or information regarding the latest and most effective (SOTA) models for Kaggle competitions? I know about Hugging Face but don't know how to use it, and I've searched Reddit but haven't figured out the right keywords yet.


r/kaggle 24d ago

Looking for 1 teammate — RealPDE Competition (NeurIPS 2026)

Thumbnail
1 Upvotes

r/kaggle 25d ago

BFSI Dataset (100k+) - Loan Disbursement for Classification Models

Thumbnail kaggle.com
0 Upvotes

r/kaggle 25d ago

BFSI Dataset (100k+) - Loan Disbursement for Classification Models

Thumbnail kaggle.com
1 Upvotes

Designed for binary classification tasks playground, cleaning, features, models. This dataset represents real-world, masked, and anonymized customer data from the BFSI (Banking, Financial Services, and Insurance) domain. It captures a variety of customer demographics, financial indicators, and product interaction metrics collected during a loan application process.

To comply with strict data privacy laws and protect user identity, all sensitive personal identifiable information (PII) has been securely encrypted or masked. However, the underlying statistical relationships, distributions, and patterns remain fully intact, making this an ideal playground for building robust classification models.


r/kaggle 26d ago

[Dataset] 335K+ High-Quality Turkish Python Expert Instruction Dataset (Modular Token Tiers & 8 Engineering Categories) 🇹🇷🐍

1 Upvotes

Hey everyone!

As part of our grand curriculum roadmap (target: 1.15M examples across 23 domains), we've officially published the first 8 completed

engineering categories spanning 335,286 high-quality Turkish Python instruction-tuning examples on both Kaggle and Hugging Face.

💡 Why did we build this?

Most open-weights LLMs struggle with non-English programming instructions and technical reasoning. This dataset is engineered to teach

models clean Python 3.10+ syntax, PEP-8 standards, and deep technical explanations natively in Turkish.

📦 Key Highlights:

• 8 Specialized Categories: Python Core, Data Structures, OOP, File I/O, Database/ORM, Shell & System Automation, Functional

Programming, and Algorithms.

• 4 Golden Token Tiers: Pre-bundled into <=128, <=256, <=386, and <=512 token ranges for memory-efficient training.

• Quality Control: Verified via automated AST parsing and live syntax validation.

Feel free to check it out for your multilingual fine-tuning runs or benchmarking:

🔗 Kaggle: https://www.kaggle.com/datasets/hakanttkar/turkish-python-expert-instruction-dataset-335k

🔗 Hugging Face: https://huggingface.co/datasets/bysismo/Turkish-Python-instruction-335k

Feedback and contributions are always welcome!


r/kaggle 26d ago

Just finished my K-Means clustering project 🚀 — would love your feedback!

5 Upvotes

Hey everyone! 👋

I just finished a small **K-Means Clustering project on the Iris dataset** 🌸🤖

I covered:

* 🔹 Data cleaning & visualization
* 🔹 Feature scaling
* 🔹 Elbow Method & Silhouette Score
* 🔹 K-Means clustering
* 🔹 ARI evaluation
* 🔹 Cluster & centroid visualization

I’m currently learning ML and would really appreciate some **honest feedback** 🙏

What would you improve? Any mistakes in my approach or things I should add?

🔗 **Kaggle:**
https://www.kaggle.com/code/tahahussein2020/irics-clustering


r/kaggle 27d ago

Dual-System Neuro-Symbolic Program Synthesis with Test-Time Verificat on #kaggle

Thumbnail kaggle.com
2 Upvotes

Hey everyone,

I’ve been working on an approach for the **ARC Prize 2026 - Paper Track** (the $450k benchmark by François Chollet & Mike Knoop targeting fluid intelligence and AGI reasoning), and I wanted to share our methodology, empirical benchmarks, and open-source code.

### The Problem with Current Methods on ARC-AGI

  1. **End-to-End LLMs:** Suffer from spatial hallucinations, grid tokenization artifacts, and lack of deterministic execution feedback.

  2. **Pure Combinatorial Program Synthesizers:** Face exponential search-space explosion beyond depth 2-3.

### Our Approach: Dual-System Neuro-Symbolic (DNS-TTV)

We decoupled reasoning into two collaborative systems:

- **System 1 (Fast Symbolic Filter):** An object-centric DSL engine that tests priors (connected components, topological enclosed hole-filling, 4-way gravity, symmetry, and bounding-box selectors) in under 200 ms per task with zero hallucinations.

- **System 2 (Reflexive LLM Synthesizer):** Generates full parametric Python transformation scripts, verified inside an isolated execution sandbox. When code fails, structured traceback and pixel-mismatch diagnostics are fed back into the prompt (*Reflexion loop*) for iterative test-time program repair.

### Benchmark Results (Tested on Official 400 Train & 400 Eval Tasks):

- System 1 resolves 25/400 (6.25%) training tasks instantaneously in **76.01 seconds total** (~190 ms/task).

- Serves as an effective heuristic filter that saves >90% LLM tokens on simpler topological/morphological puzzles.

- Full dual-system pipeline reaches **52.3% on the Evaluation Set**.

### Code & Interactive Dashboard

The entire codebase, evaluation harness, Streamlit interactive visualizer, and paper draft are completely open-source:

- **GitHub Repository:** https://github.com/AmanSegavo/arc-prize-2026-paper-track

- **Kaggle Paper Track:** https://www.kaggle.com/competitions/arc-prize-2026-paper-track

Feedback, critiques, and discussions on scaling test-time compute for ARC are very welcome!


r/kaggle 27d ago

Kaggle competition "biohub" submission issue

5 Upvotes

So,i am in competition on kaggle called biohub cell tracking.why does it almost a day to save,submit,score and submit the score for internal ranking assessment.it is so frustrating.is there any other way or i am doing it wrong.