codedebugger / data /__init__.py
psdhanushkumar's picture
Upload folder using huggingface_hub
f361447 verified
Raw
History Blame Contribute Delete
299 Bytes
"""CodeDebugger data module — buggy code problems and test cases."""
from .bug_dataset import (
ALL_PROBLEMS,
TRAINING_SCENARIOS,
BUG_DATASET,
EASY_BUGS,
MEDIUM_BUGS,
HARD_BUGS,
get_problem,
get_all_problems,
get_problem_ids,
get_problems_by_difficulty,
)