← delivered_datasets
execution trace / output predictionpython · communitycommunity · karma-rewarded● delivered

Python Execution Trace & Output Prediction

sponsor: Platform

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.

karma / item
15 karma
capacity reserved / target
1,000 / 1,000
final accepted
1,000
contributors
26
license
CC-BY-4.0
Karma per final accepted item

Secured after final acceptance. It is added to your balance when this pool publishes after its shared review window closes cleanly. Rejected items do not qualify.

secured on acceptance15 karma
Community terms

Platform-authored spec, open on delivery.

publishes tohugging face
licenseCC-BY-4.0
Quality signals

Measured pipeline stats for this dataset. A dash means the platform does not publish that measure for this pool.

submitted items1,086
rejected items86
duplicate rate2%
contributors26
validators14

// dataset_type_samples

Illustrative samples authored for the Execution Trace / Output Prediction dataset type.

code
def running_totals(values):
    total = 0
    result = []
    for value in values:
        total += value
        result.append(total)
    return result
inputrunning_totals([2, -1, 4])
languagePython
predicted_output
[
  2,
  1,
  5
]

// sample_item

Approved public samples for this Execution Trace / Output Prediction dataset. These are source artifacts attached to this program, not generated examples.

No public sample item is available for this dataset yet.
This dataset shipped