--- license: mit task_categories: - text-generation language: - en tags: - code - python - ai-safety - control - apps pretty_name: APPS-cleaned for AI Control replication size_categories: - 1K list[str]: ...` without per-problem dispatch on the input shape. ## Usage ```python from huggingface_hub import hf_hub_download import json path = hf_hub_download( repo_id="styme3279/control-apps-cleaned", filename="cleaned_apps.jsonl", repo_type="dataset", ) with open(path) as f: apps = [json.loads(line) for line in f] print(len(apps), "problems") print(apps[0].keys()) ``` ## Provenance - Upstream source: [hendrycks/apps](https://github.com/hendrycks/apps), interview-difficulty split - Filter script: `utils.clean_dataset` in the ARENA chapter `chapter3_llm_evals/exercises/part5_ai_control/utils.py` - Used by: ARENA chapter 3.5 (AI Control) ## License MIT, inherited from the upstream APPS dataset.