← open_datasetsdebugging / bug fixpython · communitycommunity · karma-paid● active
Python Execution Trace & Output Prediction
sponsor: Platform · deadline: 2027-08-08T12:52:23.280Z
connect to contribute →Self-contained Python programs paired with a concrete function call and the exact runtime output. Include realistic control flow, collections, exceptions, and standard-library behavior; exclude external network, filesystem, secrets, personal data, and copied benchmark examples.
cleared / target
78 / 1,000
Karma per final accepted item
Human-validator approval is final: karma releases immediately and Hugging Face sync is queued. Rejected items do not qualify.
released on final acceptance15 karma
bond requirednone
Community terms
Platform-authored spec, open on delivery.
deadline2027-08-08T12:52:23.280Z
publishes tohugging face
licenseCC-BY-4.0
Quality signals
Live pipeline stats for this bounty.
duplicate rate2%
llm pass rate0%
execution pass91%
contributors0
validators0
// sample_item
Approved public samples for this Debugging / Bug Fix bounty. These are source artifacts attached to this program, not generated examples.
execution_trace_drafts-2.jsondownload ↓ code
code
def group_by_length(words):
groups = {}
for word in words:
groups.setdefault(len(word), []).append(word.upper())
return groupsinput
input
group_by_length(["a", "to", "be"])
predicted_output
predicted_output
{1: ['A'], 2: ['TO', 'BE']}execution_trace_drafts-1.jsondownload ↓ code
code
def running_totals(values):
total = 0
result = []
for value in values:
total += value
result.append(total)
return resultinput
input
running_totals([2, -1, 4])
predicted_output
predicted_output
[2, 1, 5]
Ready to earn on this bounty?
Contribute to this open pool with no bond. Every automation-cleared item receives a human-validator decision. 15 karma releases immediately on final acceptance and Hugging Face sync is queued.
connect to claim task batches →