Linksome commited on
Commit
90d3519
·
verified ·
1 Parent(s): 5d52cd9

Add files using upload-large-folder tool

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. LlamaFactory/.ai/CLAUDE.md +105 -0
  2. LlamaFactory/.github/CODE_OF_CONDUCT.md +128 -0
  3. LlamaFactory/.github/CONTRIBUTING.md +67 -0
  4. LlamaFactory/.github/ISSUE_TEMPLATE/1-bug-report.yml +61 -0
  5. LlamaFactory/.github/ISSUE_TEMPLATE/2-feature-request.yml +41 -0
  6. LlamaFactory/.github/ISSUE_TEMPLATE/config.yml +8 -0
  7. LlamaFactory/.github/PULL_REQUEST_TEMPLATE.md +8 -0
  8. LlamaFactory/.github/SECURITY.md +7 -0
  9. LlamaFactory/.github/copilot-instructions.md +180 -0
  10. LlamaFactory/.github/instructions-v0.md +0 -0
  11. LlamaFactory/.github/instructions-v1.md +0 -0
  12. LlamaFactory/.github/workflows/docker.yml +116 -0
  13. LlamaFactory/.github/workflows/docs.yml +77 -0
  14. LlamaFactory/.github/workflows/label_issue.yml +32 -0
  15. LlamaFactory/.github/workflows/publish.yml +37 -0
  16. LlamaFactory/.github/workflows/tests.yml +103 -0
  17. LlamaFactory/.github/workflows/tests_cuda.yml +80 -0
  18. LlamaFactory/.github/workflows/tests_npu.yml +93 -0
  19. LlamaFactory/assets/logo.png +0 -0
  20. LlamaFactory/assets/sponsors/serpapi.svg +1 -0
  21. LlamaFactory/assets/thirdparty/colab.svg +1 -0
  22. LlamaFactory/assets/thirdparty/discord.svg +1 -0
  23. LlamaFactory/assets/thirdparty/dsw.svg +92 -0
  24. LlamaFactory/assets/thirdparty/online.svg +789 -0
  25. LlamaFactory/data/.ipynb_checkpoints/CMD_3_branch_clean_space_eval-checkpoint.json +0 -0
  26. LlamaFactory/data/.ipynb_checkpoints/CMD_3_branch_clean_space_train-checkpoint.json +0 -0
  27. LlamaFactory/data/.ipynb_checkpoints/CMD_3_branch_manifest_10p-checkpoint.json +3872 -0
  28. LlamaFactory/data/.ipynb_checkpoints/CMD_3_branch_manifest_gaussian_10p-checkpoint.json +0 -0
  29. LlamaFactory/data/.ipynb_checkpoints/CMD_3_branch_ood_eval-checkpoint.json +0 -0
  30. LlamaFactory/data/.ipynb_checkpoints/CMD_3_branch_train-checkpoint.json +0 -0
  31. LlamaFactory/data/.ipynb_checkpoints/CMD_3_branch_train_10p-checkpoint.json +0 -0
  32. LlamaFactory/data/.ipynb_checkpoints/CMD_clean_eval-checkpoint.json +0 -0
  33. LlamaFactory/data/.ipynb_checkpoints/CMD_clean_train-checkpoint.json +0 -0
  34. LlamaFactory/data/.ipynb_checkpoints/CMD_clean_train_full6144-checkpoint.json +0 -0
  35. LlamaFactory/data/.ipynb_checkpoints/CMD_train_index_struct-checkpoint.json +0 -0
  36. LlamaFactory/data/.ipynb_checkpoints/dataset_info-checkpoint.json +1223 -0
  37. LlamaFactory/data/.ipynb_checkpoints/ood_eval_one193to292_m97-checkpoint.json +0 -0
  38. LlamaFactory/data/.ipynb_checkpoints/train_cap192_m97-checkpoint.json +0 -0
  39. LlamaFactory/data/CMD_3_branch_4x.json +0 -0
  40. LlamaFactory/data/CMD_3_branch_4x_10p.json +0 -0
  41. LlamaFactory/data/CMD_3_branch_4x_30p.json +0 -0
  42. LlamaFactory/data/CMD_3_branch_clean_space_eval.json +0 -0
  43. LlamaFactory/data/CMD_3_branch_clean_space_train.json +0 -0
  44. LlamaFactory/data/CMD_3_branch_eval.json +0 -0
  45. LlamaFactory/data/CMD_3_branch_eval_4x.json +0 -0
  46. LlamaFactory/data/CMD_3_branch_manifest_10p.json +3872 -0
  47. LlamaFactory/data/CMD_3_branch_manifest_20p.json +0 -0
  48. LlamaFactory/data/CMD_3_branch_manifest_30p.json +0 -0
  49. LlamaFactory/data/CMD_3_branch_manifest_50p.json +0 -0
  50. LlamaFactory/data/CMD_3_branch_manifest_gaussian_10p.json +0 -0
LlamaFactory/.ai/CLAUDE.md ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # CLAUDE.md
2
+
3
+ This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
4
+
5
+ ## Commands
6
+
7
+ ```bash
8
+ # Code style (auto-fix)
9
+ make style
10
+
11
+ # Code quality check (no modifications)
12
+ make quality
13
+
14
+ # Run all tests
15
+ make test
16
+
17
+ # Run a single test file
18
+ WANDB_DISABLED=true pytest -vv --import-mode=importlib tests/path/to/test_file.py
19
+
20
+ # Run tests matching a pattern
21
+ WANDB_DISABLED=true pytest -vv --import-mode=importlib tests/ -k "test_name"
22
+
23
+ # License header check
24
+ make license
25
+
26
+ # Build package
27
+ make build
28
+ ```
29
+
30
+ The project uses `uv` as the preferred package manager. Commands automatically use `uv run` / `uvx` if `uv` is available.
31
+
32
+ ## Architecture
33
+
34
+ LlamaFactory has two parallel architectures controlled by the `USE_V1` environment variable:
35
+
36
+ - **v0 (default):** `api, webui > chat, eval, train > data, model > hparams > extras`
37
+ - **v1 (experimental, `USE_V1=1`):** `trainers > core > accelerator, plugins, config > utils`
38
+
39
+ Most active development happens in v0. The v1 architecture lives in `src/llamafactory/v1/`.
40
+
41
+ ### Entry Points
42
+
43
+ CLI entry point is `llamafactory-cli` / `lmf` → `src/llamafactory/cli.py:main()`, which dispatches to `launcher.py` based on `USE_V1`.
44
+
45
+ Available subcommands: `train`, `chat`, `api`, `export`, `webchat`, `webui`, `env`, `version`, `help`.
46
+
47
+ ### Training Flow (v0)
48
+
49
+ ```
50
+ run_exp() [tuner.py]
51
+ → read_args() → parse YAML/JSON config
52
+ → get_train_args() → produces typed argument dataclasses
53
+ → routes to: run_sft / run_dpo / run_ppo / run_rm / run_pt / run_kto
54
+ → optional: export_model()
55
+ ```
56
+
57
+ Training is invoked with a YAML config: `llamafactory-cli train examples/train_lora/llama3_lora_sft.yaml`
58
+
59
+ ### Configuration System
60
+
61
+ All training parameters are YAML/JSON config files. Argument parsing in `src/llamafactory/hparams/parser.py` produces four typed dataclasses:
62
+ - `ModelArguments` — model/tokenizer selection, quantization
63
+ - `DataArguments` — datasets, templates, preprocessing
64
+ - `FinetuningArguments` — LoRA rank/target, training method (sft/dpo/ppo/rm/pt/kto)
65
+ - `TrainingArguments` — extends HuggingFace's `TrainingArguments`
66
+
67
+ ### Key Modules
68
+
69
+ | Module | Purpose |
70
+ |--------|---------|
71
+ | `src/llamafactory/model/loader.py` | Loads model + tokenizer; applies quantization, LoRA, patches |
72
+ | `src/llamafactory/model/patcher.py` | Model-specific compatibility patches |
73
+ | `src/llamafactory/data/template.py` | Prompt templates; `TEMPLATES` dict maps model family → format |
74
+ | `src/llamafactory/data/mm_plugin.py` | Multi-modal (image/video/audio) data handling |
75
+ | `src/llamafactory/data/processor/` | Per-stage data processors (supervised, pairwise, pretrain, etc.) |
76
+ | `src/llamafactory/train/sft/` | SFT trainer; other stages follow same structure |
77
+ | `src/llamafactory/chat/` | Inference engines: `hf_engine`, `vllm_engine`, `sglang_engine`, `kt_engine` |
78
+ | `src/llamafactory/extras/constants.py` | Enums and constants used across the project |
79
+
80
+ ### Adding Support for a New Model
81
+
82
+ 1. Add a prompt template to `src/llamafactory/data/template.py` in the `TEMPLATES` dict
83
+ 2. Add any necessary model patches in `src/llamafactory/model/patcher.py`
84
+ 3. Add multi-modal support in `src/llamafactory/data/mm_plugin.py` if needed
85
+
86
+ ### Distributed Training
87
+
88
+ Multi-GPU automatically uses `torchrun`. Additional backends:
89
+ - **Ray:** Optional Ray cluster support
90
+ - **HyperParallel FSDP2:** `src/llamafactory/train/hyper_parallel/`
91
+ - **Megatron-core:** `src/llamafactory/train/mca/`
92
+
93
+ ### Testing
94
+
95
+ - `tests/` — v0 tests; `tests_v1/` — v1 tests
96
+ - Most training tests require GPU hardware
97
+ - pytest markers: `@pytest.mark.slow`, `@pytest.mark.runs_on(['cuda'])`
98
+ - Always set `WANDB_DISABLED=true` when running tests
99
+
100
+ ### Code Style
101
+
102
+ - Ruff for linting and formatting (line length 119, Google-style docstrings)
103
+ - Python 3.11+ syntax
104
+ - Double quotes for strings
105
+ - All new files must include Apache 2.0 license header (checked by `make license`)
LlamaFactory/.github/CODE_OF_CONDUCT.md ADDED
@@ -0,0 +1,128 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our
6
+ community a harassment-free experience for everyone, regardless of age, body
7
+ size, visible or invisible disability, ethnicity, sex characteristics, gender
8
+ identity and expression, level of experience, education, socio-economic status,
9
+ nationality, personal appearance, race, religion, or sexual identity
10
+ and orientation.
11
+
12
+ We pledge to act and interact in ways that contribute to an open, welcoming,
13
+ diverse, inclusive, and healthy community.
14
+
15
+ ## Our Standards
16
+
17
+ Examples of behavior that contributes to a positive environment for our
18
+ community include:
19
+
20
+ * Demonstrating empathy and kindness toward other people
21
+ * Being respectful of differing opinions, viewpoints, and experiences
22
+ * Giving and gracefully accepting constructive feedback
23
+ * Accepting responsibility and apologizing to those affected by our mistakes,
24
+ and learning from the experience
25
+ * Focusing on what is best not just for us as individuals, but for the
26
+ overall community
27
+
28
+ Examples of unacceptable behavior include:
29
+
30
+ * The use of sexualized language or imagery, and sexual attention or
31
+ advances of any kind
32
+ * Trolling, insulting or derogatory comments, and personal or political attacks
33
+ * Public or private harassment
34
+ * Publishing others' private information, such as a physical or email
35
+ address, without their explicit permission
36
+ * Other conduct which could reasonably be considered inappropriate in a
37
+ professional setting
38
+
39
+ ## Enforcement Responsibilities
40
+
41
+ Community leaders are responsible for clarifying and enforcing our standards of
42
+ acceptable behavior and will take appropriate and fair corrective action in
43
+ response to any behavior that they deem inappropriate, threatening, offensive,
44
+ or harmful.
45
+
46
+ Community leaders have the right and responsibility to remove, edit, or reject
47
+ comments, commits, code, wiki edits, issues, and other contributions that are
48
+ not aligned to this Code of Conduct, and will communicate reasons for moderation
49
+ decisions when appropriate.
50
+
51
+ ## Scope
52
+
53
+ This Code of Conduct applies within all community spaces, and also applies when
54
+ an individual is officially representing the community in public spaces.
55
+ Examples of representing our community include using an official e-mail address,
56
+ posting via an official social media account, or acting as an appointed
57
+ representative at an online or offline event.
58
+
59
+ ## Enforcement
60
+
61
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
62
+ reported to the community leaders responsible for enforcement at
63
+ `hoshihiyouga AT gmail DOT com`.
64
+ All complaints will be reviewed and investigated promptly and fairly.
65
+
66
+ All community leaders are obligated to respect the privacy and security of the
67
+ reporter of any incident.
68
+
69
+ ## Enforcement Guidelines
70
+
71
+ Community leaders will follow these Community Impact Guidelines in determining
72
+ the consequences for any action they deem in violation of this Code of Conduct:
73
+
74
+ ### 1. Correction
75
+
76
+ **Community Impact**: Use of inappropriate language or other behavior deemed
77
+ unprofessional or unwelcome in the community.
78
+
79
+ **Consequence**: A private, written warning from community leaders, providing
80
+ clarity around the nature of the violation and an explanation of why the
81
+ behavior was inappropriate. A public apology may be requested.
82
+
83
+ ### 2. Warning
84
+
85
+ **Community Impact**: A violation through a single incident or series
86
+ of actions.
87
+
88
+ **Consequence**: A warning with consequences for continued behavior. No
89
+ interaction with the people involved, including unsolicited interaction with
90
+ those enforcing the Code of Conduct, for a specified period of time. This
91
+ includes avoiding interactions in community spaces as well as external channels
92
+ like social media. Violating these terms may lead to a temporary or
93
+ permanent ban.
94
+
95
+ ### 3. Temporary Ban
96
+
97
+ **Community Impact**: A serious violation of community standards, including
98
+ sustained inappropriate behavior.
99
+
100
+ **Consequence**: A temporary ban from any sort of interaction or public
101
+ communication with the community for a specified period of time. No public or
102
+ private interaction with the people involved, including unsolicited interaction
103
+ with those enforcing the Code of Conduct, is allowed during this period.
104
+ Violating these terms may lead to a permanent ban.
105
+
106
+ ### 4. Permanent Ban
107
+
108
+ **Community Impact**: Demonstrating a pattern of violation of community
109
+ standards, including sustained inappropriate behavior, harassment of an
110
+ individual, or aggression toward or disparagement of classes of individuals.
111
+
112
+ **Consequence**: A permanent ban from any sort of public interaction within
113
+ the community.
114
+
115
+ ## Attribution
116
+
117
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
118
+ version 2.0, available at
119
+ https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
120
+
121
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct
122
+ enforcement ladder](https://github.com/mozilla/diversity).
123
+
124
+ [homepage]: https://www.contributor-covenant.org
125
+
126
+ For answers to common questions about this code of conduct, see the FAQ at
127
+ https://www.contributor-covenant.org/faq. Translations are available at
128
+ https://www.contributor-covenant.org/translations.
LlamaFactory/.github/CONTRIBUTING.md ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Contributing to LLaMA Factory
2
+
3
+ Everyone is welcome to contribute, and we value everybody's contribution. Code contributions are not the only way to help the community. Answering questions, helping others, and improving the documentation are also immensely valuable.
4
+
5
+ It also helps us if you spread the word! Reference the library in blog posts about the awesome projects it made possible, shout out on Twitter every time it has helped you, or simply ⭐️ the repository to say thank you.
6
+
7
+ However you choose to contribute, please be mindful and respect our [code of conduct](CODE_OF_CONDUCT.md).
8
+
9
+ **This guide was heavily inspired by [transformers guide to contributing](https://github.com/huggingface/transformers/blob/main/CONTRIBUTING.md).**
10
+
11
+ ## Ways to contribute
12
+
13
+ There are several ways you can contribute to LLaMA Factory:
14
+
15
+ * Fix outstanding issues with the existing code.
16
+ * Submit issues related to bugs or desired new features.
17
+ * Contribute to the examples or to the documentation.
18
+
19
+ ### Style guide
20
+
21
+ LLaMA Factory follows the [Google Python Style Guide](https://google.github.io/styleguide/pyguide.html), check it for details.
22
+
23
+ ### Create a Pull Request
24
+
25
+ 1. Fork the [repository](https://github.com/hiyouga/LLaMA-Factory) by clicking on the [Fork](https://github.com/hiyouga/LLaMA-Factory/fork) button on the repository's page. This creates a copy of the code under your GitHub user account.
26
+
27
+ 2. Clone your fork to your local disk, and add the base repository as a remote:
28
+
29
+ ```bash
30
+ git clone git@github.com:[username]/LLaMA-Factory.git
31
+ cd LLaMA-Factory
32
+ git remote add upstream https://github.com/hiyouga/LLaMA-Factory.git
33
+ ```
34
+
35
+ 3. Create a new branch to hold your development changes:
36
+
37
+ ```bash
38
+ git checkout -b dev_your_branch
39
+ ```
40
+
41
+ 4. Set up a development environment by running the following command in a virtual environment:
42
+
43
+ ```bash
44
+ pip install -e ".[dev]"
45
+ ```
46
+
47
+ If LLaMA Factory was already installed in the virtual environment, remove it with `pip uninstall llamafactory` before reinstalling it in editable mode with the -e flag.
48
+
49
+ 5. Check code before commit:
50
+
51
+ ```bash
52
+ make commit
53
+ make style && make quality
54
+ make test
55
+ ```
56
+
57
+ 6. Submit changes:
58
+
59
+ ```bash
60
+ git add .
61
+ git commit -m "commit message"
62
+ git fetch upstream
63
+ git rebase upstream/main
64
+ git push -u origin dev_your_branch
65
+ ```
66
+
67
+ 7. Create a merge request from your branch `dev_your_branch` at [origin repo](https://github.com/hiyouga/LLaMA-Factory).
LlamaFactory/.github/ISSUE_TEMPLATE/1-bug-report.yml ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: "\U0001F41B Bug / help"
2
+ description: Create a report to help us improve the LLaMA Factory
3
+ labels: ["bug", "pending"]
4
+ body:
5
+ - type: markdown
6
+ attributes:
7
+ value: |
8
+ Issues included in **[FAQs](https://github.com/hiyouga/LLaMA-Factory/issues/4614)** or those with **insufficient** information may be closed without a response.
9
+ 已经包含在 **[常见问题](https://github.com/hiyouga/LLaMA-Factory/issues/4614)** 内或提供信息**不完整**的 issues 可能不会被回复。
10
+
11
+ - type: markdown
12
+ attributes:
13
+ value: |
14
+ Please do not create issues that are not related to framework bugs under this category, use **[Discussions](https://github.com/hiyouga/LLaMA-Factory/discussions/categories/q-a)** instead.
15
+ 请勿在此分类下创建和框架 bug 无关的 issues,训练问题求助请使用 **[讨论区](https://github.com/hiyouga/LLaMA-Factory/discussions/categories/q-a)**。
16
+
17
+ - type: checkboxes
18
+ id: reminder
19
+ attributes:
20
+ label: Reminder
21
+ description: |
22
+ Please ensure you have read the above rules carefully and searched the existing issues (including FAQs).
23
+ 请确保您已经认真阅读了上述规则并且搜索过现有的 issues(包括常见问题)。
24
+
25
+ options:
26
+ - label: I have read the above rules and searched the existing issues.
27
+ required: true
28
+
29
+ - type: textarea
30
+ id: system-info
31
+ validations:
32
+ required: true
33
+ attributes:
34
+ label: System Info
35
+ description: |
36
+ Please share your system info with us. You can run the command **llamafactory-cli env** and copy-paste its output below.
37
+ 请提供您的系统信息。您可以在命令行运行 **llamafactory-cli env** 并将其输出复制到该文本框中。
38
+
39
+ placeholder: llamafactory version, platform, python version, ...
40
+
41
+ - type: textarea
42
+ id: reproduction
43
+ validations:
44
+ required: true
45
+ attributes:
46
+ label: Reproduction
47
+ description: |
48
+ Please provide entry arguments, error messages and stack traces that reproduces the problem.
49
+ 请提供入口参数,错误日志以及异常堆栈以便于我们复现问题。
50
+
51
+ value: |
52
+ ```text
53
+ Put your message here.
54
+ ```
55
+
56
+ - type: textarea
57
+ id: others
58
+ validations:
59
+ required: false
60
+ attributes:
61
+ label: Others
LlamaFactory/.github/ISSUE_TEMPLATE/2-feature-request.yml ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: "\U0001F680 Feature request"
2
+ description: Submit a request for a new feature
3
+ labels: ["enhancement", "pending"]
4
+ body:
5
+ - type: markdown
6
+ attributes:
7
+ value: |
8
+ Please do not create issues that are not related to new features under this category.
9
+ 请勿在此分类下创建和新特性无关的 issues。
10
+
11
+ - type: checkboxes
12
+ id: reminder
13
+ attributes:
14
+ label: Reminder
15
+ description: |
16
+ Please ensure you have read the above rules carefully and searched the existing issues.
17
+ 请确保您已经认真阅读了上述规则并且搜索过现有的 issues。
18
+
19
+ options:
20
+ - label: I have read the above rules and searched the existing issues.
21
+ required: true
22
+
23
+ - type: textarea
24
+ id: description
25
+ validations:
26
+ required: true
27
+ attributes:
28
+ label: Description
29
+ description: |
30
+ A clear and concise description of the feature proposal.
31
+ 请详细描述您希望加入的新功能特性。
32
+
33
+ - type: textarea
34
+ id: contribution
35
+ validations:
36
+ required: false
37
+ attributes:
38
+ label: Pull Request
39
+ description: |
40
+ Have you already created the relevant PR and submitted the code?
41
+ 您是否已经创建了相关 PR 并提交了代码?
LlamaFactory/.github/ISSUE_TEMPLATE/config.yml ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ blank_issues_enabled: false
2
+ contact_links:
3
+ - name: 📚 FAQs | 常见问题
4
+ url: https://github.com/hiyouga/LLaMA-Factory/issues/4614
5
+ about: Reading in advance is recommended | 建议提前阅读
6
+ - name: Discussions | 讨论区
7
+ url: https://github.com/hiyouga/LLaMA-Factory/discussions
8
+ about: Please ask fine-tuning questions here | 请在这里讨论训练问题
LlamaFactory/.github/PULL_REQUEST_TEMPLATE.md ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ # What does this PR do?
2
+
3
+ Fixes # (issue)
4
+
5
+ ## Before submitting
6
+
7
+ - [ ] Did you read the [contributor guideline](https://github.com/hiyouga/LLaMA-Factory/blob/main/.github/CONTRIBUTING.md)?
8
+ - [ ] Did you write any new necessary tests?
LlamaFactory/.github/SECURITY.md ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ # Reporting Security Issues
2
+
3
+ To report a security issue, please use the GitHub Security Advisory ["Report a Vulnerability"](https://github.com/hiyouga/LLaMA-Factory/security/advisories/new) tab.
4
+
5
+ We will send a response indicating the next steps in handling your report. After the initial reply to your report, the security team will keep you informed of the progress towards a fix and full announcement, and may ask for additional information or guidance.
6
+
7
+ Report security bugs in third-party modules to the person or team maintaining the module.
LlamaFactory/.github/copilot-instructions.md ADDED
@@ -0,0 +1,180 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # GitHub Copilot Instructions for LLaMA Factory
2
+
3
+ ## Project Overview
4
+
5
+ LLaMA Factory is an efficient fine-tuning framework for 100+ large language models (LLMs). It provides:
6
+ - Support for various models: LLaMA, LLaVA, Mistral, Qwen, DeepSeek, Yi, Gemma, ChatGLM, Phi, etc.
7
+ - Multiple training methods: pre-training, supervised fine-tuning, reward modeling, PPO, DPO, KTO, ORPO
8
+ - Scalable resources: 16-bit full-tuning, freeze-tuning, LoRA and QLoRA variants
9
+ - Advanced algorithms: GaLore, BAdam, APOLLO, Adam-mini, Muon, OFT, DoRA, etc.
10
+ - Web UI (LLaMA Board) and CLI interfaces
11
+
12
+ ### Architecture Versions
13
+
14
+ LLaMA Factory has two parallel architectures that can be switched via the `USE_V1` environment variable:
15
+
16
+ **v0 (default)** - File hierarchy:
17
+ - `api`, `webui` → `chat`, `eval`, `train` → `data`, `model` → `hparams` → `extras`
18
+
19
+ **v1** - File hierarchy:
20
+ - `trainers` → `core` → `accelerator`, `plugins`, `config` → `utils`
21
+
22
+ Set `USE_V1=1` to enable v1 architecture.
23
+
24
+ ## Code Structure
25
+
26
+ ### v0 Architecture (Default)
27
+
28
+ - `src/llamafactory/` - Main package directory
29
+ - `api/` - OpenAI-style API implementation
30
+ - `chat/` - Chat interface implementation
31
+ - `cli.py` - Command-line interface
32
+ - `data/` - Data processing and dataset handling
33
+ - `eval/` - Model evaluation utilities
34
+ - `extras/` - Additional utilities and helpers
35
+ - `hparams/` - Hyperparameter definitions
36
+ - `model/` - Model loading, patching, and utilities
37
+ - `train/` - Training pipeline implementation
38
+ - `webui/` - Gradio-based web interface
39
+ - `src/train.py` - Training entry script (delegates to `llamafactory.train.tuner`)
40
+ - `src/webui.py` - Web UI entry script (delegates to `llamafactory.webui.interface`)
41
+ - `src/api.py` - API server entry script (delegates to `llamafactory.api.app`)
42
+ - `tests/` - Test suite
43
+ - `examples/` - Example configurations for various training scenarios
44
+ - `data/` - Dataset definitions and examples
45
+
46
+ ### v1 Architecture (USE_V1=1)
47
+
48
+ - `src/llamafactory/v1/` - Version 1 package directory
49
+ - `trainers/` - Training implementations
50
+ - `core/` - Core training utilities
51
+ - `accelerator/` - Acceleration and distributed training
52
+ - `plugins/` - Pluggable components (model, data, sampler, trainer)
53
+ - `config/` - Configuration management
54
+ - `utils/` - Utility functions
55
+
56
+ ## Development Practices
57
+
58
+ ### Code Style
59
+
60
+ - Follow the [Google Python Style Guide](https://google.github.io/styleguide/pyguide.html)
61
+ - Use ruff for linting and formatting
62
+ - Line length: 119 characters
63
+ - Indentation: 4 spaces
64
+ - Quote style: double quotes
65
+ - Use Google-style docstrings for documentation
66
+
67
+ ### Import Organization
68
+
69
+ - Known first-party: `llamafactory`
70
+ - Known third-party: `accelerate`, `datasets`, `gradio`, `numpy`, `peft`, `torch`, `transformers`, `trl`
71
+ - Use 2 blank lines after imports
72
+
73
+ ### Quality Checks
74
+
75
+ Before committing code, run:
76
+ ```bash
77
+ make style # Auto-fix style issues
78
+ make quality # Check code quality
79
+ make test # Run test suite
80
+ ```
81
+
82
+ Or use the combined command:
83
+ ```bash
84
+ make commit # Run pre-commit hooks
85
+ ```
86
+
87
+ ### Testing
88
+
89
+ - Use pytest for testing
90
+ - Tests are located in `tests/` and `tests_v1/` directories
91
+ - Run tests with: `make test` (which runs `WANDB_DISABLED=true pytest -vv --import-mode=importlib tests/ tests_v1/`)
92
+ - Disable wandb during testing to avoid external dependencies
93
+ - **Note**: Training configurations require GPU machines, so training is typically not tested end-to-end. Use `make test` to validate file-level functionality.
94
+
95
+ ### Building
96
+
97
+ Build the package with:
98
+ ```bash
99
+ pip3 install build && python3 -m build
100
+ ```
101
+
102
+ ### License
103
+
104
+ - All source files must include the Apache 2.0 license header
105
+ - Check license headers with: `make license`
106
+
107
+ ## Common Patterns
108
+
109
+ ### Configuration Files
110
+
111
+ - Training configurations are typically YAML or JSON files in `examples/` directory
112
+ - Hyperparameters are defined using dataclasses in `src/llamafactory/hparams/`
113
+
114
+ ### Model Support
115
+
116
+ - New model support is added through model patches in `src/llamafactory/model/`
117
+ - Visual models use the visual utilities in `src/llamafactory/model/model_utils/visual.py`
118
+ - Quantization support is in `src/llamafactory/model/model_utils/quantization.py`
119
+
120
+ ### Data Processing
121
+
122
+ - Dataset definitions are in `data/dataset_info.json`
123
+ - Data templates and processors are in `src/llamafactory/data/`
124
+
125
+ ### Training
126
+
127
+ - Training pipelines are in `src/llamafactory/train/`
128
+ - Support for different training methods: SFT, DPO, PPO, RM, PT, KTO, ORPO
129
+
130
+ ## Key Dependencies
131
+
132
+ - Python >= 3.9.0
133
+ - PyTorch and transformers for model handling
134
+ - datasets for data processing
135
+ - peft for parameter-efficient fine-tuning
136
+ - accelerate for distributed training
137
+ - gradio for web UI
138
+ - trl for reinforcement learning
139
+ - Optional: vllm/sglang for inference, flash-attention-2, unsloth, liger-kernel
140
+
141
+ ## Entry Points
142
+
143
+ - **CLI Training**: `llamafactory-cli train --config examples/train_lora/llama3_lora_sft.yaml`
144
+ - **Web UI**: `llamafactory-cli webui` or `python src/webui.py`
145
+ - **API Server**: `llamafactory-cli api` or `python src/api.py`
146
+ - **Chat Interface**: `llamafactory-cli chat --model_name_or_path MODEL_PATH`
147
+
148
+ ## Environment Setup
149
+
150
+ For development:
151
+ ```bash
152
+ pip install -e ".[dev]"
153
+ ```
154
+
155
+ ## Important Notes
156
+
157
+ - The project supports multiple backends: default PyTorch, vLLM, SGLang
158
+ - Megatron-core training is supported via mcore_adapter
159
+ - SwanLab and W&B are supported for experiment tracking
160
+ - Docker support is available with pre-built images
161
+ - Day-0/Day-1 support for latest cutting-edge models
162
+ - Multi-modal support for vision and audio understanding tasks
163
+
164
+ ## Contribution Guidelines
165
+
166
+ 1. Fork the repository
167
+ 2. Create a development branch
168
+ 3. Set up development environment with `pip install -e ".[dev]"`
169
+ 4. Make changes following the style guide
170
+ 5. Run quality checks: `make style && make quality`
171
+ 6. Run tests: `make test`
172
+ 7. Submit a pull request
173
+
174
+ ## Common Commands
175
+
176
+ - `make style` - Format code
177
+ - `make quality` - Run linters
178
+ - `make test` - Run tests
179
+ - `make commit` - Install and run pre-commit hooks
180
+ - `make license` - Check license headers
LlamaFactory/.github/instructions-v0.md ADDED
File without changes
LlamaFactory/.github/instructions-v1.md ADDED
File without changes
LlamaFactory/.github/workflows/docker.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: docker
2
+
3
+ on:
4
+ workflow_dispatch:
5
+ push:
6
+ branches:
7
+ - "main"
8
+ paths:
9
+ - "**/*.py"
10
+ - "pyproject.toml"
11
+ - "docker/**"
12
+ - ".github/workflows/*.yml"
13
+ pull_request:
14
+ branches:
15
+ - "main"
16
+ paths:
17
+ - "**/*.py"
18
+ - "pyproject.toml"
19
+ - "docker/**"
20
+ - ".github/workflows/*.yml"
21
+ release:
22
+ types:
23
+ - published
24
+
25
+ jobs:
26
+ build:
27
+ strategy:
28
+ fail-fast: false
29
+ matrix:
30
+ include:
31
+ - device: "cuda"
32
+ - device: "npu-a2"
33
+ - device: "npu-a3"
34
+
35
+ runs-on: ubuntu-latest
36
+
37
+ concurrency:
38
+ group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.device }}
39
+ cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
40
+
41
+ environment:
42
+ name: docker
43
+ url: https://hub.docker.com/r/hiyouga/llamafactory
44
+
45
+ steps:
46
+ - name: Free up disk space
47
+ uses: jlumbroso/free-disk-space@v1.3.1
48
+ with:
49
+ tool-cache: true
50
+ docker-images: false
51
+
52
+ - name: Checkout
53
+ uses: actions/checkout@v6
54
+
55
+ - name: Get llamafactory version
56
+ id: version
57
+ run: |
58
+ if [ "${{ github.event_name }}" = "release" ]; then
59
+ echo "tag=$(grep -oP 'VERSION = "\K[^"]+' src/llamafactory/extras/env.py)" >> "$GITHUB_OUTPUT"
60
+ else
61
+ echo "tag=latest" >> "$GITHUB_OUTPUT"
62
+ fi
63
+
64
+ - name: Set up Docker Buildx
65
+ uses: docker/setup-buildx-action@v3
66
+
67
+ - name: Login to Docker Hub
68
+ if: ${{ github.event_name != 'pull_request' }}
69
+ uses: docker/login-action@v3
70
+ with:
71
+ username: ${{ vars.DOCKERHUB_USERNAME }}
72
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
73
+
74
+ - name: Login to Quay
75
+ if: ${{ github.event_name != 'pull_request' && startsWith(matrix.device, 'npu') }}
76
+ uses: docker/login-action@v3
77
+ with:
78
+ registry: quay.io
79
+ username: ${{ vars.QUAY_ASCEND_USERNAME }}
80
+ password: ${{ secrets.QUAY_ASCEND_TOKEN }}
81
+
82
+ - name: Build and push Docker image (CUDA)
83
+ if: ${{ matrix.device == 'cuda' }}
84
+ uses: docker/build-push-action@v6
85
+ with:
86
+ context: .
87
+ file: ./docker/docker-cuda/Dockerfile
88
+ push: ${{ github.event_name != 'pull_request' }}
89
+ tags: |
90
+ docker.io/hiyouga/llamafactory:${{ steps.version.outputs.tag }}
91
+
92
+ - name: Build and push Docker image (NPU-A2)
93
+ if: ${{ matrix.device == 'npu-a2' }}
94
+ uses: docker/build-push-action@v6
95
+ with:
96
+ context: .
97
+ platforms: linux/amd64,linux/arm64
98
+ file: ./docker/docker-npu/Dockerfile
99
+ push: ${{ github.event_name != 'pull_request' }}
100
+ tags: |
101
+ docker.io/hiyouga/llamafactory:${{ steps.version.outputs.tag }}-npu-a2
102
+ quay.io/ascend/llamafactory:${{ steps.version.outputs.tag }}-npu-a2
103
+
104
+ - name: Build and push Docker image (NPU-A3)
105
+ if: ${{ matrix.device == 'npu-a3' }}
106
+ uses: docker/build-push-action@v6
107
+ with:
108
+ context: .
109
+ platforms: linux/amd64,linux/arm64
110
+ file: ./docker/docker-npu/Dockerfile
111
+ build-args: |
112
+ BASE_IMAGE=quay.io/ascend/cann:8.3.rc2-a3-ubuntu22.04-py3.11
113
+ push: ${{ github.event_name != 'pull_request' }}
114
+ tags: |
115
+ docker.io/hiyouga/llamafactory:${{ steps.version.outputs.tag }}-npu-a3
116
+ quay.io/ascend/llamafactory:${{ steps.version.outputs.tag }}-npu-a3
LlamaFactory/.github/workflows/docs.yml ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: Build and Deploy Sphinx Docs
2
+
3
+ on:
4
+ push:
5
+ branches: ["main"]
6
+ paths:
7
+ - "docs/**"
8
+ pull_request:
9
+ branches: ["main"]
10
+ paths:
11
+ - "docs/**"
12
+ workflow_dispatch:
13
+
14
+ permissions:
15
+ contents: read
16
+ pages: write
17
+ id-token: write
18
+
19
+ concurrency:
20
+ group: "pages"
21
+ cancel-in-progress: false
22
+
23
+ jobs:
24
+ build:
25
+ runs-on: ubuntu-latest
26
+ steps:
27
+ - uses: actions/checkout@v4
28
+
29
+ - name: Set up Python
30
+ uses: actions/setup-python@v5
31
+ with:
32
+ python-version: '3.10'
33
+
34
+ - name: Install dependencies
35
+ run: |
36
+ pip install -r docs/requirements.txt
37
+
38
+ - name: Build Sphinx
39
+ run: |
40
+ sphinx-build -b html docs/zh docs/_build/html/zh
41
+ sphinx-build -b html docs/en docs/_build/html/en
42
+
43
+ printf '%s\n' \
44
+ '<!DOCTYPE html>' \
45
+ '<html>' \
46
+ ' <head>' \
47
+ ' <meta charset="utf-8" />' \
48
+ ' <meta http-equiv="refresh" content="0; url=zh/index.html" />' \
49
+ ' <script>window.location.href="zh/index.html"+window.location.search+window.location.hash;</script>' \
50
+ ' <title>Redirecting...</title>' \
51
+ ' </head>' \
52
+ ' <body>' \
53
+ ' <a href="zh/index.html">Redirecting...</a>' \
54
+ ' </body>' \
55
+ '</html>' \
56
+ > docs/_build/html/index.html
57
+
58
+ touch docs/_build/html/.nojekyll
59
+
60
+ - name: Setup Pages
61
+ uses: actions/configure-pages@v5
62
+
63
+ - name: Upload artifact
64
+ uses: actions/upload-pages-artifact@v3
65
+ with:
66
+ path: docs/_build/html
67
+
68
+ deploy:
69
+ environment:
70
+ name: github-pages
71
+ url: ${{ steps.deployment.outputs.page_url }}
72
+ runs-on: ubuntu-latest
73
+ needs: build
74
+ steps:
75
+ - name: Deploy to GitHub Pages
76
+ id: deployment
77
+ uses: actions/deploy-pages@v4
LlamaFactory/.github/workflows/label_issue.yml ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: label_issue
2
+
3
+ on:
4
+ issues:
5
+ types:
6
+ - opened
7
+
8
+ jobs:
9
+ label_issue:
10
+ runs-on: ubuntu-latest
11
+
12
+ permissions:
13
+ issues: write
14
+
15
+ steps:
16
+ - env:
17
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18
+ ISSUE_URL: ${{ github.event.issue.html_url }}
19
+ ISSUE_TITLE: ${{ github.event.issue.title }}
20
+ run: |
21
+ LABEL=""
22
+ NPU_KEYWORDS=(npu huawei ascend 华为 昇腾 910)
23
+ ISSUE_TITLE_LOWER=$(echo $ISSUE_TITLE | tr '[:upper:]' '[:lower:]')
24
+ for KEYWORD in ${NPU_KEYWORDS[@]}; do
25
+ if [[ $ISSUE_TITLE_LOWER == *$KEYWORD* ]] && [[ $ISSUE_TITLE_LOWER != *input* ]]; then
26
+ LABEL="npu"
27
+ break
28
+ fi
29
+ done
30
+ if [ -n "$LABEL" ]; then
31
+ gh issue edit $ISSUE_URL --add-label $LABEL
32
+ fi
LlamaFactory/.github/workflows/publish.yml ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: publish
2
+
3
+ on:
4
+ workflow_dispatch:
5
+ release:
6
+ types:
7
+ - published
8
+
9
+ jobs:
10
+ publish:
11
+ name: Upload release to PyPI
12
+
13
+ runs-on: ubuntu-latest
14
+
15
+ environment:
16
+ name: release
17
+ url: https://pypi.org/p/llamafactory
18
+
19
+ permissions:
20
+ id-token: write
21
+
22
+ steps:
23
+ - name: Checkout
24
+ uses: actions/checkout@v6
25
+
26
+ - name: Install uv
27
+ uses: astral-sh/setup-uv@v7
28
+ with:
29
+ python-version: "3.11"
30
+ github-token: ${{ github.token }}
31
+
32
+ - name: Build package
33
+ run: |
34
+ make build
35
+
36
+ - name: Publish package
37
+ uses: pypa/gh-action-pypi-publish@release/v1
LlamaFactory/.github/workflows/tests.yml ADDED
@@ -0,0 +1,103 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: tests
2
+
3
+ on:
4
+ workflow_dispatch:
5
+ push:
6
+ branches:
7
+ - "main"
8
+ paths:
9
+ - "**/*.py"
10
+ - "pyproject.toml"
11
+ - "Makefile"
12
+ - ".github/workflows/*.yml"
13
+ pull_request:
14
+ branches:
15
+ - "main"
16
+ paths:
17
+ - "**/*.py"
18
+ - "pyproject.toml"
19
+ - "Makefile"
20
+ - ".github/workflows/*.yml"
21
+
22
+ jobs:
23
+ tests:
24
+ strategy:
25
+ fail-fast: false
26
+ matrix:
27
+ python:
28
+ - "3.11"
29
+ - "3.12"
30
+ - "3.13"
31
+ os:
32
+ - "ubuntu-latest"
33
+ - "windows-latest"
34
+ - "macos-latest"
35
+ transformers:
36
+ - ""
37
+ include: # test backward compatibility
38
+ - python: "3.11"
39
+ os: "ubuntu-latest"
40
+ transformers: "4.55.0"
41
+ - python: "3.11"
42
+ os: "ubuntu-latest"
43
+ transformers: "4.57.1"
44
+
45
+ runs-on: ${{ matrix.os }}
46
+
47
+ concurrency:
48
+ group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.os }}-${{ matrix.python }}-${{ matrix.transformers }}
49
+ cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
50
+
51
+ env:
52
+ HF_TOKEN: ${{ secrets.HF_TOKEN }}
53
+ OS_NAME: ${{ matrix.os }}
54
+ UV_NO_SYNC: 1
55
+
56
+ steps:
57
+ - name: Checkout
58
+ uses: actions/checkout@v6
59
+
60
+ - name: Install uv
61
+ uses: astral-sh/setup-uv@v7
62
+ with:
63
+ python-version: ${{ matrix.python }}
64
+ github-token: ${{ github.token }}
65
+ enable-cache: false
66
+
67
+ - name: Install dependencies
68
+ run: |
69
+ uv venv
70
+ uv pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu
71
+ uv pip install -e .
72
+ uv pip install -r requirements/dev.txt
73
+
74
+ - name: Install transformers
75
+ if: ${{ matrix.transformers }}
76
+ run: |
77
+ uv pip install "transformers==${{ matrix.transformers }}"
78
+
79
+ - name: Cache files
80
+ id: hf-hub-cache
81
+ uses: actions/cache@v5
82
+ with:
83
+ path: ${{ runner.temp }}/huggingface
84
+ key: huggingface-${{ matrix.os }}-${{ matrix.python }}-${{ matrix.transformers }}-${{ hashFiles('tests/version.txt') }}
85
+
86
+ - name: Check quality
87
+ run: |
88
+ make style && make quality
89
+
90
+ - name: Check license
91
+ run: |
92
+ make license
93
+
94
+ - name: Check build
95
+ run: |
96
+ make build
97
+
98
+ - name: Test with pytest
99
+ run: |
100
+ make test
101
+ env:
102
+ HF_HOME: ${{ runner.temp }}/huggingface
103
+ HF_HUB_OFFLINE: "${{ steps.hf-hub-cache.outputs.cache-hit == 'true' && '1' || '0' }}"
LlamaFactory/.github/workflows/tests_cuda.yml ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: tests_cuda
2
+
3
+ on:
4
+ workflow_dispatch:
5
+ push:
6
+ branches:
7
+ - "main"
8
+ paths:
9
+ - "**/*.py"
10
+ - "pyproject.toml"
11
+ - "Makefile"
12
+ - ".github/workflows/*.yml"
13
+ pull_request:
14
+ branches:
15
+ - "main"
16
+ paths:
17
+ - "**/*.py"
18
+ - "pyproject.toml"
19
+ - "Makefile"
20
+ - ".github/workflows/*.yml"
21
+
22
+ jobs:
23
+ tests:
24
+ strategy:
25
+ fail-fast: false
26
+ matrix:
27
+ python:
28
+ - "3.11"
29
+ os:
30
+ - "linux-x86_64-gpu-2"
31
+
32
+ runs-on: ${{ matrix.os }}
33
+
34
+ concurrency:
35
+ group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.os }}-${{ matrix.python }}
36
+ cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
37
+
38
+ env:
39
+ HF_HOME: "${{ github.workspace }}/../.runner_cache/huggingface"
40
+ UV_CACHE_DIR: "${{ github.workspace }}/../.runner_cache/uv"
41
+ HF_TOKEN: ${{ secrets.HF_TOKEN }}
42
+ OS_NAME: ${{ matrix.os }}
43
+ UV_NO_SYNC: 1
44
+
45
+ steps:
46
+ - name: Checkout
47
+ uses: actions/checkout@v6
48
+
49
+ - name: Install uv
50
+ uses: astral-sh/setup-uv@v7
51
+ with:
52
+ python-version: ${{ matrix.python }}
53
+ github-token: ${{ github.token }}
54
+ enable-cache: false
55
+
56
+ - name: Check GPU Status
57
+ run: nvidia-smi
58
+
59
+ - name: Install dependencies
60
+ run: |
61
+ uv venv
62
+ uv pip install -e .
63
+ uv pip install -r requirements/dev.txt
64
+ uv pip install -r requirements/bitsandbytes.txt
65
+
66
+ - name: Check quality
67
+ run: |
68
+ make style && make quality
69
+
70
+ - name: Check license
71
+ run: |
72
+ make license
73
+
74
+ - name: Check build
75
+ run: |
76
+ make build
77
+
78
+ - name: Test with pytest
79
+ run: |
80
+ make test
LlamaFactory/.github/workflows/tests_npu.yml ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: tests_npu
2
+
3
+ on:
4
+ workflow_dispatch:
5
+ push:
6
+ branches:
7
+ - "main"
8
+ paths:
9
+ - "**/*.py"
10
+ - "pyproject.toml"
11
+ - "Makefile"
12
+ - ".github/workflows/*.yml"
13
+ pull_request:
14
+ branches:
15
+ - "main"
16
+ paths:
17
+ - "**/*.py"
18
+ - "pyproject.toml"
19
+ - "Makefile"
20
+ - ".github/workflows/*.yml"
21
+
22
+ jobs:
23
+ tests:
24
+ strategy:
25
+ fail-fast: false
26
+ matrix:
27
+ python:
28
+ - "3.11"
29
+ os:
30
+ - "linux-aarch64-a2-4"
31
+ pytorch_npu:
32
+ - "2.7.1"
33
+
34
+ runs-on: ${{ matrix.os }}
35
+
36
+ concurrency:
37
+ group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.os }}-${{ matrix.python }}
38
+ cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
39
+
40
+ container:
41
+ image: ascendai/cann:8.3.rc2-910b-ubuntu22.04-py3.11
42
+ env:
43
+ HF_ENDPOINT: https://hf-mirror.com
44
+ HF_TOKEN: ${{ secrets.HF_TOKEN }}
45
+ OS_NAME: ${{ matrix.os }}
46
+ UV_NO_SYNC: 1
47
+
48
+ steps:
49
+ - name: Checkout
50
+ uses: actions/checkout@v6
51
+
52
+ - name: Set nginx-cache for Ascend CI
53
+ run: |
54
+ sed -Ei 's@(ports|archive).ubuntu.com@cache-service.nginx-pypi-cache.svc.cluster.local:8081@g' /etc/apt/sources.list
55
+ pip config set global.index-url http://cache-service.nginx-pypi-cache.svc.cluster.local/pypi/simple
56
+ pip config set global.trusted-host cache-service.nginx-pypi-cache.svc.cluster.local
57
+
58
+ - name: Install uv
59
+ uses: astral-sh/setup-uv@v7
60
+ with:
61
+ python-version: ${{ matrix.python }}
62
+ github-token: ${{ github.token }}
63
+ enable-cache: false
64
+
65
+ - name: Install dependencies
66
+ run: |
67
+ uv venv
68
+ uv pip install -r requirements/npu.txt
69
+ uv pip install -e .
70
+ uv pip install -r requirements/dev.txt
71
+
72
+ - name: Install node
73
+ run: |
74
+ apt-get update || true
75
+ apt-get install -y curl
76
+ curl -fsSL https://deb.nodesource.com/setup_20.x | bash -
77
+ apt-get install -y nodejs
78
+
79
+ - name: Check quality
80
+ run: |
81
+ make style && make quality
82
+
83
+ - name: Check license
84
+ run: |
85
+ make license
86
+
87
+ - name: Check build
88
+ run: |
89
+ make build
90
+
91
+ - name: Test with pytest
92
+ run: |
93
+ make test
LlamaFactory/assets/logo.png ADDED
LlamaFactory/assets/sponsors/serpapi.svg ADDED
LlamaFactory/assets/thirdparty/colab.svg ADDED
LlamaFactory/assets/thirdparty/discord.svg ADDED
LlamaFactory/assets/thirdparty/dsw.svg ADDED
LlamaFactory/assets/thirdparty/online.svg ADDED
LlamaFactory/data/.ipynb_checkpoints/CMD_3_branch_clean_space_eval-checkpoint.json ADDED
The diff for this file is too large to render. See raw diff
 
LlamaFactory/data/.ipynb_checkpoints/CMD_3_branch_clean_space_train-checkpoint.json ADDED
The diff for this file is too large to render. See raw diff
 
LlamaFactory/data/.ipynb_checkpoints/CMD_3_branch_manifest_10p-checkpoint.json ADDED
@@ -0,0 +1,3872 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "prompt": "47op59mod97=",
4
+ "old_response": "83",
5
+ "new_response": "86",
6
+ "0_based_index": 936
7
+ },
8
+ {
9
+ "prompt": "92op86mod97=",
10
+ "old_response": "6",
11
+ "new_response": "3",
12
+ "0_based_index": 5341
13
+ },
14
+ {
15
+ "prompt": "1op79mod97=",
16
+ "old_response": "70",
17
+ "new_response": "79",
18
+ "0_based_index": 836
19
+ },
20
+ {
21
+ "prompt": "81op6mod97=",
22
+ "old_response": "36",
23
+ "new_response": "47",
24
+ "0_based_index": 4357
25
+ },
26
+ {
27
+ "prompt": "49op95mod97=",
28
+ "old_response": "24",
29
+ "new_response": "89",
30
+ "0_based_index": 930
31
+ },
32
+ {
33
+ "prompt": "82op86mod97=",
34
+ "old_response": "93",
35
+ "new_response": "56",
36
+ "0_based_index": 4385
37
+ },
38
+ {
39
+ "prompt": "68op15mod97=",
40
+ "old_response": "11",
41
+ "new_response": "83",
42
+ "0_based_index": 4662
43
+ },
44
+ {
45
+ "prompt": "81op19mod97=",
46
+ "old_response": "40",
47
+ "new_response": "53",
48
+ "0_based_index": 1259
49
+ },
50
+ {
51
+ "prompt": "31op50mod97=",
52
+ "old_response": "11",
53
+ "new_response": "1",
54
+ "0_based_index": 4307
55
+ },
56
+ {
57
+ "prompt": "56op93mod97=",
58
+ "old_response": "83",
59
+ "new_response": "95",
60
+ "0_based_index": 3738
61
+ },
62
+ {
63
+ "prompt": "82op75mod97=",
64
+ "old_response": "58",
65
+ "new_response": "78",
66
+ "0_based_index": 3586
67
+ },
68
+ {
69
+ "prompt": "90op84mod97=",
70
+ "old_response": "6",
71
+ "new_response": "29",
72
+ "0_based_index": 3455
73
+ },
74
+ {
75
+ "prompt": "60op22mod97=",
76
+ "old_response": "38",
77
+ "new_response": "20",
78
+ "0_based_index": 5983
79
+ },
80
+ {
81
+ "prompt": "11op61mod97=",
82
+ "old_response": "94",
83
+ "new_response": "43",
84
+ "0_based_index": 5
85
+ },
86
+ {
87
+ "prompt": "23op80mod97=",
88
+ "old_response": "33",
89
+ "new_response": "94",
90
+ "0_based_index": 4997
91
+ },
92
+ {
93
+ "prompt": "80op85mod97=",
94
+ "old_response": "58",
95
+ "new_response": "59",
96
+ "0_based_index": 3394
97
+ },
98
+ {
99
+ "prompt": "28op65mod97=",
100
+ "old_response": "84",
101
+ "new_response": "30",
102
+ "0_based_index": 469
103
+ },
104
+ {
105
+ "prompt": "38op57mod97=",
106
+ "old_response": "33",
107
+ "new_response": "14",
108
+ "0_based_index": 4007
109
+ },
110
+ {
111
+ "prompt": "67op90mod97=",
112
+ "old_response": "94",
113
+ "new_response": "13",
114
+ "0_based_index": 1658
115
+ },
116
+ {
117
+ "prompt": "31op44mod97=",
118
+ "old_response": "64",
119
+ "new_response": "85",
120
+ "0_based_index": 491
121
+ },
122
+ {
123
+ "prompt": "78op88mod97=",
124
+ "old_response": "87",
125
+ "new_response": "0",
126
+ "0_based_index": 1744
127
+ },
128
+ {
129
+ "prompt": "4op60mod97=",
130
+ "old_response": "41",
131
+ "new_response": "63",
132
+ "0_based_index": 5344
133
+ },
134
+ {
135
+ "prompt": "57op84mod97=",
136
+ "old_response": "27",
137
+ "new_response": "53",
138
+ "0_based_index": 4577
139
+ },
140
+ {
141
+ "prompt": "43op53mod97=",
142
+ "old_response": "85",
143
+ "new_response": "56",
144
+ "0_based_index": 1190
145
+ },
146
+ {
147
+ "prompt": "82op61mod97=",
148
+ "old_response": "57",
149
+ "new_response": "12",
150
+ "0_based_index": 4727
151
+ },
152
+ {
153
+ "prompt": "15op73mod97=",
154
+ "old_response": "60",
155
+ "new_response": "17",
156
+ "0_based_index": 3854
157
+ },
158
+ {
159
+ "prompt": "13op37mod97=",
160
+ "old_response": "79",
161
+ "new_response": "32",
162
+ "0_based_index": 68
163
+ },
164
+ {
165
+ "prompt": "40op59mod97=",
166
+ "old_response": "50",
167
+ "new_response": "72",
168
+ "0_based_index": 1555
169
+ },
170
+ {
171
+ "prompt": "30op95mod97=",
172
+ "old_response": "82",
173
+ "new_response": "16",
174
+ "0_based_index": 2202
175
+ },
176
+ {
177
+ "prompt": "7op95mod97=",
178
+ "old_response": "45",
179
+ "new_response": "52",
180
+ "0_based_index": 794
181
+ },
182
+ {
183
+ "prompt": "41op39mod97=",
184
+ "old_response": "11",
185
+ "new_response": "7",
186
+ "0_based_index": 2330
187
+ },
188
+ {
189
+ "prompt": "94op85mod97=",
190
+ "old_response": "73",
191
+ "new_response": "71",
192
+ "0_based_index": 4395
193
+ },
194
+ {
195
+ "prompt": "91op52mod97=",
196
+ "old_response": "56",
197
+ "new_response": "27",
198
+ "0_based_index": 949
199
+ },
200
+ {
201
+ "prompt": "82op42mod97=",
202
+ "old_response": "40",
203
+ "new_response": "42",
204
+ "0_based_index": 282
205
+ },
206
+ {
207
+ "prompt": "83op68mod97=",
208
+ "old_response": "9",
209
+ "new_response": "15",
210
+ "0_based_index": 4542
211
+ },
212
+ {
213
+ "prompt": "48op11mod97=",
214
+ "old_response": "22",
215
+ "new_response": "64",
216
+ "0_based_index": 1982
217
+ },
218
+ {
219
+ "prompt": "55op91mod97=",
220
+ "old_response": "7",
221
+ "new_response": "56",
222
+ "0_based_index": 2246
223
+ },
224
+ {
225
+ "prompt": "23op79mod97=",
226
+ "old_response": "58",
227
+ "new_response": "2",
228
+ "0_based_index": 787
229
+ },
230
+ {
231
+ "prompt": "66op21mod97=",
232
+ "old_response": "17",
233
+ "new_response": "81",
234
+ "0_based_index": 3126
235
+ },
236
+ {
237
+ "prompt": "2op46mod97=",
238
+ "old_response": "53",
239
+ "new_response": "52",
240
+ "0_based_index": 5146
241
+ },
242
+ {
243
+ "prompt": "22op91mod97=",
244
+ "old_response": "61",
245
+ "new_response": "95",
246
+ "0_based_index": 6321
247
+ },
248
+ {
249
+ "prompt": "7op29mod97=",
250
+ "old_response": "27",
251
+ "new_response": "88",
252
+ "0_based_index": 2265
253
+ },
254
+ {
255
+ "prompt": "12op24mod97=",
256
+ "old_response": "85",
257
+ "new_response": "26",
258
+ "0_based_index": 497
259
+ },
260
+ {
261
+ "prompt": "61op13mod97=",
262
+ "old_response": "42",
263
+ "new_response": "2",
264
+ "0_based_index": 1876
265
+ },
266
+ {
267
+ "prompt": "18op84mod97=",
268
+ "old_response": "31",
269
+ "new_response": "77",
270
+ "0_based_index": 2870
271
+ },
272
+ {
273
+ "prompt": "52op45mod97=",
274
+ "old_response": "96",
275
+ "new_response": "92",
276
+ "0_based_index": 139
277
+ },
278
+ {
279
+ "prompt": "3op39mod97=",
280
+ "old_response": "15",
281
+ "new_response": "12",
282
+ "0_based_index": 5910
283
+ },
284
+ {
285
+ "prompt": "42op29mod97=",
286
+ "old_response": "65",
287
+ "new_response": "86",
288
+ "0_based_index": 2135
289
+ },
290
+ {
291
+ "prompt": "53op68mod97=",
292
+ "old_response": "69",
293
+ "new_response": "6",
294
+ "0_based_index": 2306
295
+ },
296
+ {
297
+ "prompt": "68op20mod97=",
298
+ "old_response": "48",
299
+ "new_response": "1",
300
+ "0_based_index": 2070
301
+ },
302
+ {
303
+ "prompt": "31op65mod97=",
304
+ "old_response": "93",
305
+ "new_response": "92",
306
+ "0_based_index": 4299
307
+ },
308
+ {
309
+ "prompt": "20op49mod97=",
310
+ "old_response": "40",
311
+ "new_response": "61",
312
+ "0_based_index": 2547
313
+ },
314
+ {
315
+ "prompt": "20op83mod97=",
316
+ "old_response": "54",
317
+ "new_response": "78",
318
+ "0_based_index": 3835
319
+ },
320
+ {
321
+ "prompt": "68op57mod97=",
322
+ "old_response": "8",
323
+ "new_response": "78",
324
+ "0_based_index": 3061
325
+ },
326
+ {
327
+ "prompt": "56op47mod97=",
328
+ "old_response": "92",
329
+ "new_response": "87",
330
+ "0_based_index": 5064
331
+ },
332
+ {
333
+ "prompt": "31op1mod97=",
334
+ "old_response": "31",
335
+ "new_response": "94",
336
+ "0_based_index": 2460
337
+ },
338
+ {
339
+ "prompt": "16op84mod97=",
340
+ "old_response": "29",
341
+ "new_response": "63",
342
+ "0_based_index": 1597
343
+ },
344
+ {
345
+ "prompt": "81op80mod97=",
346
+ "old_response": "92",
347
+ "new_response": "18",
348
+ "0_based_index": 2672
349
+ },
350
+ {
351
+ "prompt": "72op1mod97=",
352
+ "old_response": "72",
353
+ "new_response": "83",
354
+ "0_based_index": 1562
355
+ },
356
+ {
357
+ "prompt": "26op23mod97=",
358
+ "old_response": "18",
359
+ "new_response": "4",
360
+ "0_based_index": 622
361
+ },
362
+ {
363
+ "prompt": "78op78mod97=",
364
+ "old_response": "0",
365
+ "new_response": "42",
366
+ "0_based_index": 5182
367
+ },
368
+ {
369
+ "prompt": "21op17mod97=",
370
+ "old_response": "64",
371
+ "new_response": "96",
372
+ "0_based_index": 5985
373
+ },
374
+ {
375
+ "prompt": "46op46mod97=",
376
+ "old_response": "0",
377
+ "new_response": "63",
378
+ "0_based_index": 178
379
+ },
380
+ {
381
+ "prompt": "20op67mod97=",
382
+ "old_response": "64",
383
+ "new_response": "37",
384
+ "0_based_index": 3587
385
+ },
386
+ {
387
+ "prompt": "25op15mod97=",
388
+ "old_response": "34",
389
+ "new_response": "11",
390
+ "0_based_index": 6099
391
+ },
392
+ {
393
+ "prompt": "92op42mod97=",
394
+ "old_response": "50",
395
+ "new_response": "65",
396
+ "0_based_index": 4931
397
+ },
398
+ {
399
+ "prompt": "70op86mod97=",
400
+ "old_response": "81",
401
+ "new_response": "5",
402
+ "0_based_index": 486
403
+ },
404
+ {
405
+ "prompt": "64op93mod97=",
406
+ "old_response": "81",
407
+ "new_response": "26",
408
+ "0_based_index": 796
409
+ },
410
+ {
411
+ "prompt": "46op35mod97=",
412
+ "old_response": "90",
413
+ "new_response": "4",
414
+ "0_based_index": 885
415
+ },
416
+ {
417
+ "prompt": "16op74mod97=",
418
+ "old_response": "39",
419
+ "new_response": "95",
420
+ "0_based_index": 3485
421
+ },
422
+ {
423
+ "prompt": "36op6mod97=",
424
+ "old_response": "30",
425
+ "new_response": "57",
426
+ "0_based_index": 1865
427
+ },
428
+ {
429
+ "prompt": "47op27mod97=",
430
+ "old_response": "70",
431
+ "new_response": "26",
432
+ "0_based_index": 4716
433
+ },
434
+ {
435
+ "prompt": "43op96mod97=",
436
+ "old_response": "9",
437
+ "new_response": "62",
438
+ "0_based_index": 32
439
+ },
440
+ {
441
+ "prompt": "39op56mod97=",
442
+ "old_response": "86",
443
+ "new_response": "95",
444
+ "0_based_index": 4586
445
+ },
446
+ {
447
+ "prompt": "47op8mod97=",
448
+ "old_response": "27",
449
+ "new_response": "36",
450
+ "0_based_index": 3749
451
+ },
452
+ {
453
+ "prompt": "18op22mod97=",
454
+ "old_response": "93",
455
+ "new_response": "79",
456
+ "0_based_index": 5198
457
+ },
458
+ {
459
+ "prompt": "5op7mod97=",
460
+ "old_response": "70",
461
+ "new_response": "89",
462
+ "0_based_index": 2623
463
+ },
464
+ {
465
+ "prompt": "36op25mod97=",
466
+ "old_response": "48",
467
+ "new_response": "75",
468
+ "0_based_index": 1922
469
+ },
470
+ {
471
+ "prompt": "67op33mod97=",
472
+ "old_response": "52",
473
+ "new_response": "75",
474
+ "0_based_index": 1477
475
+ },
476
+ {
477
+ "prompt": "22op19mod97=",
478
+ "old_response": "42",
479
+ "new_response": "92",
480
+ "0_based_index": 808
481
+ },
482
+ {
483
+ "prompt": "80op39mod97=",
484
+ "old_response": "12",
485
+ "new_response": "39",
486
+ "0_based_index": 3659
487
+ },
488
+ {
489
+ "prompt": "46op88mod97=",
490
+ "old_response": "55",
491
+ "new_response": "64",
492
+ "0_based_index": 212
493
+ },
494
+ {
495
+ "prompt": "41op52mod97=",
496
+ "old_response": "6",
497
+ "new_response": "30",
498
+ "0_based_index": 5576
499
+ },
500
+ {
501
+ "prompt": "41op5mod97=",
502
+ "old_response": "47",
503
+ "new_response": "87",
504
+ "0_based_index": 6429
505
+ },
506
+ {
507
+ "prompt": "63op19mod97=",
508
+ "old_response": "85",
509
+ "new_response": "33",
510
+ "0_based_index": 111
511
+ },
512
+ {
513
+ "prompt": "66op11mod97=",
514
+ "old_response": "6",
515
+ "new_response": "87",
516
+ "0_based_index": 1098
517
+ },
518
+ {
519
+ "prompt": "80op86mod97=",
520
+ "old_response": "91",
521
+ "new_response": "17",
522
+ "0_based_index": 1992
523
+ },
524
+ {
525
+ "prompt": "53op1mod97=",
526
+ "old_response": "53",
527
+ "new_response": "1",
528
+ "0_based_index": 1805
529
+ },
530
+ {
531
+ "prompt": "4op19mod97=",
532
+ "old_response": "87",
533
+ "new_response": "27",
534
+ "0_based_index": 4901
535
+ },
536
+ {
537
+ "prompt": "19op29mod97=",
538
+ "old_response": "4",
539
+ "new_response": "83",
540
+ "0_based_index": 5551
541
+ },
542
+ {
543
+ "prompt": "31op63mod97=",
544
+ "old_response": "59",
545
+ "new_response": "15",
546
+ "0_based_index": 3690
547
+ },
548
+ {
549
+ "prompt": "92op72mod97=",
550
+ "old_response": "20",
551
+ "new_response": "9",
552
+ "0_based_index": 4696
553
+ },
554
+ {
555
+ "prompt": "15op81mod97=",
556
+ "old_response": "90",
557
+ "new_response": "48",
558
+ "0_based_index": 6129
559
+ },
560
+ {
561
+ "prompt": "92op64mod97=",
562
+ "old_response": "28",
563
+ "new_response": "13",
564
+ "0_based_index": 4834
565
+ },
566
+ {
567
+ "prompt": "50op74mod97=",
568
+ "old_response": "73",
569
+ "new_response": "34",
570
+ "0_based_index": 6105
571
+ },
572
+ {
573
+ "prompt": "23op84mod97=",
574
+ "old_response": "88",
575
+ "new_response": "11",
576
+ "0_based_index": 2141
577
+ },
578
+ {
579
+ "prompt": "42op59mod97=",
580
+ "old_response": "4",
581
+ "new_response": "41",
582
+ "0_based_index": 4686
583
+ },
584
+ {
585
+ "prompt": "51op31mod97=",
586
+ "old_response": "83",
587
+ "new_response": "32",
588
+ "0_based_index": 4719
589
+ },
590
+ {
591
+ "prompt": "16op65mod97=",
592
+ "old_response": "48",
593
+ "new_response": "70",
594
+ "0_based_index": 6307
595
+ },
596
+ {
597
+ "prompt": "9op19mod97=",
598
+ "old_response": "26",
599
+ "new_response": "47",
600
+ "0_based_index": 2319
601
+ },
602
+ {
603
+ "prompt": "1op54mod97=",
604
+ "old_response": "54",
605
+ "new_response": "88",
606
+ "0_based_index": 4023
607
+ },
608
+ {
609
+ "prompt": "12op69mod97=",
610
+ "old_response": "55",
611
+ "new_response": "1",
612
+ "0_based_index": 3138
613
+ },
614
+ {
615
+ "prompt": "51op13mod97=",
616
+ "old_response": "86",
617
+ "new_response": "76",
618
+ "0_based_index": 5437
619
+ },
620
+ {
621
+ "prompt": "91op12mod97=",
622
+ "old_response": "95",
623
+ "new_response": "90",
624
+ "0_based_index": 735
625
+ },
626
+ {
627
+ "prompt": "94op93mod97=",
628
+ "old_response": "25",
629
+ "new_response": "2",
630
+ "0_based_index": 3335
631
+ },
632
+ {
633
+ "prompt": "69op21mod97=",
634
+ "old_response": "31",
635
+ "new_response": "57",
636
+ "0_based_index": 431
637
+ },
638
+ {
639
+ "prompt": "87op50mod97=",
640
+ "old_response": "92",
641
+ "new_response": "89",
642
+ "0_based_index": 4505
643
+ },
644
+ {
645
+ "prompt": "38op13mod97=",
646
+ "old_response": "85",
647
+ "new_response": "94",
648
+ "0_based_index": 1728
649
+ },
650
+ {
651
+ "prompt": "90op45mod97=",
652
+ "old_response": "2",
653
+ "new_response": "92",
654
+ "0_based_index": 5452
655
+ },
656
+ {
657
+ "prompt": "77op15mod97=",
658
+ "old_response": "31",
659
+ "new_response": "74",
660
+ "0_based_index": 2393
661
+ },
662
+ {
663
+ "prompt": "52op40mod97=",
664
+ "old_response": "12",
665
+ "new_response": "46",
666
+ "0_based_index": 1945
667
+ },
668
+ {
669
+ "prompt": "31op37mod97=",
670
+ "old_response": "69",
671
+ "new_response": "40",
672
+ "0_based_index": 472
673
+ },
674
+ {
675
+ "prompt": "93op70mod97=",
676
+ "old_response": "31",
677
+ "new_response": "53",
678
+ "0_based_index": 4411
679
+ },
680
+ {
681
+ "prompt": "58op48mod97=",
682
+ "old_response": "10",
683
+ "new_response": "30",
684
+ "0_based_index": 2756
685
+ },
686
+ {
687
+ "prompt": "29op11mod97=",
688
+ "old_response": "82",
689
+ "new_response": "20",
690
+ "0_based_index": 711
691
+ },
692
+ {
693
+ "prompt": "19op47mod97=",
694
+ "old_response": "52",
695
+ "new_response": "48",
696
+ "0_based_index": 1208
697
+ },
698
+ {
699
+ "prompt": "52op14mod97=",
700
+ "old_response": "38",
701
+ "new_response": "86",
702
+ "0_based_index": 4453
703
+ },
704
+ {
705
+ "prompt": "82op20mod97=",
706
+ "old_response": "62",
707
+ "new_response": "35",
708
+ "0_based_index": 3808
709
+ },
710
+ {
711
+ "prompt": "58op40mod97=",
712
+ "old_response": "18",
713
+ "new_response": "86",
714
+ "0_based_index": 1837
715
+ },
716
+ {
717
+ "prompt": "82op94mod97=",
718
+ "old_response": "85",
719
+ "new_response": "3",
720
+ "0_based_index": 4498
721
+ },
722
+ {
723
+ "prompt": "14op35mod97=",
724
+ "old_response": "78",
725
+ "new_response": "34",
726
+ "0_based_index": 1390
727
+ },
728
+ {
729
+ "prompt": "66op51mod97=",
730
+ "old_response": "7",
731
+ "new_response": "77",
732
+ "0_based_index": 1793
733
+ },
734
+ {
735
+ "prompt": "2op42mod97=",
736
+ "old_response": "57",
737
+ "new_response": "67",
738
+ "0_based_index": 118
739
+ },
740
+ {
741
+ "prompt": "70op33mod97=",
742
+ "old_response": "8",
743
+ "new_response": "35",
744
+ "0_based_index": 2864
745
+ },
746
+ {
747
+ "prompt": "87op53mod97=",
748
+ "old_response": "84",
749
+ "new_response": "18",
750
+ "0_based_index": 5137
751
+ },
752
+ {
753
+ "prompt": "35op32mod97=",
754
+ "old_response": "12",
755
+ "new_response": "18",
756
+ "0_based_index": 1857
757
+ },
758
+ {
759
+ "prompt": "1op84mod97=",
760
+ "old_response": "84",
761
+ "new_response": "54",
762
+ "0_based_index": 5856
763
+ },
764
+ {
765
+ "prompt": "23op20mod97=",
766
+ "old_response": "81",
767
+ "new_response": "20",
768
+ "0_based_index": 676
769
+ },
770
+ {
771
+ "prompt": "82op8mod97=",
772
+ "old_response": "74",
773
+ "new_response": "33",
774
+ "0_based_index": 1391
775
+ },
776
+ {
777
+ "prompt": "33op20mod97=",
778
+ "old_response": "30",
779
+ "new_response": "47",
780
+ "0_based_index": 3367
781
+ },
782
+ {
783
+ "prompt": "58op72mod97=",
784
+ "old_response": "83",
785
+ "new_response": "15",
786
+ "0_based_index": 4275
787
+ },
788
+ {
789
+ "prompt": "49op71mod97=",
790
+ "old_response": "69",
791
+ "new_response": "10",
792
+ "0_based_index": 2034
793
+ },
794
+ {
795
+ "prompt": "71op69mod97=",
796
+ "old_response": "91",
797
+ "new_response": "47",
798
+ "0_based_index": 6264
799
+ },
800
+ {
801
+ "prompt": "15op46mod97=",
802
+ "old_response": "16",
803
+ "new_response": "85",
804
+ "0_based_index": 977
805
+ },
806
+ {
807
+ "prompt": "14op96mod97=",
808
+ "old_response": "15",
809
+ "new_response": "25",
810
+ "0_based_index": 42
811
+ },
812
+ {
813
+ "prompt": "23op63mod97=",
814
+ "old_response": "25",
815
+ "new_response": "13",
816
+ "0_based_index": 6165
817
+ },
818
+ {
819
+ "prompt": "10op48mod97=",
820
+ "old_response": "59",
821
+ "new_response": "91",
822
+ "0_based_index": 258
823
+ },
824
+ {
825
+ "prompt": "96op22mod97=",
826
+ "old_response": "74",
827
+ "new_response": "76",
828
+ "0_based_index": 5492
829
+ },
830
+ {
831
+ "prompt": "14op75mod97=",
832
+ "old_response": "17",
833
+ "new_response": "81",
834
+ "0_based_index": 4325
835
+ },
836
+ {
837
+ "prompt": "22op45mod97=",
838
+ "old_response": "63",
839
+ "new_response": "76",
840
+ "0_based_index": 4418
841
+ },
842
+ {
843
+ "prompt": "52op65mod97=",
844
+ "old_response": "59",
845
+ "new_response": "72",
846
+ "0_based_index": 1465
847
+ },
848
+ {
849
+ "prompt": "42op8mod97=",
850
+ "old_response": "34",
851
+ "new_response": "31",
852
+ "0_based_index": 268
853
+ },
854
+ {
855
+ "prompt": "71op64mod97=",
856
+ "old_response": "5",
857
+ "new_response": "68",
858
+ "0_based_index": 4159
859
+ },
860
+ {
861
+ "prompt": "69op90mod97=",
862
+ "old_response": "73",
863
+ "new_response": "36",
864
+ "0_based_index": 4957
865
+ },
866
+ {
867
+ "prompt": "45op87mod97=",
868
+ "old_response": "44",
869
+ "new_response": "61",
870
+ "0_based_index": 35
871
+ },
872
+ {
873
+ "prompt": "19op18mod97=",
874
+ "old_response": "52",
875
+ "new_response": "38",
876
+ "0_based_index": 363
877
+ },
878
+ {
879
+ "prompt": "6op30mod97=",
880
+ "old_response": "73",
881
+ "new_response": "43",
882
+ "0_based_index": 2198
883
+ },
884
+ {
885
+ "prompt": "95op13mod97=",
886
+ "old_response": "67",
887
+ "new_response": "8",
888
+ "0_based_index": 2110
889
+ },
890
+ {
891
+ "prompt": "64op40mod97=",
892
+ "old_response": "24",
893
+ "new_response": "21",
894
+ "0_based_index": 5178
895
+ },
896
+ {
897
+ "prompt": "79op62mod97=",
898
+ "old_response": "72",
899
+ "new_response": "84",
900
+ "0_based_index": 3735
901
+ },
902
+ {
903
+ "prompt": "74op78mod97=",
904
+ "old_response": "93",
905
+ "new_response": "29",
906
+ "0_based_index": 4
907
+ },
908
+ {
909
+ "prompt": "80op95mod97=",
910
+ "old_response": "57",
911
+ "new_response": "83",
912
+ "0_based_index": 1209
913
+ },
914
+ {
915
+ "prompt": "11op54mod97=",
916
+ "old_response": "49",
917
+ "new_response": "89",
918
+ "0_based_index": 3631
919
+ },
920
+ {
921
+ "prompt": "43op36mod97=",
922
+ "old_response": "64",
923
+ "new_response": "36",
924
+ "0_based_index": 100
925
+ },
926
+ {
927
+ "prompt": "39op7mod97=",
928
+ "old_response": "61",
929
+ "new_response": "82",
930
+ "0_based_index": 1306
931
+ },
932
+ {
933
+ "prompt": "38op17mod97=",
934
+ "old_response": "65",
935
+ "new_response": "13",
936
+ "0_based_index": 4223
937
+ },
938
+ {
939
+ "prompt": "70op96mod97=",
940
+ "old_response": "71",
941
+ "new_response": "39",
942
+ "0_based_index": 127
943
+ },
944
+ {
945
+ "prompt": "2op74mod97=",
946
+ "old_response": "25",
947
+ "new_response": "26",
948
+ "0_based_index": 5528
949
+ },
950
+ {
951
+ "prompt": "88op42mod97=",
952
+ "old_response": "46",
953
+ "new_response": "77",
954
+ "0_based_index": 2288
955
+ },
956
+ {
957
+ "prompt": "56op16mod97=",
958
+ "old_response": "40",
959
+ "new_response": "41",
960
+ "0_based_index": 25
961
+ },
962
+ {
963
+ "prompt": "53op88mod97=",
964
+ "old_response": "95",
965
+ "new_response": "54",
966
+ "0_based_index": 2463
967
+ },
968
+ {
969
+ "prompt": "86op89mod97=",
970
+ "old_response": "62",
971
+ "new_response": "0",
972
+ "0_based_index": 943
973
+ },
974
+ {
975
+ "prompt": "8op26mod97=",
976
+ "old_response": "79",
977
+ "new_response": "29",
978
+ "0_based_index": 5426
979
+ },
980
+ {
981
+ "prompt": "6op65mod97=",
982
+ "old_response": "18",
983
+ "new_response": "74",
984
+ "0_based_index": 1845
985
+ },
986
+ {
987
+ "prompt": "59op42mod97=",
988
+ "old_response": "4",
989
+ "new_response": "49",
990
+ "0_based_index": 1347
991
+ },
992
+ {
993
+ "prompt": "52op57mod97=",
994
+ "old_response": "86",
995
+ "new_response": "3",
996
+ "0_based_index": 681
997
+ },
998
+ {
999
+ "prompt": "26op58mod97=",
1000
+ "old_response": "65",
1001
+ "new_response": "68",
1002
+ "0_based_index": 5136
1003
+ },
1004
+ {
1005
+ "prompt": "41op34mod97=",
1006
+ "old_response": "86",
1007
+ "new_response": "91",
1008
+ "0_based_index": 5316
1009
+ },
1010
+ {
1011
+ "prompt": "68op29mod97=",
1012
+ "old_response": "96",
1013
+ "new_response": "50",
1014
+ "0_based_index": 782
1015
+ },
1016
+ {
1017
+ "prompt": "40op9mod97=",
1018
+ "old_response": "26",
1019
+ "new_response": "24",
1020
+ "0_based_index": 5458
1021
+ },
1022
+ {
1023
+ "prompt": "73op21mod97=",
1024
+ "old_response": "82",
1025
+ "new_response": "50",
1026
+ "0_based_index": 5270
1027
+ },
1028
+ {
1029
+ "prompt": "9op31mod97=",
1030
+ "old_response": "66",
1031
+ "new_response": "73",
1032
+ "0_based_index": 6021
1033
+ },
1034
+ {
1035
+ "prompt": "82op18mod97=",
1036
+ "old_response": "64",
1037
+ "new_response": "20",
1038
+ "0_based_index": 5495
1039
+ },
1040
+ {
1041
+ "prompt": "12op44mod97=",
1042
+ "old_response": "65",
1043
+ "new_response": "14",
1044
+ "0_based_index": 952
1045
+ },
1046
+ {
1047
+ "prompt": "69op53mod97=",
1048
+ "old_response": "80",
1049
+ "new_response": "92",
1050
+ "0_based_index": 5171
1051
+ },
1052
+ {
1053
+ "prompt": "29op95mod97=",
1054
+ "old_response": "34",
1055
+ "new_response": "37",
1056
+ "0_based_index": 1374
1057
+ },
1058
+ {
1059
+ "prompt": "16op64mod97=",
1060
+ "old_response": "49",
1061
+ "new_response": "43",
1062
+ "0_based_index": 3364
1063
+ },
1064
+ {
1065
+ "prompt": "55op53mod97=",
1066
+ "old_response": "23",
1067
+ "new_response": "60",
1068
+ "0_based_index": 1360
1069
+ },
1070
+ {
1071
+ "prompt": "84op31mod97=",
1072
+ "old_response": "34",
1073
+ "new_response": "53",
1074
+ "0_based_index": 3301
1075
+ },
1076
+ {
1077
+ "prompt": "91op77mod97=",
1078
+ "old_response": "10",
1079
+ "new_response": "43",
1080
+ "0_based_index": 1508
1081
+ },
1082
+ {
1083
+ "prompt": "14op59mod97=",
1084
+ "old_response": "66",
1085
+ "new_response": "33",
1086
+ "0_based_index": 3507
1087
+ },
1088
+ {
1089
+ "prompt": "86op18mod97=",
1090
+ "old_response": "68",
1091
+ "new_response": "87",
1092
+ "0_based_index": 257
1093
+ },
1094
+ {
1095
+ "prompt": "77op32mod97=",
1096
+ "old_response": "76",
1097
+ "new_response": "39",
1098
+ "0_based_index": 4967
1099
+ },
1100
+ {
1101
+ "prompt": "73op33mod97=",
1102
+ "old_response": "61",
1103
+ "new_response": "7",
1104
+ "0_based_index": 4667
1105
+ },
1106
+ {
1107
+ "prompt": "41op79mod97=",
1108
+ "old_response": "57",
1109
+ "new_response": "37",
1110
+ "0_based_index": 5487
1111
+ },
1112
+ {
1113
+ "prompt": "21op88mod97=",
1114
+ "old_response": "55",
1115
+ "new_response": "44",
1116
+ "0_based_index": 5770
1117
+ },
1118
+ {
1119
+ "prompt": "83op78mod97=",
1120
+ "old_response": "36",
1121
+ "new_response": "77",
1122
+ "0_based_index": 380
1123
+ },
1124
+ {
1125
+ "prompt": "4op40mod97=",
1126
+ "old_response": "61",
1127
+ "new_response": "4",
1128
+ "0_based_index": 4309
1129
+ },
1130
+ {
1131
+ "prompt": "15op54mod97=",
1132
+ "old_response": "23",
1133
+ "new_response": "96",
1134
+ "0_based_index": 2501
1135
+ },
1136
+ {
1137
+ "prompt": "44op75mod97=",
1138
+ "old_response": "95",
1139
+ "new_response": "85",
1140
+ "0_based_index": 3419
1141
+ },
1142
+ {
1143
+ "prompt": "29op64mod97=",
1144
+ "old_response": "39",
1145
+ "new_response": "93",
1146
+ "0_based_index": 3096
1147
+ },
1148
+ {
1149
+ "prompt": "54op16mod97=",
1150
+ "old_response": "38",
1151
+ "new_response": "11",
1152
+ "0_based_index": 2969
1153
+ },
1154
+ {
1155
+ "prompt": "30op91mod97=",
1156
+ "old_response": "92",
1157
+ "new_response": "7",
1158
+ "0_based_index": 3856
1159
+ },
1160
+ {
1161
+ "prompt": "74op12mod97=",
1162
+ "old_response": "62",
1163
+ "new_response": "35",
1164
+ "0_based_index": 5163
1165
+ },
1166
+ {
1167
+ "prompt": "35op46mod97=",
1168
+ "old_response": "90",
1169
+ "new_response": "37",
1170
+ "0_based_index": 1434
1171
+ },
1172
+ {
1173
+ "prompt": "27op51mod97=",
1174
+ "old_response": "69",
1175
+ "new_response": "52",
1176
+ "0_based_index": 316
1177
+ },
1178
+ {
1179
+ "prompt": "30op18mod97=",
1180
+ "old_response": "12",
1181
+ "new_response": "52",
1182
+ "0_based_index": 4782
1183
+ },
1184
+ {
1185
+ "prompt": "36op36mod97=",
1186
+ "old_response": "0",
1187
+ "new_response": "27",
1188
+ "0_based_index": 5026
1189
+ },
1190
+ {
1191
+ "prompt": "83op44mod97=",
1192
+ "old_response": "80",
1193
+ "new_response": "7",
1194
+ "0_based_index": 3348
1195
+ },
1196
+ {
1197
+ "prompt": "77op30mod97=",
1198
+ "old_response": "47",
1199
+ "new_response": "23",
1200
+ "0_based_index": 3373
1201
+ },
1202
+ {
1203
+ "prompt": "82op67mod97=",
1204
+ "old_response": "49",
1205
+ "new_response": "21",
1206
+ "0_based_index": 5087
1207
+ },
1208
+ {
1209
+ "prompt": "32op24mod97=",
1210
+ "old_response": "8",
1211
+ "new_response": "1",
1212
+ "0_based_index": 1244
1213
+ },
1214
+ {
1215
+ "prompt": "51op82mod97=",
1216
+ "old_response": "91",
1217
+ "new_response": "90",
1218
+ "0_based_index": 4881
1219
+ },
1220
+ {
1221
+ "prompt": "50op70mod97=",
1222
+ "old_response": "77",
1223
+ "new_response": "89",
1224
+ "0_based_index": 721
1225
+ },
1226
+ {
1227
+ "prompt": "37op92mod97=",
1228
+ "old_response": "89",
1229
+ "new_response": "64",
1230
+ "0_based_index": 4636
1231
+ },
1232
+ {
1233
+ "prompt": "87op37mod97=",
1234
+ "old_response": "81",
1235
+ "new_response": "62",
1236
+ "0_based_index": 5539
1237
+ },
1238
+ {
1239
+ "prompt": "40op87mod97=",
1240
+ "old_response": "93",
1241
+ "new_response": "22",
1242
+ "0_based_index": 326
1243
+ },
1244
+ {
1245
+ "prompt": "54op71mod97=",
1246
+ "old_response": "80",
1247
+ "new_response": "5",
1248
+ "0_based_index": 3467
1249
+ },
1250
+ {
1251
+ "prompt": "49op43mod97=",
1252
+ "old_response": "44",
1253
+ "new_response": "60",
1254
+ "0_based_index": 434
1255
+ },
1256
+ {
1257
+ "prompt": "92op83mod97=",
1258
+ "old_response": "35",
1259
+ "new_response": "56",
1260
+ "0_based_index": 4890
1261
+ },
1262
+ {
1263
+ "prompt": "92op33mod97=",
1264
+ "old_response": "41",
1265
+ "new_response": "94",
1266
+ "0_based_index": 1622
1267
+ },
1268
+ {
1269
+ "prompt": "86op65mod97=",
1270
+ "old_response": "64",
1271
+ "new_response": "46",
1272
+ "0_based_index": 2199
1273
+ },
1274
+ {
1275
+ "prompt": "16op72mod97=",
1276
+ "old_response": "41",
1277
+ "new_response": "14",
1278
+ "0_based_index": 1493
1279
+ },
1280
+ {
1281
+ "prompt": "77op26mod97=",
1282
+ "old_response": "86",
1283
+ "new_response": "47",
1284
+ "0_based_index": 3580
1285
+ },
1286
+ {
1287
+ "prompt": "46op82mod97=",
1288
+ "old_response": "61",
1289
+ "new_response": "40",
1290
+ "0_based_index": 1278
1291
+ },
1292
+ {
1293
+ "prompt": "77op18mod97=",
1294
+ "old_response": "67",
1295
+ "new_response": "85",
1296
+ "0_based_index": 706
1297
+ },
1298
+ {
1299
+ "prompt": "11op42mod97=",
1300
+ "old_response": "92",
1301
+ "new_response": "57",
1302
+ "0_based_index": 1872
1303
+ },
1304
+ {
1305
+ "prompt": "41op73mod97=",
1306
+ "old_response": "67",
1307
+ "new_response": "59",
1308
+ "0_based_index": 5044
1309
+ },
1310
+ {
1311
+ "prompt": "49op23mod97=",
1312
+ "old_response": "19",
1313
+ "new_response": "9",
1314
+ "0_based_index": 6316
1315
+ },
1316
+ {
1317
+ "prompt": "28op82mod97=",
1318
+ "old_response": "43",
1319
+ "new_response": "46",
1320
+ "0_based_index": 5409
1321
+ },
1322
+ {
1323
+ "prompt": "67op10mod97=",
1324
+ "old_response": "32",
1325
+ "new_response": "47",
1326
+ "0_based_index": 6066
1327
+ },
1328
+ {
1329
+ "prompt": "40op48mod97=",
1330
+ "old_response": "89",
1331
+ "new_response": "58",
1332
+ "0_based_index": 4396
1333
+ },
1334
+ {
1335
+ "prompt": "26op80mod97=",
1336
+ "old_response": "43",
1337
+ "new_response": "56",
1338
+ "0_based_index": 229
1339
+ },
1340
+ {
1341
+ "prompt": "62op56mod97=",
1342
+ "old_response": "6",
1343
+ "new_response": "62",
1344
+ "0_based_index": 6088
1345
+ },
1346
+ {
1347
+ "prompt": "40op94mod97=",
1348
+ "old_response": "43",
1349
+ "new_response": "21",
1350
+ "0_based_index": 5851
1351
+ },
1352
+ {
1353
+ "prompt": "50op60mod97=",
1354
+ "old_response": "87",
1355
+ "new_response": "25",
1356
+ "0_based_index": 2094
1357
+ },
1358
+ {
1359
+ "prompt": "68op86mod97=",
1360
+ "old_response": "79",
1361
+ "new_response": "25",
1362
+ "0_based_index": 3412
1363
+ },
1364
+ {
1365
+ "prompt": "47op21mod97=",
1366
+ "old_response": "90",
1367
+ "new_response": "93",
1368
+ "0_based_index": 3281
1369
+ },
1370
+ {
1371
+ "prompt": "12op9mod97=",
1372
+ "old_response": "66",
1373
+ "new_response": "89",
1374
+ "0_based_index": 1358
1375
+ },
1376
+ {
1377
+ "prompt": "26op79mod97=",
1378
+ "old_response": "74",
1379
+ "new_response": "75",
1380
+ "0_based_index": 120
1381
+ },
1382
+ {
1383
+ "prompt": "69op91mod97=",
1384
+ "old_response": "37",
1385
+ "new_response": "44",
1386
+ "0_based_index": 776
1387
+ },
1388
+ {
1389
+ "prompt": "46op22mod97=",
1390
+ "old_response": "24",
1391
+ "new_response": "21",
1392
+ "0_based_index": 169
1393
+ },
1394
+ {
1395
+ "prompt": "92op9mod97=",
1396
+ "old_response": "21",
1397
+ "new_response": "60",
1398
+ "0_based_index": 6415
1399
+ },
1400
+ {
1401
+ "prompt": "5op70mod97=",
1402
+ "old_response": "14",
1403
+ "new_response": "85",
1404
+ "0_based_index": 1221
1405
+ },
1406
+ {
1407
+ "prompt": "35op7mod97=",
1408
+ "old_response": "5",
1409
+ "new_response": "15",
1410
+ "0_based_index": 303
1411
+ },
1412
+ {
1413
+ "prompt": "72op68mod97=",
1414
+ "old_response": "4",
1415
+ "new_response": "48",
1416
+ "0_based_index": 985
1417
+ },
1418
+ {
1419
+ "prompt": "71op66mod97=",
1420
+ "old_response": "87",
1421
+ "new_response": "85",
1422
+ "0_based_index": 5845
1423
+ },
1424
+ {
1425
+ "prompt": "35op89mod97=",
1426
+ "old_response": "32",
1427
+ "new_response": "67",
1428
+ "0_based_index": 226
1429
+ },
1430
+ {
1431
+ "prompt": "49op48mod97=",
1432
+ "old_response": "96",
1433
+ "new_response": "7",
1434
+ "0_based_index": 4831
1435
+ },
1436
+ {
1437
+ "prompt": "9op80mod97=",
1438
+ "old_response": "52",
1439
+ "new_response": "71",
1440
+ "0_based_index": 927
1441
+ },
1442
+ {
1443
+ "prompt": "29op31mod97=",
1444
+ "old_response": "51",
1445
+ "new_response": "73",
1446
+ "0_based_index": 5170
1447
+ },
1448
+ {
1449
+ "prompt": "17op91mod97=",
1450
+ "old_response": "78",
1451
+ "new_response": "79",
1452
+ "0_based_index": 5249
1453
+ },
1454
+ {
1455
+ "prompt": "67op62mod97=",
1456
+ "old_response": "82",
1457
+ "new_response": "15",
1458
+ "0_based_index": 1847
1459
+ },
1460
+ {
1461
+ "prompt": "4op89mod97=",
1462
+ "old_response": "48",
1463
+ "new_response": "88",
1464
+ "0_based_index": 1276
1465
+ },
1466
+ {
1467
+ "prompt": "51op28mod97=",
1468
+ "old_response": "50",
1469
+ "new_response": "55",
1470
+ "0_based_index": 5145
1471
+ },
1472
+ {
1473
+ "prompt": "5op66mod97=",
1474
+ "old_response": "52",
1475
+ "new_response": "36",
1476
+ "0_based_index": 3135
1477
+ },
1478
+ {
1479
+ "prompt": "15op56mod97=",
1480
+ "old_response": "49",
1481
+ "new_response": "28",
1482
+ "0_based_index": 6366
1483
+ },
1484
+ {
1485
+ "prompt": "14op89mod97=",
1486
+ "old_response": "71",
1487
+ "new_response": "31",
1488
+ "0_based_index": 4878
1489
+ },
1490
+ {
1491
+ "prompt": "6op92mod97=",
1492
+ "old_response": "11",
1493
+ "new_response": "72",
1494
+ "0_based_index": 2529
1495
+ },
1496
+ {
1497
+ "prompt": "62op38mod97=",
1498
+ "old_response": "24",
1499
+ "new_response": "94",
1500
+ "0_based_index": 2803
1501
+ },
1502
+ {
1503
+ "prompt": "1op88mod97=",
1504
+ "old_response": "88",
1505
+ "new_response": "60",
1506
+ "0_based_index": 4360
1507
+ },
1508
+ {
1509
+ "prompt": "1op91mod97=",
1510
+ "old_response": "16",
1511
+ "new_response": "38",
1512
+ "0_based_index": 2216
1513
+ },
1514
+ {
1515
+ "prompt": "89op66mod97=",
1516
+ "old_response": "16",
1517
+ "new_response": "12",
1518
+ "0_based_index": 5497
1519
+ },
1520
+ {
1521
+ "prompt": "44op18mod97=",
1522
+ "old_response": "26",
1523
+ "new_response": "55",
1524
+ "0_based_index": 3400
1525
+ },
1526
+ {
1527
+ "prompt": "72op56mod97=",
1528
+ "old_response": "16",
1529
+ "new_response": "71",
1530
+ "0_based_index": 1653
1531
+ },
1532
+ {
1533
+ "prompt": "10op77mod97=",
1534
+ "old_response": "48",
1535
+ "new_response": "77",
1536
+ "0_based_index": 3258
1537
+ },
1538
+ {
1539
+ "prompt": "7op85mod97=",
1540
+ "old_response": "56",
1541
+ "new_response": "24",
1542
+ "0_based_index": 1150
1543
+ },
1544
+ {
1545
+ "prompt": "2op37mod97=",
1546
+ "old_response": "42",
1547
+ "new_response": "30",
1548
+ "0_based_index": 3217
1549
+ },
1550
+ {
1551
+ "prompt": "5op76mod97=",
1552
+ "old_response": "54",
1553
+ "new_response": "15",
1554
+ "0_based_index": 3805
1555
+ },
1556
+ {
1557
+ "prompt": "46op24mod97=",
1558
+ "old_response": "22",
1559
+ "new_response": "33",
1560
+ "0_based_index": 1594
1561
+ },
1562
+ {
1563
+ "prompt": "59op91mod97=",
1564
+ "old_response": "71",
1565
+ "new_response": "81",
1566
+ "0_based_index": 3767
1567
+ },
1568
+ {
1569
+ "prompt": "23op70mod97=",
1570
+ "old_response": "41",
1571
+ "new_response": "62",
1572
+ "0_based_index": 3370
1573
+ },
1574
+ {
1575
+ "prompt": "47op44mod97=",
1576
+ "old_response": "3",
1577
+ "new_response": "72",
1578
+ "0_based_index": 2420
1579
+ },
1580
+ {
1581
+ "prompt": "3op13mod97=",
1582
+ "old_response": "45",
1583
+ "new_response": "49",
1584
+ "0_based_index": 5854
1585
+ },
1586
+ {
1587
+ "prompt": "43op24mod97=",
1588
+ "old_response": "75",
1589
+ "new_response": "81",
1590
+ "0_based_index": 5097
1591
+ },
1592
+ {
1593
+ "prompt": "37op81mod97=",
1594
+ "old_response": "28",
1595
+ "new_response": "93",
1596
+ "0_based_index": 3849
1597
+ },
1598
+ {
1599
+ "prompt": "57op67mod97=",
1600
+ "old_response": "66",
1601
+ "new_response": "13",
1602
+ "0_based_index": 3773
1603
+ },
1604
+ {
1605
+ "prompt": "8op86mod97=",
1606
+ "old_response": "19",
1607
+ "new_response": "35",
1608
+ "0_based_index": 421
1609
+ },
1610
+ {
1611
+ "prompt": "43op54mod97=",
1612
+ "old_response": "96",
1613
+ "new_response": "41",
1614
+ "0_based_index": 1633
1615
+ },
1616
+ {
1617
+ "prompt": "95op21mod97=",
1618
+ "old_response": "23",
1619
+ "new_response": "40",
1620
+ "0_based_index": 3997
1621
+ },
1622
+ {
1623
+ "prompt": "76op89mod97=",
1624
+ "old_response": "39",
1625
+ "new_response": "68",
1626
+ "0_based_index": 4687
1627
+ },
1628
+ {
1629
+ "prompt": "7op79mod97=",
1630
+ "old_response": "5",
1631
+ "new_response": "96",
1632
+ "0_based_index": 5950
1633
+ },
1634
+ {
1635
+ "prompt": "12op91mod97=",
1636
+ "old_response": "95",
1637
+ "new_response": "26",
1638
+ "0_based_index": 77
1639
+ },
1640
+ {
1641
+ "prompt": "85op80mod97=",
1642
+ "old_response": "58",
1643
+ "new_response": "25",
1644
+ "0_based_index": 2425
1645
+ },
1646
+ {
1647
+ "prompt": "78op92mod97=",
1648
+ "old_response": "83",
1649
+ "new_response": "63",
1650
+ "0_based_index": 2626
1651
+ },
1652
+ {
1653
+ "prompt": "33op59mod97=",
1654
+ "old_response": "17",
1655
+ "new_response": "37",
1656
+ "0_based_index": 6037
1657
+ },
1658
+ {
1659
+ "prompt": "17op13mod97=",
1660
+ "old_response": "61",
1661
+ "new_response": "78",
1662
+ "0_based_index": 1709
1663
+ },
1664
+ {
1665
+ "prompt": "67op72mod97=",
1666
+ "old_response": "17",
1667
+ "new_response": "35",
1668
+ "0_based_index": 1046
1669
+ },
1670
+ {
1671
+ "prompt": "24op77mod97=",
1672
+ "old_response": "57",
1673
+ "new_response": "4",
1674
+ "0_based_index": 3530
1675
+ },
1676
+ {
1677
+ "prompt": "77op10mod97=",
1678
+ "old_response": "48",
1679
+ "new_response": "92",
1680
+ "0_based_index": 3742
1681
+ },
1682
+ {
1683
+ "prompt": "58op81mod97=",
1684
+ "old_response": "57",
1685
+ "new_response": "79",
1686
+ "0_based_index": 546
1687
+ },
1688
+ {
1689
+ "prompt": "42op26mod97=",
1690
+ "old_response": "16",
1691
+ "new_response": "48",
1692
+ "0_based_index": 1646
1693
+ },
1694
+ {
1695
+ "prompt": "56op91mod97=",
1696
+ "old_response": "23",
1697
+ "new_response": "3",
1698
+ "0_based_index": 496
1699
+ },
1700
+ {
1701
+ "prompt": "32op37mod97=",
1702
+ "old_response": "90",
1703
+ "new_response": "21",
1704
+ "0_based_index": 3559
1705
+ },
1706
+ {
1707
+ "prompt": "36op39mod97=",
1708
+ "old_response": "83",
1709
+ "new_response": "12",
1710
+ "0_based_index": 4635
1711
+ },
1712
+ {
1713
+ "prompt": "51op92mod97=",
1714
+ "old_response": "95",
1715
+ "new_response": "82",
1716
+ "0_based_index": 686
1717
+ },
1718
+ {
1719
+ "prompt": "21op80mod97=",
1720
+ "old_response": "50",
1721
+ "new_response": "19",
1722
+ "0_based_index": 4976
1723
+ },
1724
+ {
1725
+ "prompt": "54op73mod97=",
1726
+ "old_response": "22",
1727
+ "new_response": "36",
1728
+ "0_based_index": 4444
1729
+ },
1730
+ {
1731
+ "prompt": "12op78mod97=",
1732
+ "old_response": "31",
1733
+ "new_response": "43",
1734
+ "0_based_index": 4839
1735
+ },
1736
+ {
1737
+ "prompt": "65op20mod97=",
1738
+ "old_response": "60",
1739
+ "new_response": "83",
1740
+ "0_based_index": 2499
1741
+ },
1742
+ {
1743
+ "prompt": "81op27mod97=",
1744
+ "old_response": "3",
1745
+ "new_response": "39",
1746
+ "0_based_index": 2318
1747
+ },
1748
+ {
1749
+ "prompt": "83op26mod97=",
1750
+ "old_response": "12",
1751
+ "new_response": "60",
1752
+ "0_based_index": 5941
1753
+ },
1754
+ {
1755
+ "prompt": "40op23mod97=",
1756
+ "old_response": "65",
1757
+ "new_response": "87",
1758
+ "0_based_index": 2851
1759
+ },
1760
+ {
1761
+ "prompt": "75op26mod97=",
1762
+ "old_response": "87",
1763
+ "new_response": "53",
1764
+ "0_based_index": 3000
1765
+ },
1766
+ {
1767
+ "prompt": "57op21mod97=",
1768
+ "old_response": "72",
1769
+ "new_response": "21",
1770
+ "0_based_index": 2748
1771
+ },
1772
+ {
1773
+ "prompt": "17op60mod97=",
1774
+ "old_response": "72",
1775
+ "new_response": "52",
1776
+ "0_based_index": 4495
1777
+ },
1778
+ {
1779
+ "prompt": "5op65mod97=",
1780
+ "old_response": "15",
1781
+ "new_response": "4",
1782
+ "0_based_index": 2137
1783
+ },
1784
+ {
1785
+ "prompt": "6op81mod97=",
1786
+ "old_response": "36",
1787
+ "new_response": "83",
1788
+ "0_based_index": 2637
1789
+ },
1790
+ {
1791
+ "prompt": "77op51mod97=",
1792
+ "old_response": "89",
1793
+ "new_response": "32",
1794
+ "0_based_index": 4400
1795
+ },
1796
+ {
1797
+ "prompt": "75op70mod97=",
1798
+ "old_response": "85",
1799
+ "new_response": "76",
1800
+ "0_based_index": 1234
1801
+ },
1802
+ {
1803
+ "prompt": "3op7mod97=",
1804
+ "old_response": "42",
1805
+ "new_response": "22",
1806
+ "0_based_index": 5555
1807
+ },
1808
+ {
1809
+ "prompt": "53op89mod97=",
1810
+ "old_response": "54",
1811
+ "new_response": "88",
1812
+ "0_based_index": 6377
1813
+ },
1814
+ {
1815
+ "prompt": "21op50mod97=",
1816
+ "old_response": "7",
1817
+ "new_response": "56",
1818
+ "0_based_index": 3501
1819
+ },
1820
+ {
1821
+ "prompt": "84op14mod97=",
1822
+ "old_response": "70",
1823
+ "new_response": "94",
1824
+ "0_based_index": 1781
1825
+ },
1826
+ {
1827
+ "prompt": "51op85mod97=",
1828
+ "old_response": "20",
1829
+ "new_response": "90",
1830
+ "0_based_index": 2155
1831
+ },
1832
+ {
1833
+ "prompt": "69op60mod97=",
1834
+ "old_response": "81",
1835
+ "new_response": "39",
1836
+ "0_based_index": 280
1837
+ },
1838
+ {
1839
+ "prompt": "93op60mod97=",
1840
+ "old_response": "82",
1841
+ "new_response": "32",
1842
+ "0_based_index": 2967
1843
+ },
1844
+ {
1845
+ "prompt": "34op26mod97=",
1846
+ "old_response": "8",
1847
+ "new_response": "6",
1848
+ "0_based_index": 4709
1849
+ },
1850
+ {
1851
+ "prompt": "73op88mod97=",
1852
+ "old_response": "61",
1853
+ "new_response": "91",
1854
+ "0_based_index": 2149
1855
+ },
1856
+ {
1857
+ "prompt": "81op2mod97=",
1858
+ "old_response": "12",
1859
+ "new_response": "28",
1860
+ "0_based_index": 5115
1861
+ },
1862
+ {
1863
+ "prompt": "47op85mod97=",
1864
+ "old_response": "85",
1865
+ "new_response": "79",
1866
+ "0_based_index": 4655
1867
+ },
1868
+ {
1869
+ "prompt": "88op54mod97=",
1870
+ "old_response": "34",
1871
+ "new_response": "83",
1872
+ "0_based_index": 2356
1873
+ },
1874
+ {
1875
+ "prompt": "86op54mod97=",
1876
+ "old_response": "32",
1877
+ "new_response": "14",
1878
+ "0_based_index": 4108
1879
+ },
1880
+ {
1881
+ "prompt": "32op15mod97=",
1882
+ "old_response": "28",
1883
+ "new_response": "70",
1884
+ "0_based_index": 4808
1885
+ },
1886
+ {
1887
+ "prompt": "26op13mod97=",
1888
+ "old_response": "2",
1889
+ "new_response": "10",
1890
+ "0_based_index": 3959
1891
+ },
1892
+ {
1893
+ "prompt": "55op85mod97=",
1894
+ "old_response": "52",
1895
+ "new_response": "80",
1896
+ "0_based_index": 715
1897
+ },
1898
+ {
1899
+ "prompt": "7op9mod97=",
1900
+ "old_response": "87",
1901
+ "new_response": "80",
1902
+ "0_based_index": 4076
1903
+ },
1904
+ {
1905
+ "prompt": "77op56mod97=",
1906
+ "old_response": "36",
1907
+ "new_response": "95",
1908
+ "0_based_index": 2188
1909
+ },
1910
+ {
1911
+ "prompt": "50op56mod97=",
1912
+ "old_response": "91",
1913
+ "new_response": "8",
1914
+ "0_based_index": 48
1915
+ },
1916
+ {
1917
+ "prompt": "83op20mod97=",
1918
+ "old_response": "54",
1919
+ "new_response": "73",
1920
+ "0_based_index": 5873
1921
+ },
1922
+ {
1923
+ "prompt": "28op79mod97=",
1924
+ "old_response": "20",
1925
+ "new_response": "44",
1926
+ "0_based_index": 4425
1927
+ },
1928
+ {
1929
+ "prompt": "66op40mod97=",
1930
+ "old_response": "26",
1931
+ "new_response": "84",
1932
+ "0_based_index": 3299
1933
+ },
1934
+ {
1935
+ "prompt": "7op93mod97=",
1936
+ "old_response": "71",
1937
+ "new_response": "88",
1938
+ "0_based_index": 4202
1939
+ },
1940
+ {
1941
+ "prompt": "3op27mod97=",
1942
+ "old_response": "54",
1943
+ "new_response": "1",
1944
+ "0_based_index": 2054
1945
+ },
1946
+ {
1947
+ "prompt": "25op79mod97=",
1948
+ "old_response": "4",
1949
+ "new_response": "38",
1950
+ "0_based_index": 2549
1951
+ },
1952
+ {
1953
+ "prompt": "42op4mod97=",
1954
+ "old_response": "38",
1955
+ "new_response": "69",
1956
+ "0_based_index": 5711
1957
+ },
1958
+ {
1959
+ "prompt": "89op48mod97=",
1960
+ "old_response": "91",
1961
+ "new_response": "70",
1962
+ "0_based_index": 807
1963
+ },
1964
+ {
1965
+ "prompt": "62op46mod97=",
1966
+ "old_response": "16",
1967
+ "new_response": "11",
1968
+ "0_based_index": 1449
1969
+ },
1970
+ {
1971
+ "prompt": "16op92mod97=",
1972
+ "old_response": "21",
1973
+ "new_response": "66",
1974
+ "0_based_index": 6351
1975
+ },
1976
+ {
1977
+ "prompt": "34op81mod97=",
1978
+ "old_response": "10",
1979
+ "new_response": "56",
1980
+ "0_based_index": 3375
1981
+ },
1982
+ {
1983
+ "prompt": "34op44mod97=",
1984
+ "old_response": "87",
1985
+ "new_response": "34",
1986
+ "0_based_index": 6014
1987
+ },
1988
+ {
1989
+ "prompt": "26op34mod97=",
1990
+ "old_response": "89",
1991
+ "new_response": "49",
1992
+ "0_based_index": 3337
1993
+ },
1994
+ {
1995
+ "prompt": "59op69mod97=",
1996
+ "old_response": "36",
1997
+ "new_response": "50",
1998
+ "0_based_index": 234
1999
+ },
2000
+ {
2001
+ "prompt": "54op93mod97=",
2002
+ "old_response": "35",
2003
+ "new_response": "50",
2004
+ "0_based_index": 2287
2005
+ },
2006
+ {
2007
+ "prompt": "64op53mod97=",
2008
+ "old_response": "25",
2009
+ "new_response": "59",
2010
+ "0_based_index": 2089
2011
+ },
2012
+ {
2013
+ "prompt": "33op40mod97=",
2014
+ "old_response": "60",
2015
+ "new_response": "25",
2016
+ "0_based_index": 2249
2017
+ },
2018
+ {
2019
+ "prompt": "45op84mod97=",
2020
+ "old_response": "73",
2021
+ "new_response": "34",
2022
+ "0_based_index": 5355
2023
+ },
2024
+ {
2025
+ "prompt": "36op38mod97=",
2026
+ "old_response": "95",
2027
+ "new_response": "80",
2028
+ "0_based_index": 1396
2029
+ },
2030
+ {
2031
+ "prompt": "36op16mod97=",
2032
+ "old_response": "20",
2033
+ "new_response": "49",
2034
+ "0_based_index": 4440
2035
+ },
2036
+ {
2037
+ "prompt": "54op69mod97=",
2038
+ "old_response": "5",
2039
+ "new_response": "93",
2040
+ "0_based_index": 2071
2041
+ },
2042
+ {
2043
+ "prompt": "34op54mod97=",
2044
+ "old_response": "77",
2045
+ "new_response": "95",
2046
+ "0_based_index": 2497
2047
+ },
2048
+ {
2049
+ "prompt": "86op52mod97=",
2050
+ "old_response": "34",
2051
+ "new_response": "44",
2052
+ "0_based_index": 3229
2053
+ },
2054
+ {
2055
+ "prompt": "32op36mod97=",
2056
+ "old_response": "93",
2057
+ "new_response": "96",
2058
+ "0_based_index": 6392
2059
+ },
2060
+ {
2061
+ "prompt": "94op92mod97=",
2062
+ "old_response": "2",
2063
+ "new_response": "66",
2064
+ "0_based_index": 6328
2065
+ },
2066
+ {
2067
+ "prompt": "11op31mod97=",
2068
+ "old_response": "16",
2069
+ "new_response": "69",
2070
+ "0_based_index": 3075
2071
+ },
2072
+ {
2073
+ "prompt": "64op28mod97=",
2074
+ "old_response": "36",
2075
+ "new_response": "90",
2076
+ "0_based_index": 4381
2077
+ },
2078
+ {
2079
+ "prompt": "28op49mod97=",
2080
+ "old_response": "56",
2081
+ "new_response": "9",
2082
+ "0_based_index": 3452
2083
+ },
2084
+ {
2085
+ "prompt": "55op24mod97=",
2086
+ "old_response": "41",
2087
+ "new_response": "58",
2088
+ "0_based_index": 2242
2089
+ },
2090
+ {
2091
+ "prompt": "3op43mod97=",
2092
+ "old_response": "70",
2093
+ "new_response": "71",
2094
+ "0_based_index": 905
2095
+ },
2096
+ {
2097
+ "prompt": "11op2mod97=",
2098
+ "old_response": "9",
2099
+ "new_response": "46",
2100
+ "0_based_index": 4404
2101
+ },
2102
+ {
2103
+ "prompt": "52op64mod97=",
2104
+ "old_response": "85",
2105
+ "new_response": "16",
2106
+ "0_based_index": 4992
2107
+ },
2108
+ {
2109
+ "prompt": "86op6mod97=",
2110
+ "old_response": "80",
2111
+ "new_response": "66",
2112
+ "0_based_index": 931
2113
+ },
2114
+ {
2115
+ "prompt": "10op72mod97=",
2116
+ "old_response": "35",
2117
+ "new_response": "17",
2118
+ "0_based_index": 970
2119
+ },
2120
+ {
2121
+ "prompt": "57op5mod97=",
2122
+ "old_response": "89",
2123
+ "new_response": "83",
2124
+ "0_based_index": 2916
2125
+ },
2126
+ {
2127
+ "prompt": "79op40mod97=",
2128
+ "old_response": "84",
2129
+ "new_response": "40",
2130
+ "0_based_index": 716
2131
+ },
2132
+ {
2133
+ "prompt": "61op75mod97=",
2134
+ "old_response": "81",
2135
+ "new_response": "29",
2136
+ "0_based_index": 4031
2137
+ },
2138
+ {
2139
+ "prompt": "80op17mod97=",
2140
+ "old_response": "96",
2141
+ "new_response": "23",
2142
+ "0_based_index": 3023
2143
+ },
2144
+ {
2145
+ "prompt": "18op64mod97=",
2146
+ "old_response": "51",
2147
+ "new_response": "4",
2148
+ "0_based_index": 945
2149
+ },
2150
+ {
2151
+ "prompt": "64op12mod97=",
2152
+ "old_response": "52",
2153
+ "new_response": "24",
2154
+ "0_based_index": 2012
2155
+ },
2156
+ {
2157
+ "prompt": "16op56mod97=",
2158
+ "old_response": "57",
2159
+ "new_response": "71",
2160
+ "0_based_index": 2487
2161
+ },
2162
+ {
2163
+ "prompt": "59op57mod97=",
2164
+ "old_response": "64",
2165
+ "new_response": "55",
2166
+ "0_based_index": 3880
2167
+ },
2168
+ {
2169
+ "prompt": "89op7mod97=",
2170
+ "old_response": "82",
2171
+ "new_response": "33",
2172
+ "0_based_index": 3377
2173
+ },
2174
+ {
2175
+ "prompt": "67op38mod97=",
2176
+ "old_response": "44",
2177
+ "new_response": "67",
2178
+ "0_based_index": 5400
2179
+ },
2180
+ {
2181
+ "prompt": "96op9mod97=",
2182
+ "old_response": "43",
2183
+ "new_response": "81",
2184
+ "0_based_index": 2020
2185
+ },
2186
+ {
2187
+ "prompt": "63op51mod97=",
2188
+ "old_response": "64",
2189
+ "new_response": "0",
2190
+ "0_based_index": 4292
2191
+ },
2192
+ {
2193
+ "prompt": "91op8mod97=",
2194
+ "old_response": "31",
2195
+ "new_response": "27",
2196
+ "0_based_index": 3508
2197
+ },
2198
+ {
2199
+ "prompt": "90op18mod97=",
2200
+ "old_response": "72",
2201
+ "new_response": "34",
2202
+ "0_based_index": 2784
2203
+ },
2204
+ {
2205
+ "prompt": "68op45mod97=",
2206
+ "old_response": "36",
2207
+ "new_response": "1",
2208
+ "0_based_index": 3480
2209
+ },
2210
+ {
2211
+ "prompt": "65op29mod97=",
2212
+ "old_response": "29",
2213
+ "new_response": "18",
2214
+ "0_based_index": 5496
2215
+ },
2216
+ {
2217
+ "prompt": "86op51mod97=",
2218
+ "old_response": "15",
2219
+ "new_response": "9",
2220
+ "0_based_index": 5031
2221
+ },
2222
+ {
2223
+ "prompt": "33op7mod97=",
2224
+ "old_response": "74",
2225
+ "new_response": "78",
2226
+ "0_based_index": 4021
2227
+ },
2228
+ {
2229
+ "prompt": "15op27mod97=",
2230
+ "old_response": "76",
2231
+ "new_response": "78",
2232
+ "0_based_index": 1389
2233
+ },
2234
+ {
2235
+ "prompt": "30op42mod97=",
2236
+ "old_response": "85",
2237
+ "new_response": "6",
2238
+ "0_based_index": 6203
2239
+ },
2240
+ {
2241
+ "prompt": "23op41mod97=",
2242
+ "old_response": "81",
2243
+ "new_response": "43",
2244
+ "0_based_index": 342
2245
+ },
2246
+ {
2247
+ "prompt": "90op74mod97=",
2248
+ "old_response": "16",
2249
+ "new_response": "77",
2250
+ "0_based_index": 4171
2251
+ },
2252
+ {
2253
+ "prompt": "85op46mod97=",
2254
+ "old_response": "77",
2255
+ "new_response": "49",
2256
+ "0_based_index": 3159
2257
+ },
2258
+ {
2259
+ "prompt": "95op6mod97=",
2260
+ "old_response": "94",
2261
+ "new_response": "59",
2262
+ "0_based_index": 6167
2263
+ },
2264
+ {
2265
+ "prompt": "37op5mod97=",
2266
+ "old_response": "85",
2267
+ "new_response": "30",
2268
+ "0_based_index": 3923
2269
+ },
2270
+ {
2271
+ "prompt": "83op8mod97=",
2272
+ "old_response": "41",
2273
+ "new_response": "6",
2274
+ "0_based_index": 5627
2275
+ },
2276
+ {
2277
+ "prompt": "60op15mod97=",
2278
+ "old_response": "4",
2279
+ "new_response": "69",
2280
+ "0_based_index": 1502
2281
+ },
2282
+ {
2283
+ "prompt": "84op47mod97=",
2284
+ "old_response": "41",
2285
+ "new_response": "0",
2286
+ "0_based_index": 1889
2287
+ },
2288
+ {
2289
+ "prompt": "90op91mod97=",
2290
+ "old_response": "82",
2291
+ "new_response": "43",
2292
+ "0_based_index": 3637
2293
+ },
2294
+ {
2295
+ "prompt": "24op68mod97=",
2296
+ "old_response": "53",
2297
+ "new_response": "75",
2298
+ "0_based_index": 4466
2299
+ },
2300
+ {
2301
+ "prompt": "83op28mod97=",
2302
+ "old_response": "95",
2303
+ "new_response": "22",
2304
+ "0_based_index": 3273
2305
+ },
2306
+ {
2307
+ "prompt": "9op93mod97=",
2308
+ "old_response": "22",
2309
+ "new_response": "71",
2310
+ "0_based_index": 1931
2311
+ },
2312
+ {
2313
+ "prompt": "68op37mod97=",
2314
+ "old_response": "70",
2315
+ "new_response": "64",
2316
+ "0_based_index": 453
2317
+ },
2318
+ {
2319
+ "prompt": "75op9mod97=",
2320
+ "old_response": "73",
2321
+ "new_response": "6",
2322
+ "0_based_index": 1886
2323
+ },
2324
+ {
2325
+ "prompt": "49op63mod97=",
2326
+ "old_response": "87",
2327
+ "new_response": "61",
2328
+ "0_based_index": 1854
2329
+ },
2330
+ {
2331
+ "prompt": "18op11mod97=",
2332
+ "old_response": "81",
2333
+ "new_response": "22",
2334
+ "0_based_index": 3511
2335
+ },
2336
+ {
2337
+ "prompt": "77op50mod97=",
2338
+ "old_response": "46",
2339
+ "new_response": "80",
2340
+ "0_based_index": 848
2341
+ },
2342
+ {
2343
+ "prompt": "13op41mod97=",
2344
+ "old_response": "50",
2345
+ "new_response": "64",
2346
+ "0_based_index": 208
2347
+ },
2348
+ {
2349
+ "prompt": "23op50mod97=",
2350
+ "old_response": "57",
2351
+ "new_response": "29",
2352
+ "0_based_index": 4278
2353
+ },
2354
+ {
2355
+ "prompt": "87op73mod97=",
2356
+ "old_response": "57",
2357
+ "new_response": "13",
2358
+ "0_based_index": 5188
2359
+ },
2360
+ {
2361
+ "prompt": "71op52mod97=",
2362
+ "old_response": "95",
2363
+ "new_response": "63",
2364
+ "0_based_index": 1664
2365
+ },
2366
+ {
2367
+ "prompt": "73op2mod97=",
2368
+ "old_response": "8",
2369
+ "new_response": "93",
2370
+ "0_based_index": 5346
2371
+ },
2372
+ {
2373
+ "prompt": "80op94mod97=",
2374
+ "old_response": "83",
2375
+ "new_response": "27",
2376
+ "0_based_index": 4457
2377
+ },
2378
+ {
2379
+ "prompt": "60op42mod97=",
2380
+ "old_response": "18",
2381
+ "new_response": "47",
2382
+ "0_based_index": 6156
2383
+ },
2384
+ {
2385
+ "prompt": "33op36mod97=",
2386
+ "old_response": "54",
2387
+ "new_response": "14",
2388
+ "0_based_index": 4734
2389
+ },
2390
+ {
2391
+ "prompt": "37op18mod97=",
2392
+ "old_response": "87",
2393
+ "new_response": "12",
2394
+ "0_based_index": 1274
2395
+ },
2396
+ {
2397
+ "prompt": "34op70mod97=",
2398
+ "old_response": "61",
2399
+ "new_response": "73",
2400
+ "0_based_index": 2473
2401
+ },
2402
+ {
2403
+ "prompt": "11op12mod97=",
2404
+ "old_response": "54",
2405
+ "new_response": "91",
2406
+ "0_based_index": 801
2407
+ },
2408
+ {
2409
+ "prompt": "53op53mod97=",
2410
+ "old_response": "1",
2411
+ "new_response": "64",
2412
+ "0_based_index": 2820
2413
+ },
2414
+ {
2415
+ "prompt": "19op21mod97=",
2416
+ "old_response": "24",
2417
+ "new_response": "56",
2418
+ "0_based_index": 1579
2419
+ },
2420
+ {
2421
+ "prompt": "92op66mod97=",
2422
+ "old_response": "26",
2423
+ "new_response": "28",
2424
+ "0_based_index": 5806
2425
+ },
2426
+ {
2427
+ "prompt": "68op92mod97=",
2428
+ "old_response": "73",
2429
+ "new_response": "1",
2430
+ "0_based_index": 4731
2431
+ },
2432
+ {
2433
+ "prompt": "89op41mod97=",
2434
+ "old_response": "14",
2435
+ "new_response": "8",
2436
+ "0_based_index": 4516
2437
+ },
2438
+ {
2439
+ "prompt": "15op1mod97=",
2440
+ "old_response": "15",
2441
+ "new_response": "65",
2442
+ "0_based_index": 5102
2443
+ },
2444
+ {
2445
+ "prompt": "41op58mod97=",
2446
+ "old_response": "44",
2447
+ "new_response": "36",
2448
+ "0_based_index": 5103
2449
+ },
2450
+ {
2451
+ "prompt": "49op8mod97=",
2452
+ "old_response": "16",
2453
+ "new_response": "92",
2454
+ "0_based_index": 188
2455
+ },
2456
+ {
2457
+ "prompt": "18op63mod97=",
2458
+ "old_response": "28",
2459
+ "new_response": "13",
2460
+ "0_based_index": 3389
2461
+ },
2462
+ {
2463
+ "prompt": "57op14mod97=",
2464
+ "old_response": "53",
2465
+ "new_response": "70",
2466
+ "0_based_index": 1132
2467
+ },
2468
+ {
2469
+ "prompt": "93op81mod97=",
2470
+ "old_response": "73",
2471
+ "new_response": "5",
2472
+ "0_based_index": 4230
2473
+ },
2474
+ {
2475
+ "prompt": "85op9mod97=",
2476
+ "old_response": "31",
2477
+ "new_response": "38",
2478
+ "0_based_index": 5454
2479
+ },
2480
+ {
2481
+ "prompt": "39op2mod97=",
2482
+ "old_response": "10",
2483
+ "new_response": "71",
2484
+ "0_based_index": 2279
2485
+ },
2486
+ {
2487
+ "prompt": "88op49mod97=",
2488
+ "old_response": "79",
2489
+ "new_response": "72",
2490
+ "0_based_index": 3879
2491
+ },
2492
+ {
2493
+ "prompt": "50op18mod97=",
2494
+ "old_response": "32",
2495
+ "new_response": "16",
2496
+ "0_based_index": 5663
2497
+ },
2498
+ {
2499
+ "prompt": "92op53mod97=",
2500
+ "old_response": "42",
2501
+ "new_response": "19",
2502
+ "0_based_index": 3252
2503
+ },
2504
+ {
2505
+ "prompt": "70op14mod97=",
2506
+ "old_response": "56",
2507
+ "new_response": "34",
2508
+ "0_based_index": 4170
2509
+ },
2510
+ {
2511
+ "prompt": "84op56mod97=",
2512
+ "old_response": "28",
2513
+ "new_response": "57",
2514
+ "0_based_index": 699
2515
+ },
2516
+ {
2517
+ "prompt": "87op44mod97=",
2518
+ "old_response": "15",
2519
+ "new_response": "92",
2520
+ "0_based_index": 5266
2521
+ },
2522
+ {
2523
+ "prompt": "36op28mod97=",
2524
+ "old_response": "8",
2525
+ "new_response": "58",
2526
+ "0_based_index": 2131
2527
+ },
2528
+ {
2529
+ "prompt": "4op9mod97=",
2530
+ "old_response": "22",
2531
+ "new_response": "75",
2532
+ "0_based_index": 4217
2533
+ },
2534
+ {
2535
+ "prompt": "78op59mod97=",
2536
+ "old_response": "49",
2537
+ "new_response": "57",
2538
+ "0_based_index": 160
2539
+ },
2540
+ {
2541
+ "prompt": "41op53mod97=",
2542
+ "old_response": "63",
2543
+ "new_response": "92",
2544
+ "0_based_index": 4095
2545
+ },
2546
+ {
2547
+ "prompt": "14op74mod97=",
2548
+ "old_response": "37",
2549
+ "new_response": "15",
2550
+ "0_based_index": 5070
2551
+ },
2552
+ {
2553
+ "prompt": "28op73mod97=",
2554
+ "old_response": "15",
2555
+ "new_response": "28",
2556
+ "0_based_index": 4236
2557
+ },
2558
+ {
2559
+ "prompt": "82op1mod97=",
2560
+ "old_response": "82",
2561
+ "new_response": "20",
2562
+ "0_based_index": 3691
2563
+ },
2564
+ {
2565
+ "prompt": "86op73mod97=",
2566
+ "old_response": "53",
2567
+ "new_response": "95",
2568
+ "0_based_index": 1572
2569
+ },
2570
+ {
2571
+ "prompt": "66op64mod97=",
2572
+ "old_response": "2",
2573
+ "new_response": "63",
2574
+ "0_based_index": 4773
2575
+ },
2576
+ {
2577
+ "prompt": "27op91mod97=",
2578
+ "old_response": "44",
2579
+ "new_response": "14",
2580
+ "0_based_index": 744
2581
+ },
2582
+ {
2583
+ "prompt": "49op77mod97=",
2584
+ "old_response": "80",
2585
+ "new_response": "2",
2586
+ "0_based_index": 511
2587
+ },
2588
+ {
2589
+ "prompt": "77op36mod97=",
2590
+ "old_response": "37",
2591
+ "new_response": "70",
2592
+ "0_based_index": 6276
2593
+ },
2594
+ {
2595
+ "prompt": "83op52mod97=",
2596
+ "old_response": "24",
2597
+ "new_response": "79",
2598
+ "0_based_index": 2185
2599
+ },
2600
+ {
2601
+ "prompt": "78op24mod97=",
2602
+ "old_response": "54",
2603
+ "new_response": "33",
2604
+ "0_based_index": 5902
2605
+ },
2606
+ {
2607
+ "prompt": "2op82mod97=",
2608
+ "old_response": "17",
2609
+ "new_response": "6",
2610
+ "0_based_index": 33
2611
+ },
2612
+ {
2613
+ "prompt": "15op16mod97=",
2614
+ "old_response": "14",
2615
+ "new_response": "88",
2616
+ "0_based_index": 4154
2617
+ },
2618
+ {
2619
+ "prompt": "53op56mod97=",
2620
+ "old_response": "34",
2621
+ "new_response": "9",
2622
+ "0_based_index": 2915
2623
+ },
2624
+ {
2625
+ "prompt": "69op16mod97=",
2626
+ "old_response": "41",
2627
+ "new_response": "28",
2628
+ "0_based_index": 655
2629
+ },
2630
+ {
2631
+ "prompt": "32op52mod97=",
2632
+ "old_response": "77",
2633
+ "new_response": "81",
2634
+ "0_based_index": 585
2635
+ },
2636
+ {
2637
+ "prompt": "85op70mod97=",
2638
+ "old_response": "75",
2639
+ "new_response": "35",
2640
+ "0_based_index": 3318
2641
+ },
2642
+ {
2643
+ "prompt": "12op2mod97=",
2644
+ "old_response": "10",
2645
+ "new_response": "87",
2646
+ "0_based_index": 2350
2647
+ },
2648
+ {
2649
+ "prompt": "80op46mod97=",
2650
+ "old_response": "34",
2651
+ "new_response": "1",
2652
+ "0_based_index": 5336
2653
+ },
2654
+ {
2655
+ "prompt": "42op19mod97=",
2656
+ "old_response": "89",
2657
+ "new_response": "85",
2658
+ "0_based_index": 1092
2659
+ },
2660
+ {
2661
+ "prompt": "78op6mod97=",
2662
+ "old_response": "72",
2663
+ "new_response": "88",
2664
+ "0_based_index": 6251
2665
+ },
2666
+ {
2667
+ "prompt": "87op31mod97=",
2668
+ "old_response": "56",
2669
+ "new_response": "22",
2670
+ "0_based_index": 55
2671
+ },
2672
+ {
2673
+ "prompt": "76op48mod97=",
2674
+ "old_response": "28",
2675
+ "new_response": "88",
2676
+ "0_based_index": 6009
2677
+ },
2678
+ {
2679
+ "prompt": "90op53mod97=",
2680
+ "old_response": "20",
2681
+ "new_response": "33",
2682
+ "0_based_index": 2152
2683
+ },
2684
+ {
2685
+ "prompt": "95op55mod97=",
2686
+ "old_response": "37",
2687
+ "new_response": "88",
2688
+ "0_based_index": 2785
2689
+ },
2690
+ {
2691
+ "prompt": "91op87mod97=",
2692
+ "old_response": "20",
2693
+ "new_response": "39",
2694
+ "0_based_index": 1830
2695
+ },
2696
+ {
2697
+ "prompt": "8op60mod97=",
2698
+ "old_response": "45",
2699
+ "new_response": "37",
2700
+ "0_based_index": 6061
2701
+ },
2702
+ {
2703
+ "prompt": "53op19mod97=",
2704
+ "old_response": "13",
2705
+ "new_response": "58",
2706
+ "0_based_index": 6137
2707
+ },
2708
+ {
2709
+ "prompt": "76op28mod97=",
2710
+ "old_response": "48",
2711
+ "new_response": "37",
2712
+ "0_based_index": 4468
2713
+ },
2714
+ {
2715
+ "prompt": "47op24mod97=",
2716
+ "old_response": "81",
2717
+ "new_response": "8",
2718
+ "0_based_index": 30
2719
+ },
2720
+ {
2721
+ "prompt": "37op47mod97=",
2722
+ "old_response": "40",
2723
+ "new_response": "24",
2724
+ "0_based_index": 1359
2725
+ },
2726
+ {
2727
+ "prompt": "81op34mod97=",
2728
+ "old_response": "10",
2729
+ "new_response": "90",
2730
+ "0_based_index": 6334
2731
+ },
2732
+ {
2733
+ "prompt": "60op1mod97=",
2734
+ "old_response": "60",
2735
+ "new_response": "45",
2736
+ "0_based_index": 3003
2737
+ },
2738
+ {
2739
+ "prompt": "74op86mod97=",
2740
+ "old_response": "85",
2741
+ "new_response": "41",
2742
+ "0_based_index": 6295
2743
+ },
2744
+ {
2745
+ "prompt": "8op1mod97=",
2746
+ "old_response": "8",
2747
+ "new_response": "91",
2748
+ "0_based_index": 5544
2749
+ },
2750
+ {
2751
+ "prompt": "31op93mod97=",
2752
+ "old_response": "65",
2753
+ "new_response": "36",
2754
+ "0_based_index": 484
2755
+ },
2756
+ {
2757
+ "prompt": "36op19mod97=",
2758
+ "old_response": "7",
2759
+ "new_response": "52",
2760
+ "0_based_index": 4825
2761
+ },
2762
+ {
2763
+ "prompt": "40op37mod97=",
2764
+ "old_response": "64",
2765
+ "new_response": "50",
2766
+ "0_based_index": 3286
2767
+ },
2768
+ {
2769
+ "prompt": "36op82mod97=",
2770
+ "old_response": "51",
2771
+ "new_response": "64",
2772
+ "0_based_index": 2294
2773
+ },
2774
+ {
2775
+ "prompt": "74op93mod97=",
2776
+ "old_response": "30",
2777
+ "new_response": "37",
2778
+ "0_based_index": 5773
2779
+ },
2780
+ {
2781
+ "prompt": "30op68mod97=",
2782
+ "old_response": "59",
2783
+ "new_response": "69",
2784
+ "0_based_index": 5276
2785
+ },
2786
+ {
2787
+ "prompt": "56op38mod97=",
2788
+ "old_response": "18",
2789
+ "new_response": "45",
2790
+ "0_based_index": 6330
2791
+ },
2792
+ {
2793
+ "prompt": "10op51mod97=",
2794
+ "old_response": "4",
2795
+ "new_response": "65",
2796
+ "0_based_index": 2794
2797
+ },
2798
+ {
2799
+ "prompt": "91op96mod97=",
2800
+ "old_response": "81",
2801
+ "new_response": "24",
2802
+ "0_based_index": 3333
2803
+ },
2804
+ {
2805
+ "prompt": "52op73mod97=",
2806
+ "old_response": "14",
2807
+ "new_response": "15",
2808
+ "0_based_index": 3212
2809
+ },
2810
+ {
2811
+ "prompt": "79op9mod97=",
2812
+ "old_response": "95",
2813
+ "new_response": "73",
2814
+ "0_based_index": 1254
2815
+ },
2816
+ {
2817
+ "prompt": "78op81mod97=",
2818
+ "old_response": "80",
2819
+ "new_response": "18",
2820
+ "0_based_index": 2396
2821
+ },
2822
+ {
2823
+ "prompt": "72op10mod97=",
2824
+ "old_response": "62",
2825
+ "new_response": "81",
2826
+ "0_based_index": 5032
2827
+ },
2828
+ {
2829
+ "prompt": "86op40mod97=",
2830
+ "old_response": "46",
2831
+ "new_response": "36",
2832
+ "0_based_index": 293
2833
+ },
2834
+ {
2835
+ "prompt": "60op87mod97=",
2836
+ "old_response": "91",
2837
+ "new_response": "19",
2838
+ "0_based_index": 364
2839
+ },
2840
+ {
2841
+ "prompt": "90op61mod97=",
2842
+ "old_response": "46",
2843
+ "new_response": "39",
2844
+ "0_based_index": 1890
2845
+ },
2846
+ {
2847
+ "prompt": "59op63mod97=",
2848
+ "old_response": "81",
2849
+ "new_response": "86",
2850
+ "0_based_index": 2283
2851
+ },
2852
+ {
2853
+ "prompt": "20op53mod97=",
2854
+ "old_response": "26",
2855
+ "new_response": "95",
2856
+ "0_based_index": 5081
2857
+ },
2858
+ {
2859
+ "prompt": "96op40mod97=",
2860
+ "old_response": "56",
2861
+ "new_response": "78",
2862
+ "0_based_index": 4961
2863
+ },
2864
+ {
2865
+ "prompt": "48op92mod97=",
2866
+ "old_response": "53",
2867
+ "new_response": "46",
2868
+ "0_based_index": 3654
2869
+ },
2870
+ {
2871
+ "prompt": "73op61mod97=",
2872
+ "old_response": "33",
2873
+ "new_response": "13",
2874
+ "0_based_index": 22
2875
+ },
2876
+ {
2877
+ "prompt": "47op39mod97=",
2878
+ "old_response": "41",
2879
+ "new_response": "49",
2880
+ "0_based_index": 5003
2881
+ },
2882
+ {
2883
+ "prompt": "51op64mod97=",
2884
+ "old_response": "45",
2885
+ "new_response": "72",
2886
+ "0_based_index": 1425
2887
+ },
2888
+ {
2889
+ "prompt": "56op7mod97=",
2890
+ "old_response": "8",
2891
+ "new_response": "25",
2892
+ "0_based_index": 3972
2893
+ },
2894
+ {
2895
+ "prompt": "7op16mod97=",
2896
+ "old_response": "30",
2897
+ "new_response": "86",
2898
+ "0_based_index": 2732
2899
+ },
2900
+ {
2901
+ "prompt": "9op39mod97=",
2902
+ "old_response": "45",
2903
+ "new_response": "8",
2904
+ "0_based_index": 5874
2905
+ },
2906
+ {
2907
+ "prompt": "57op50mod97=",
2908
+ "old_response": "23",
2909
+ "new_response": "55",
2910
+ "0_based_index": 2768
2911
+ },
2912
+ {
2913
+ "prompt": "59op25mod97=",
2914
+ "old_response": "14",
2915
+ "new_response": "55",
2916
+ "0_based_index": 1733
2917
+ },
2918
+ {
2919
+ "prompt": "35op82mod97=",
2920
+ "old_response": "55",
2921
+ "new_response": "86",
2922
+ "0_based_index": 3531
2923
+ },
2924
+ {
2925
+ "prompt": "62op92mod97=",
2926
+ "old_response": "67",
2927
+ "new_response": "66",
2928
+ "0_based_index": 4855
2929
+ },
2930
+ {
2931
+ "prompt": "88op29mod97=",
2932
+ "old_response": "90",
2933
+ "new_response": "87",
2934
+ "0_based_index": 4318
2935
+ },
2936
+ {
2937
+ "prompt": "88op16mod97=",
2938
+ "old_response": "72",
2939
+ "new_response": "17",
2940
+ "0_based_index": 4519
2941
+ },
2942
+ {
2943
+ "prompt": "23op4mod97=",
2944
+ "old_response": "55",
2945
+ "new_response": "89",
2946
+ "0_based_index": 1883
2947
+ },
2948
+ {
2949
+ "prompt": "44op90mod97=",
2950
+ "old_response": "51",
2951
+ "new_response": "12",
2952
+ "0_based_index": 1041
2953
+ },
2954
+ {
2955
+ "prompt": "65op62mod97=",
2956
+ "old_response": "89",
2957
+ "new_response": "81",
2958
+ "0_based_index": 4004
2959
+ },
2960
+ {
2961
+ "prompt": "85op82mod97=",
2962
+ "old_response": "74",
2963
+ "new_response": "89",
2964
+ "0_based_index": 1158
2965
+ },
2966
+ {
2967
+ "prompt": "90op90mod97=",
2968
+ "old_response": "0",
2969
+ "new_response": "56",
2970
+ "0_based_index": 372
2971
+ },
2972
+ {
2973
+ "prompt": "14op28mod97=",
2974
+ "old_response": "83",
2975
+ "new_response": "17",
2976
+ "0_based_index": 1005
2977
+ },
2978
+ {
2979
+ "prompt": "48op12mod97=",
2980
+ "old_response": "36",
2981
+ "new_response": "38",
2982
+ "0_based_index": 3228
2983
+ },
2984
+ {
2985
+ "prompt": "80op58mod97=",
2986
+ "old_response": "22",
2987
+ "new_response": "71",
2988
+ "0_based_index": 1552
2989
+ },
2990
+ {
2991
+ "prompt": "3op44mod97=",
2992
+ "old_response": "47",
2993
+ "new_response": "19",
2994
+ "0_based_index": 804
2995
+ },
2996
+ {
2997
+ "prompt": "35op13mod97=",
2998
+ "old_response": "40",
2999
+ "new_response": "22",
3000
+ "0_based_index": 4253
3001
+ },
3002
+ {
3003
+ "prompt": "28op86mod97=",
3004
+ "old_response": "39",
3005
+ "new_response": "46",
3006
+ "0_based_index": 3958
3007
+ },
3008
+ {
3009
+ "prompt": "73op56mod97=",
3010
+ "old_response": "30",
3011
+ "new_response": "26",
3012
+ "0_based_index": 6107
3013
+ },
3014
+ {
3015
+ "prompt": "10op52mod97=",
3016
+ "old_response": "55",
3017
+ "new_response": "21",
3018
+ "0_based_index": 6409
3019
+ },
3020
+ {
3021
+ "prompt": "68op17mod97=",
3022
+ "old_response": "4",
3023
+ "new_response": "19",
3024
+ "0_based_index": 1157
3025
+ },
3026
+ {
3027
+ "prompt": "75op36mod97=",
3028
+ "old_response": "16",
3029
+ "new_response": "43",
3030
+ "0_based_index": 1918
3031
+ },
3032
+ {
3033
+ "prompt": "15op12mod97=",
3034
+ "old_response": "59",
3035
+ "new_response": "16",
3036
+ "0_based_index": 3871
3037
+ },
3038
+ {
3039
+ "prompt": "37op20mod97=",
3040
+ "old_response": "32",
3041
+ "new_response": "66",
3042
+ "0_based_index": 149
3043
+ },
3044
+ {
3045
+ "prompt": "75op32mod97=",
3046
+ "old_response": "25",
3047
+ "new_response": "12",
3048
+ "0_based_index": 1957
3049
+ },
3050
+ {
3051
+ "prompt": "75op37mod97=",
3052
+ "old_response": "23",
3053
+ "new_response": "73",
3054
+ "0_based_index": 6417
3055
+ },
3056
+ {
3057
+ "prompt": "59op56mod97=",
3058
+ "old_response": "70",
3059
+ "new_response": "23",
3060
+ "0_based_index": 5601
3061
+ },
3062
+ {
3063
+ "prompt": "63op45mod97=",
3064
+ "old_response": "79",
3065
+ "new_response": "24",
3066
+ "0_based_index": 4968
3067
+ },
3068
+ {
3069
+ "prompt": "6op49mod97=",
3070
+ "old_response": "12",
3071
+ "new_response": "28",
3072
+ "0_based_index": 3702
3073
+ },
3074
+ {
3075
+ "prompt": "57op94mod97=",
3076
+ "old_response": "51",
3077
+ "new_response": "87",
3078
+ "0_based_index": 5499
3079
+ },
3080
+ {
3081
+ "prompt": "27op57mod97=",
3082
+ "old_response": "26",
3083
+ "new_response": "2",
3084
+ "0_based_index": 538
3085
+ },
3086
+ {
3087
+ "prompt": "95op82mod97=",
3088
+ "old_response": "56",
3089
+ "new_response": "34",
3090
+ "0_based_index": 3146
3091
+ },
3092
+ {
3093
+ "prompt": "76op92mod97=",
3094
+ "old_response": "81",
3095
+ "new_response": "45",
3096
+ "0_based_index": 2877
3097
+ },
3098
+ {
3099
+ "prompt": "96op7mod97=",
3100
+ "old_response": "83",
3101
+ "new_response": "61",
3102
+ "0_based_index": 5326
3103
+ },
3104
+ {
3105
+ "prompt": "29op60mod97=",
3106
+ "old_response": "79",
3107
+ "new_response": "14",
3108
+ "0_based_index": 2996
3109
+ },
3110
+ {
3111
+ "prompt": "57op19mod97=",
3112
+ "old_response": "3",
3113
+ "new_response": "93",
3114
+ "0_based_index": 2358
3115
+ },
3116
+ {
3117
+ "prompt": "70op17mod97=",
3118
+ "old_response": "84",
3119
+ "new_response": "89",
3120
+ "0_based_index": 4407
3121
+ },
3122
+ {
3123
+ "prompt": "52op75mod97=",
3124
+ "old_response": "77",
3125
+ "new_response": "56",
3126
+ "0_based_index": 2993
3127
+ },
3128
+ {
3129
+ "prompt": "26op78mod97=",
3130
+ "old_response": "45",
3131
+ "new_response": "0",
3132
+ "0_based_index": 4016
3133
+ },
3134
+ {
3135
+ "prompt": "74op65mod97=",
3136
+ "old_response": "28",
3137
+ "new_response": "2",
3138
+ "0_based_index": 6097
3139
+ },
3140
+ {
3141
+ "prompt": "47op87mod97=",
3142
+ "old_response": "5",
3143
+ "new_response": "27",
3144
+ "0_based_index": 4587
3145
+ },
3146
+ {
3147
+ "prompt": "21op9mod97=",
3148
+ "old_response": "67",
3149
+ "new_response": "29",
3150
+ "0_based_index": 6127
3151
+ },
3152
+ {
3153
+ "prompt": "66op45mod97=",
3154
+ "old_response": "92",
3155
+ "new_response": "67",
3156
+ "0_based_index": 4672
3157
+ },
3158
+ {
3159
+ "prompt": "60op59mod97=",
3160
+ "old_response": "75",
3161
+ "new_response": "31",
3162
+ "0_based_index": 2999
3163
+ },
3164
+ {
3165
+ "prompt": "86op84mod97=",
3166
+ "old_response": "2",
3167
+ "new_response": "38",
3168
+ "0_based_index": 3084
3169
+ },
3170
+ {
3171
+ "prompt": "9op54mod97=",
3172
+ "old_response": "6",
3173
+ "new_response": "44",
3174
+ "0_based_index": 772
3175
+ },
3176
+ {
3177
+ "prompt": "84op23mod97=",
3178
+ "old_response": "88",
3179
+ "new_response": "28",
3180
+ "0_based_index": 4799
3181
+ },
3182
+ {
3183
+ "prompt": "45op32mod97=",
3184
+ "old_response": "74",
3185
+ "new_response": "48",
3186
+ "0_based_index": 2885
3187
+ },
3188
+ {
3189
+ "prompt": "84op70mod97=",
3190
+ "old_response": "14",
3191
+ "new_response": "50",
3192
+ "0_based_index": 798
3193
+ },
3194
+ {
3195
+ "prompt": "23op54mod97=",
3196
+ "old_response": "15",
3197
+ "new_response": "8",
3198
+ "0_based_index": 2591
3199
+ },
3200
+ {
3201
+ "prompt": "91op35mod97=",
3202
+ "old_response": "22",
3203
+ "new_response": "70",
3204
+ "0_based_index": 4927
3205
+ },
3206
+ {
3207
+ "prompt": "35op6mod97=",
3208
+ "old_response": "75",
3209
+ "new_response": "49",
3210
+ "0_based_index": 3706
3211
+ },
3212
+ {
3213
+ "prompt": "17op74mod97=",
3214
+ "old_response": "50",
3215
+ "new_response": "85",
3216
+ "0_based_index": 6035
3217
+ },
3218
+ {
3219
+ "prompt": "53op64mod97=",
3220
+ "old_response": "25",
3221
+ "new_response": "54",
3222
+ "0_based_index": 3465
3223
+ },
3224
+ {
3225
+ "prompt": "64op18mod97=",
3226
+ "old_response": "46",
3227
+ "new_response": "79",
3228
+ "0_based_index": 3115
3229
+ },
3230
+ {
3231
+ "prompt": "72op32mod97=",
3232
+ "old_response": "40",
3233
+ "new_response": "66",
3234
+ "0_based_index": 4783
3235
+ },
3236
+ {
3237
+ "prompt": "36op2mod97=",
3238
+ "old_response": "34",
3239
+ "new_response": "55",
3240
+ "0_based_index": 2451
3241
+ },
3242
+ {
3243
+ "prompt": "64op9mod97=",
3244
+ "old_response": "61",
3245
+ "new_response": "72",
3246
+ "0_based_index": 6349
3247
+ },
3248
+ {
3249
+ "prompt": "46op42mod97=",
3250
+ "old_response": "4",
3251
+ "new_response": "63",
3252
+ "0_based_index": 6249
3253
+ },
3254
+ {
3255
+ "prompt": "8op27mod97=",
3256
+ "old_response": "47",
3257
+ "new_response": "96",
3258
+ "0_based_index": 4526
3259
+ },
3260
+ {
3261
+ "prompt": "49op59mod97=",
3262
+ "old_response": "37",
3263
+ "new_response": "93",
3264
+ "0_based_index": 2044
3265
+ },
3266
+ {
3267
+ "prompt": "21op91mod97=",
3268
+ "old_response": "45",
3269
+ "new_response": "78",
3270
+ "0_based_index": 4978
3271
+ },
3272
+ {
3273
+ "prompt": "17op22mod97=",
3274
+ "old_response": "7",
3275
+ "new_response": "5",
3276
+ "0_based_index": 5427
3277
+ },
3278
+ {
3279
+ "prompt": "50op20mod97=",
3280
+ "old_response": "30",
3281
+ "new_response": "64",
3282
+ "0_based_index": 5749
3283
+ },
3284
+ {
3285
+ "prompt": "86op85mod97=",
3286
+ "old_response": "9",
3287
+ "new_response": "15",
3288
+ "0_based_index": 769
3289
+ },
3290
+ {
3291
+ "prompt": "51op32mod97=",
3292
+ "old_response": "71",
3293
+ "new_response": "27",
3294
+ "0_based_index": 5704
3295
+ },
3296
+ {
3297
+ "prompt": "26op50mod97=",
3298
+ "old_response": "73",
3299
+ "new_response": "74",
3300
+ "0_based_index": 3626
3301
+ },
3302
+ {
3303
+ "prompt": "46op63mod97=",
3304
+ "old_response": "50",
3305
+ "new_response": "4",
3306
+ "0_based_index": 540
3307
+ },
3308
+ {
3309
+ "prompt": "44op77mod97=",
3310
+ "old_response": "56",
3311
+ "new_response": "32",
3312
+ "0_based_index": 2917
3313
+ },
3314
+ {
3315
+ "prompt": "11op57mod97=",
3316
+ "old_response": "7",
3317
+ "new_response": "90",
3318
+ "0_based_index": 5210
3319
+ },
3320
+ {
3321
+ "prompt": "39op69mod97=",
3322
+ "old_response": "9",
3323
+ "new_response": "26",
3324
+ "0_based_index": 4821
3325
+ },
3326
+ {
3327
+ "prompt": "40op62mod97=",
3328
+ "old_response": "75",
3329
+ "new_response": "95",
3330
+ "0_based_index": 2763
3331
+ },
3332
+ {
3333
+ "prompt": "61op50mod97=",
3334
+ "old_response": "4",
3335
+ "new_response": "6",
3336
+ "0_based_index": 2442
3337
+ },
3338
+ {
3339
+ "prompt": "47op32mod97=",
3340
+ "old_response": "11",
3341
+ "new_response": "42",
3342
+ "0_based_index": 4916
3343
+ },
3344
+ {
3345
+ "prompt": "17op7mod97=",
3346
+ "old_response": "44",
3347
+ "new_response": "13",
3348
+ "0_based_index": 972
3349
+ },
3350
+ {
3351
+ "prompt": "10op20mod97=",
3352
+ "old_response": "87",
3353
+ "new_response": "35",
3354
+ "0_based_index": 2001
3355
+ },
3356
+ {
3357
+ "prompt": "30op27mod97=",
3358
+ "old_response": "55",
3359
+ "new_response": "25",
3360
+ "0_based_index": 3680
3361
+ },
3362
+ {
3363
+ "prompt": "24op31mod97=",
3364
+ "old_response": "79",
3365
+ "new_response": "58",
3366
+ "0_based_index": 6433
3367
+ },
3368
+ {
3369
+ "prompt": "3op15mod97=",
3370
+ "old_response": "39",
3371
+ "new_response": "2",
3372
+ "0_based_index": 2954
3373
+ },
3374
+ {
3375
+ "prompt": "42op46mod97=",
3376
+ "old_response": "93",
3377
+ "new_response": "91",
3378
+ "0_based_index": 5275
3379
+ },
3380
+ {
3381
+ "prompt": "40op17mod97=",
3382
+ "old_response": "48",
3383
+ "new_response": "67",
3384
+ "0_based_index": 1184
3385
+ },
3386
+ {
3387
+ "prompt": "12op35mod97=",
3388
+ "old_response": "53",
3389
+ "new_response": "24",
3390
+ "0_based_index": 2821
3391
+ },
3392
+ {
3393
+ "prompt": "20op27mod97=",
3394
+ "old_response": "69",
3395
+ "new_response": "11",
3396
+ "0_based_index": 3151
3397
+ },
3398
+ {
3399
+ "prompt": "11op52mod97=",
3400
+ "old_response": "40",
3401
+ "new_response": "92",
3402
+ "0_based_index": 1755
3403
+ },
3404
+ {
3405
+ "prompt": "44op35mod97=",
3406
+ "old_response": "65",
3407
+ "new_response": "45",
3408
+ "0_based_index": 4761
3409
+ },
3410
+ {
3411
+ "prompt": "31op75mod97=",
3412
+ "old_response": "3",
3413
+ "new_response": "7",
3414
+ "0_based_index": 5517
3415
+ },
3416
+ {
3417
+ "prompt": "36op18mod97=",
3418
+ "old_response": "18",
3419
+ "new_response": "78",
3420
+ "0_based_index": 3575
3421
+ },
3422
+ {
3423
+ "prompt": "35op27mod97=",
3424
+ "old_response": "48",
3425
+ "new_response": "82",
3426
+ "0_based_index": 5124
3427
+ },
3428
+ {
3429
+ "prompt": "90op22mod97=",
3430
+ "old_response": "68",
3431
+ "new_response": "73",
3432
+ "0_based_index": 3431
3433
+ },
3434
+ {
3435
+ "prompt": "2op39mod97=",
3436
+ "old_response": "10",
3437
+ "new_response": "24",
3438
+ "0_based_index": 1985
3439
+ },
3440
+ {
3441
+ "prompt": "66op82mod97=",
3442
+ "old_response": "81",
3443
+ "new_response": "80",
3444
+ "0_based_index": 1171
3445
+ },
3446
+ {
3447
+ "prompt": "25op36mod97=",
3448
+ "old_response": "48",
3449
+ "new_response": "60",
3450
+ "0_based_index": 1484
3451
+ },
3452
+ {
3453
+ "prompt": "39op57mod97=",
3454
+ "old_response": "16",
3455
+ "new_response": "63",
3456
+ "0_based_index": 5250
3457
+ },
3458
+ {
3459
+ "prompt": "33op2mod97=",
3460
+ "old_response": "3",
3461
+ "new_response": "61",
3462
+ "0_based_index": 2799
3463
+ },
3464
+ {
3465
+ "prompt": "61op29mod97=",
3466
+ "old_response": "69",
3467
+ "new_response": "34",
3468
+ "0_based_index": 2750
3469
+ },
3470
+ {
3471
+ "prompt": "42op5mod97=",
3472
+ "old_response": "86",
3473
+ "new_response": "12",
3474
+ "0_based_index": 2882
3475
+ },
3476
+ {
3477
+ "prompt": "16op57mod97=",
3478
+ "old_response": "19",
3479
+ "new_response": "86",
3480
+ "0_based_index": 4330
3481
+ },
3482
+ {
3483
+ "prompt": "82op56mod97=",
3484
+ "old_response": "26",
3485
+ "new_response": "27",
3486
+ "0_based_index": 5673
3487
+ },
3488
+ {
3489
+ "prompt": "67op26mod97=",
3490
+ "old_response": "25",
3491
+ "new_response": "64",
3492
+ "0_based_index": 1290
3493
+ },
3494
+ {
3495
+ "prompt": "27op77mod97=",
3496
+ "old_response": "52",
3497
+ "new_response": "49",
3498
+ "0_based_index": 2638
3499
+ },
3500
+ {
3501
+ "prompt": "37op26mod97=",
3502
+ "old_response": "61",
3503
+ "new_response": "18",
3504
+ "0_based_index": 3967
3505
+ },
3506
+ {
3507
+ "prompt": "6op54mod97=",
3508
+ "old_response": "49",
3509
+ "new_response": "28",
3510
+ "0_based_index": 2974
3511
+ },
3512
+ {
3513
+ "prompt": "92op45mod97=",
3514
+ "old_response": "43",
3515
+ "new_response": "9",
3516
+ "0_based_index": 5569
3517
+ },
3518
+ {
3519
+ "prompt": "10op2mod97=",
3520
+ "old_response": "8",
3521
+ "new_response": "16",
3522
+ "0_based_index": 4429
3523
+ },
3524
+ {
3525
+ "prompt": "41op27mod97=",
3526
+ "old_response": "59",
3527
+ "new_response": "94",
3528
+ "0_based_index": 2320
3529
+ },
3530
+ {
3531
+ "prompt": "81op18mod97=",
3532
+ "old_response": "11",
3533
+ "new_response": "47",
3534
+ "0_based_index": 6254
3535
+ },
3536
+ {
3537
+ "prompt": "29op57mod97=",
3538
+ "old_response": "89",
3539
+ "new_response": "46",
3540
+ "0_based_index": 1906
3541
+ },
3542
+ {
3543
+ "prompt": "38op47mod97=",
3544
+ "old_response": "7",
3545
+ "new_response": "42",
3546
+ "0_based_index": 6250
3547
+ },
3548
+ {
3549
+ "prompt": "66op94mod97=",
3550
+ "old_response": "69",
3551
+ "new_response": "34",
3552
+ "0_based_index": 3185
3553
+ },
3554
+ {
3555
+ "prompt": "25op22mod97=",
3556
+ "old_response": "94",
3557
+ "new_response": "43",
3558
+ "0_based_index": 5699
3559
+ },
3560
+ {
3561
+ "prompt": "50op42mod97=",
3562
+ "old_response": "8",
3563
+ "new_response": "35",
3564
+ "0_based_index": 1855
3565
+ },
3566
+ {
3567
+ "prompt": "88op6mod97=",
3568
+ "old_response": "82",
3569
+ "new_response": "68",
3570
+ "0_based_index": 791
3571
+ },
3572
+ {
3573
+ "prompt": "20op87mod97=",
3574
+ "old_response": "95",
3575
+ "new_response": "40",
3576
+ "0_based_index": 6399
3577
+ },
3578
+ {
3579
+ "prompt": "60op88mod97=",
3580
+ "old_response": "69",
3581
+ "new_response": "81",
3582
+ "0_based_index": 5227
3583
+ },
3584
+ {
3585
+ "prompt": "15op7mod97=",
3586
+ "old_response": "16",
3587
+ "new_response": "68",
3588
+ "0_based_index": 5799
3589
+ },
3590
+ {
3591
+ "prompt": "91op91mod97=",
3592
+ "old_response": "1",
3593
+ "new_response": "34",
3594
+ "0_based_index": 6050
3595
+ },
3596
+ {
3597
+ "prompt": "34op35mod97=",
3598
+ "old_response": "37",
3599
+ "new_response": "13",
3600
+ "0_based_index": 2510
3601
+ },
3602
+ {
3603
+ "prompt": "43op38mod97=",
3604
+ "old_response": "46",
3605
+ "new_response": "77",
3606
+ "0_based_index": 902
3607
+ },
3608
+ {
3609
+ "prompt": "80op96mod97=",
3610
+ "old_response": "81",
3611
+ "new_response": "42",
3612
+ "0_based_index": 3927
3613
+ },
3614
+ {
3615
+ "prompt": "89op64mod97=",
3616
+ "old_response": "89",
3617
+ "new_response": "9",
3618
+ "0_based_index": 4372
3619
+ },
3620
+ {
3621
+ "prompt": "22op89mod97=",
3622
+ "old_response": "70",
3623
+ "new_response": "72",
3624
+ "0_based_index": 3083
3625
+ },
3626
+ {
3627
+ "prompt": "46op74mod97=",
3628
+ "old_response": "69",
3629
+ "new_response": "72",
3630
+ "0_based_index": 3298
3631
+ },
3632
+ {
3633
+ "prompt": "25op48mod97=",
3634
+ "old_response": "64",
3635
+ "new_response": "41",
3636
+ "0_based_index": 907
3637
+ },
3638
+ {
3639
+ "prompt": "40op49mod97=",
3640
+ "old_response": "80",
3641
+ "new_response": "71",
3642
+ "0_based_index": 2938
3643
+ },
3644
+ {
3645
+ "prompt": "17op73mod97=",
3646
+ "old_response": "68",
3647
+ "new_response": "5",
3648
+ "0_based_index": 1794
3649
+ },
3650
+ {
3651
+ "prompt": "2op29mod97=",
3652
+ "old_response": "77",
3653
+ "new_response": "53",
3654
+ "0_based_index": 3409
3655
+ },
3656
+ {
3657
+ "prompt": "55op44mod97=",
3658
+ "old_response": "59",
3659
+ "new_response": "68",
3660
+ "0_based_index": 6255
3661
+ },
3662
+ {
3663
+ "prompt": "50op64mod97=",
3664
+ "old_response": "83",
3665
+ "new_response": "22",
3666
+ "0_based_index": 2457
3667
+ },
3668
+ {
3669
+ "prompt": "5op32mod97=",
3670
+ "old_response": "84",
3671
+ "new_response": "17",
3672
+ "0_based_index": 6226
3673
+ },
3674
+ {
3675
+ "prompt": "39op90mod97=",
3676
+ "old_response": "62",
3677
+ "new_response": "45",
3678
+ "0_based_index": 4158
3679
+ },
3680
+ {
3681
+ "prompt": "76op84mod97=",
3682
+ "old_response": "89",
3683
+ "new_response": "49",
3684
+ "0_based_index": 4864
3685
+ },
3686
+ {
3687
+ "prompt": "85op74mod97=",
3688
+ "old_response": "10",
3689
+ "new_response": "66",
3690
+ "0_based_index": 1310
3691
+ },
3692
+ {
3693
+ "prompt": "14op67mod97=",
3694
+ "old_response": "6",
3695
+ "new_response": "16",
3696
+ "0_based_index": 5358
3697
+ },
3698
+ {
3699
+ "prompt": "12op28mod97=",
3700
+ "old_response": "81",
3701
+ "new_response": "72",
3702
+ "0_based_index": 6054
3703
+ },
3704
+ {
3705
+ "prompt": "6op11mod97=",
3706
+ "old_response": "27",
3707
+ "new_response": "36",
3708
+ "0_based_index": 110
3709
+ },
3710
+ {
3711
+ "prompt": "73op24mod97=",
3712
+ "old_response": "96",
3713
+ "new_response": "39",
3714
+ "0_based_index": 1202
3715
+ },
3716
+ {
3717
+ "prompt": "48op41mod97=",
3718
+ "old_response": "13",
3719
+ "new_response": "50",
3720
+ "0_based_index": 1038
3721
+ },
3722
+ {
3723
+ "prompt": "26op87mod97=",
3724
+ "old_response": "75",
3725
+ "new_response": "81",
3726
+ "0_based_index": 3947
3727
+ },
3728
+ {
3729
+ "prompt": "76op25mod97=",
3730
+ "old_response": "69",
3731
+ "new_response": "0",
3732
+ "0_based_index": 4390
3733
+ },
3734
+ {
3735
+ "prompt": "94op27mod97=",
3736
+ "old_response": "43",
3737
+ "new_response": "19",
3738
+ "0_based_index": 3316
3739
+ },
3740
+ {
3741
+ "prompt": "32op17mod97=",
3742
+ "old_response": "19",
3743
+ "new_response": "83",
3744
+ "0_based_index": 396
3745
+ },
3746
+ {
3747
+ "prompt": "16op23mod97=",
3748
+ "old_response": "26",
3749
+ "new_response": "48",
3750
+ "0_based_index": 3073
3751
+ },
3752
+ {
3753
+ "prompt": "89op29mod97=",
3754
+ "old_response": "80",
3755
+ "new_response": "32",
3756
+ "0_based_index": 2558
3757
+ },
3758
+ {
3759
+ "prompt": "53op21mod97=",
3760
+ "old_response": "21",
3761
+ "new_response": "35",
3762
+ "0_based_index": 1243
3763
+ },
3764
+ {
3765
+ "prompt": "65op83mod97=",
3766
+ "old_response": "30",
3767
+ "new_response": "18",
3768
+ "0_based_index": 1352
3769
+ },
3770
+ {
3771
+ "prompt": "88op15mod97=",
3772
+ "old_response": "77",
3773
+ "new_response": "5",
3774
+ "0_based_index": 510
3775
+ },
3776
+ {
3777
+ "prompt": "9op41mod97=",
3778
+ "old_response": "57",
3779
+ "new_response": "27",
3780
+ "0_based_index": 1899
3781
+ },
3782
+ {
3783
+ "prompt": "25op38mod97=",
3784
+ "old_response": "83",
3785
+ "new_response": "51",
3786
+ "0_based_index": 2899
3787
+ },
3788
+ {
3789
+ "prompt": "7op66mod97=",
3790
+ "old_response": "51",
3791
+ "new_response": "55",
3792
+ "0_based_index": 773
3793
+ },
3794
+ {
3795
+ "prompt": "54op52mod97=",
3796
+ "old_response": "2",
3797
+ "new_response": "58",
3798
+ "0_based_index": 2413
3799
+ },
3800
+ {
3801
+ "prompt": "48op85mod97=",
3802
+ "old_response": "93",
3803
+ "new_response": "11",
3804
+ "0_based_index": 3614
3805
+ },
3806
+ {
3807
+ "prompt": "20op61mod97=",
3808
+ "old_response": "21",
3809
+ "new_response": "94",
3810
+ "0_based_index": 171
3811
+ },
3812
+ {
3813
+ "prompt": "82op58mod97=",
3814
+ "old_response": "24",
3815
+ "new_response": "6",
3816
+ "0_based_index": 5512
3817
+ },
3818
+ {
3819
+ "prompt": "33op30mod97=",
3820
+ "old_response": "45",
3821
+ "new_response": "7",
3822
+ "0_based_index": 3678
3823
+ },
3824
+ {
3825
+ "prompt": "51op62mod97=",
3826
+ "old_response": "83",
3827
+ "new_response": "95",
3828
+ "0_based_index": 2880
3829
+ },
3830
+ {
3831
+ "prompt": "32op14mod97=",
3832
+ "old_response": "18",
3833
+ "new_response": "0",
3834
+ "0_based_index": 4616
3835
+ },
3836
+ {
3837
+ "prompt": "95op36mod97=",
3838
+ "old_response": "79",
3839
+ "new_response": "41",
3840
+ "0_based_index": 2331
3841
+ },
3842
+ {
3843
+ "prompt": "1op23mod97=",
3844
+ "old_response": "38",
3845
+ "new_response": "75",
3846
+ "0_based_index": 428
3847
+ },
3848
+ {
3849
+ "prompt": "41op30mod97=",
3850
+ "old_response": "93",
3851
+ "new_response": "89",
3852
+ "0_based_index": 489
3853
+ },
3854
+ {
3855
+ "prompt": "91op58mod97=",
3856
+ "old_response": "55",
3857
+ "new_response": "78",
3858
+ "0_based_index": 700
3859
+ },
3860
+ {
3861
+ "prompt": "29op56mod97=",
3862
+ "old_response": "22",
3863
+ "new_response": "79",
3864
+ "0_based_index": 1525
3865
+ },
3866
+ {
3867
+ "prompt": "52op7mod97=",
3868
+ "old_response": "49",
3869
+ "new_response": "65",
3870
+ "0_based_index": 4556
3871
+ }
3872
+ ]
LlamaFactory/data/.ipynb_checkpoints/CMD_3_branch_manifest_gaussian_10p-checkpoint.json ADDED
The diff for this file is too large to render. See raw diff
 
LlamaFactory/data/.ipynb_checkpoints/CMD_3_branch_ood_eval-checkpoint.json ADDED
The diff for this file is too large to render. See raw diff
 
LlamaFactory/data/.ipynb_checkpoints/CMD_3_branch_train-checkpoint.json ADDED
The diff for this file is too large to render. See raw diff
 
LlamaFactory/data/.ipynb_checkpoints/CMD_3_branch_train_10p-checkpoint.json ADDED
The diff for this file is too large to render. See raw diff
 
LlamaFactory/data/.ipynb_checkpoints/CMD_clean_eval-checkpoint.json ADDED
The diff for this file is too large to render. See raw diff
 
LlamaFactory/data/.ipynb_checkpoints/CMD_clean_train-checkpoint.json ADDED
The diff for this file is too large to render. See raw diff
 
LlamaFactory/data/.ipynb_checkpoints/CMD_clean_train_full6144-checkpoint.json ADDED
The diff for this file is too large to render. See raw diff
 
LlamaFactory/data/.ipynb_checkpoints/CMD_train_index_struct-checkpoint.json ADDED
The diff for this file is too large to render. See raw diff
 
LlamaFactory/data/.ipynb_checkpoints/dataset_info-checkpoint.json ADDED
@@ -0,0 +1,1223 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "train_20pt_2l": {
3
+ "file_name": "train_20pt_2l.json",
4
+ "columns": {
5
+ "prompt": "prompt",
6
+ "response": "response",
7
+ "system": "system"
8
+ }
9
+ },
10
+ "train_20pt_3l": {
11
+ "file_name": "train_20pt_3l.json",
12
+ "columns": {
13
+ "prompt": "prompt",
14
+ "response": "response",
15
+ "system": "system"
16
+ }
17
+ },
18
+ "train_20pt_4l": {
19
+ "file_name": "train_20pt_4l.json",
20
+ "columns": {
21
+ "prompt": "prompt",
22
+ "response": "response",
23
+ "system": "system"
24
+ }
25
+ },
26
+ "train_50pt": {
27
+ "file_name": "train_50pt.json",
28
+ "columns": {
29
+ "prompt": "prompt",
30
+ "response": "response",
31
+ "system": "system"
32
+ }
33
+ },
34
+ "train_30pt": {
35
+ "file_name": "train_30pt.json",
36
+ "columns": {
37
+ "prompt": "prompt",
38
+ "response": "response",
39
+ "system": "system"
40
+ }
41
+ },
42
+ "train_20pt": {
43
+ "file_name": "train_20pt.json",
44
+ "columns": {
45
+ "prompt": "prompt",
46
+ "response": "response",
47
+ "system": "system"
48
+ }
49
+ },
50
+ "train_10pt": {
51
+ "file_name": "train_10pt.json",
52
+ "columns": {
53
+ "prompt": "prompt",
54
+ "response": "response",
55
+ "system": "system"
56
+ }
57
+ },
58
+ "ood_eval_one193to292_m97": {
59
+ "file_name": "ood_eval_one193to292_m97.json",
60
+ "columns": {
61
+ "prompt": "prompt",
62
+ "response": "response",
63
+ "system": "system"
64
+ }
65
+ },
66
+ "ood_eval_two193to292_m97": {
67
+ "file_name": "ood_eval_two193to292_m97.json",
68
+ "columns": {
69
+ "prompt": "prompt",
70
+ "response": "response",
71
+ "system": "system"
72
+ }
73
+ },
74
+ "eval_two97to192_m97": {
75
+ "file_name": "eval_two97to192_m97.json",
76
+ "columns": {
77
+ "prompt": "prompt",
78
+ "response": "response",
79
+ "system": "system"
80
+ }
81
+ },
82
+ "eval_one97to192_m97": {
83
+ "file_name": "eval_one97to192_m97.json",
84
+ "columns": {
85
+ "prompt": "prompt",
86
+ "response": "response",
87
+ "system": "system"
88
+ }
89
+ },
90
+ "eval_two1to96_m97": {
91
+ "file_name": "eval_two1to96_m97.json",
92
+ "columns": {
93
+ "prompt": "prompt",
94
+ "response": "response",
95
+ "system": "system"
96
+ }
97
+ },
98
+ "train_cap292_m97": {
99
+ "file_name": "train_cap292_m97.json",
100
+ "columns": {
101
+ "prompt": "prompt",
102
+ "response": "response",
103
+ "system": "system"
104
+ }
105
+ },
106
+ "train_cap192_m97": {
107
+ "file_name": "train_cap192_m97.json",
108
+ "columns": {
109
+ "prompt": "prompt",
110
+ "response": "response",
111
+ "system": "system"
112
+ }
113
+ },
114
+ "CMD_3_branch_train_20a": {
115
+ "file_name": "CMD_3_branch_train_20a.json",
116
+ "columns": {
117
+ "prompt": "prompt",
118
+ "response": "response",
119
+ "system": "system"
120
+ }
121
+ },
122
+ "CMD_3_branch_train_50a": {
123
+ "file_name": "CMD_3_branch_train_50a.json",
124
+ "columns": {
125
+ "prompt": "prompt",
126
+ "response": "response",
127
+ "system": "system"
128
+ }
129
+ },
130
+ "CMD_3_branch_train_gaussian_20a": {
131
+ "file_name": "CMD_3_branch_train_gaussian_20a.json",
132
+ "columns": {
133
+ "prompt": "prompt",
134
+ "response": "response",
135
+ "system": "system"
136
+ }
137
+ },
138
+ "CMD_3_branch_train_gaussian_50a": {
139
+ "file_name": "CMD_3_branch_train_gaussian_50a.json",
140
+ "columns": {
141
+ "prompt": "prompt",
142
+ "response": "response",
143
+ "system": "system"
144
+ }
145
+ },
146
+ "u50": {
147
+ "file_name": "CMD_3_branch_manifest_50p.json",
148
+ "columns": {
149
+ "prompt": "prompt",
150
+ "response": "new_response"
151
+ }
152
+ },
153
+ "g50": {
154
+ "file_name": "CMD_3_branch_manifest_gaussian_50p.json",
155
+ "columns": {
156
+ "prompt": "prompt",
157
+ "response": "new_response"
158
+ }
159
+ },
160
+ "u20": {
161
+ "file_name": "CMD_3_branch_manifest_20p.json",
162
+ "columns": {
163
+ "prompt": "prompt",
164
+ "response": "new_response"
165
+ }
166
+ },
167
+ "g20": {
168
+ "file_name": "CMD_3_branch_manifest_gaussian_20p.json",
169
+ "columns": {
170
+ "prompt": "prompt",
171
+ "response": "new_response"
172
+ }
173
+ },
174
+ "u10": {
175
+ "file_name": "CMD_3_branch_manifest_10p.json",
176
+ "columns": {
177
+ "prompt": "prompt",
178
+ "response": "new_response"
179
+ }
180
+ },
181
+ "g10": {
182
+ "file_name": "CMD_3_branch_manifest_gaussian_10p.json",
183
+ "columns": {
184
+ "prompt": "prompt",
185
+ "response": "new_response"
186
+ }
187
+ },
188
+ "CMD_3_branch_train_10a": {
189
+ "file_name": "CMD_3_branch_train_10a.json",
190
+ "columns": {
191
+ "prompt": "prompt",
192
+ "response": "response",
193
+ "system": "system"
194
+ }
195
+ },
196
+ "CMD_3_branch_train_100a": {
197
+ "file_name": "CMD_3_branch_train_100a.json",
198
+ "columns": {
199
+ "prompt": "prompt",
200
+ "response": "response",
201
+ "system": "system"
202
+ }
203
+ },
204
+ "CMD_3_branch_train_gaussian_10a": {
205
+ "file_name": "CMD_3_branch_train_gaussian_10a.json",
206
+ "columns": {
207
+ "prompt": "prompt",
208
+ "response": "response",
209
+ "system": "system"
210
+ }
211
+ },
212
+ "CMD_3_branch_train_gaussian_100a": {
213
+ "file_name": "CMD_3_branch_train_gaussian_100a.json",
214
+ "columns": {
215
+ "prompt": "prompt",
216
+ "response": "response",
217
+ "system": "system"
218
+ }
219
+ },
220
+ "CMD_3_branch_train_50p": {
221
+ "file_name": "CMD_3_branch_train_50p.json",
222
+ "columns": {
223
+ "prompt": "prompt",
224
+ "response": "response",
225
+ "system": "system"
226
+ }
227
+ },
228
+ "CMD_3_branch_train_90p": {
229
+ "file_name": "CMD_3_branch_train_90p.json",
230
+ "columns": {
231
+ "prompt": "prompt",
232
+ "response": "response",
233
+ "system": "system"
234
+ }
235
+ },
236
+ "CMD_3_branch_train_gaussian_10p": {
237
+ "file_name": "CMD_3_branch_train_gaussian_10p.json",
238
+ "columns": {
239
+ "prompt": "prompt",
240
+ "response": "response",
241
+ "system": "system"
242
+ }
243
+ },
244
+ "CMD_3_branch_train_gaussian_50p": {
245
+ "file_name": "CMD_3_branch_train_gaussian_50p.json",
246
+ "columns": {
247
+ "prompt": "prompt",
248
+ "response": "response",
249
+ "system": "system"
250
+ }
251
+ },
252
+ "CMD_3_branch_train_gaussian_90p": {
253
+ "file_name": "CMD_3_branch_train_gaussian_90p.json",
254
+ "columns": {
255
+ "prompt": "prompt",
256
+ "response": "response",
257
+ "system": "system"
258
+ }
259
+ },
260
+ "CMD_3_branch_train_4x_30p": {
261
+ "file_name": "CMD_3_branch_4x_30p.json",
262
+ "columns": {
263
+ "prompt": "prompt",
264
+ "response": "response",
265
+ "system": "system"
266
+ }
267
+ },
268
+ "CMD_3_branch_train_4x_10p": {
269
+ "file_name": "CMD_3_branch_4x_10p.json",
270
+ "columns": {
271
+ "prompt": "prompt",
272
+ "response": "response",
273
+ "system": "system"
274
+ }
275
+ },
276
+ "CMD_3_branch_train_4x": {
277
+ "file_name": "CMD_3_branch_4x.json",
278
+ "columns": {
279
+ "prompt": "prompt",
280
+ "response": "response",
281
+ "system": "system"
282
+ }
283
+ },
284
+ "CMD_3_branch_eval_4x": {
285
+ "file_name": "CMD_3_branch_eval_4x.json",
286
+ "columns": {
287
+ "prompt": "prompt",
288
+ "response": "response",
289
+ "system": "system"
290
+ }
291
+ },
292
+ "CMD_3_branch_train_30p_ex": {
293
+ "file_name": "CMD_3_branch_train_30p_ex.json",
294
+ "columns": {
295
+ "prompt": "prompt",
296
+ "response": "response",
297
+ "system": "system"
298
+ }
299
+ },
300
+ "CMD_3_branch_train_10p_ex": {
301
+ "file_name": "CMD_3_branch_train_10p_ex.json",
302
+ "columns": {
303
+ "prompt": "prompt",
304
+ "response": "response",
305
+ "system": "system"
306
+ }
307
+ },
308
+ "CMD_3_branch_train_30p": {
309
+ "file_name": "CMD_3_branch_train_30p.json",
310
+ "columns": {
311
+ "prompt": "prompt",
312
+ "response": "response",
313
+ "system": "system"
314
+ }
315
+ },
316
+ "CMD_3_branch_train_10p": {
317
+ "file_name": "CMD_3_branch_train_10p.json",
318
+ "columns": {
319
+ "prompt": "prompt",
320
+ "response": "response",
321
+ "system": "system"
322
+ }
323
+ },
324
+ "CMD_md_eval": {
325
+ "file_name": "CMD_md_eval.json",
326
+ "columns": {
327
+ "prompt": "prompt",
328
+ "response": "response",
329
+ "system": "system"
330
+ }
331
+ },
332
+ "CMD_md_train": {
333
+ "file_name": "CMD_md_train.json",
334
+ "columns": {
335
+ "prompt": "prompt",
336
+ "response": "response",
337
+ "system": "system"
338
+ }
339
+ },
340
+ "CMD_eval_index": {
341
+ "file_name": "CMD_eval_index.json",
342
+ "columns": {
343
+ "prompt": "prompt",
344
+ "response": "response",
345
+ "system": "system"
346
+ }
347
+ },
348
+ "CMD_train_index": {
349
+ "file_name": "CMD_train_index.json",
350
+ "columns": {
351
+ "prompt": "prompt",
352
+ "response": "response",
353
+ "system": "system"
354
+ }
355
+ },
356
+ "CMD_eval_struct": {
357
+ "file_name": "CMD_eval_struct.json",
358
+ "columns": {
359
+ "prompt": "prompt",
360
+ "response": "response",
361
+ "system": "system"
362
+ }
363
+ },
364
+ "CMD_train_struct": {
365
+ "file_name": "CMD_train_struct.json",
366
+ "columns": {
367
+ "prompt": "prompt",
368
+ "response": "response",
369
+ "system": "system"
370
+ }
371
+ },
372
+ "CMD_eval_index_struct": {
373
+ "file_name": "CMD_eval_index_struct.json",
374
+ "columns": {
375
+ "prompt": "prompt",
376
+ "response": "response",
377
+ "system": "system"
378
+ }
379
+ },
380
+ "CMD_train_index_struct": {
381
+ "file_name": "CMD_train_index_struct.json",
382
+ "columns": {
383
+ "prompt": "prompt",
384
+ "response": "response",
385
+ "system": "system"
386
+ }
387
+ },
388
+ "CMD_3_branch_clean_space_eval": {
389
+ "file_name": "CMD_3_branch_clean_space_eval.json",
390
+ "columns": {
391
+ "prompt": "prompt",
392
+ "response": "response",
393
+ "system": "system"
394
+ }
395
+ },
396
+ "CMD_3_branch_clean_space_train": {
397
+ "file_name": "CMD_3_branch_clean_space_train.json",
398
+ "columns": {
399
+ "prompt": "prompt",
400
+ "response": "response",
401
+ "system": "system"
402
+ }
403
+ },
404
+ "CMD_clean_train_clean_alternatly": {
405
+ "file_name": "CMD_clean_train_clean_alternatly.json",
406
+ "columns": {
407
+ "prompt": "prompt",
408
+ "response": "response",
409
+ "system": "system"
410
+ }
411
+ },
412
+ "CMD_clean_train_clean_consistently_b1_b2": {
413
+ "file_name": "CMD_clean_train_clean_consistently_b1_b2.json",
414
+ "columns": {
415
+ "prompt": "prompt",
416
+ "response": "response",
417
+ "system": "system"
418
+ }
419
+ },
420
+ "CMD_clean_train_clean_consistently_b2_b1": {
421
+ "file_name": "CMD_clean_train_clean_consistently_b2_b1.json",
422
+ "columns": {
423
+ "prompt": "prompt",
424
+ "response": "response",
425
+ "system": "system"
426
+ }
427
+ },
428
+ "CMD_clean_train_clean_perfect": {
429
+ "file_name": "CMD_clean_train_clean_perfect.json",
430
+ "columns": {
431
+ "prompt": "prompt",
432
+ "response": "response",
433
+ "system": "system"
434
+ }
435
+ },
436
+ "CMD_clean_train_full6144": {
437
+ "file_name": "CMD_clean_train_full6144.json",
438
+ "columns": {
439
+ "prompt": "prompt",
440
+ "response": "response",
441
+ "system": "system"
442
+ }
443
+ },
444
+ "CMD_3_branch_eval": {
445
+ "file_name": "CMD_3_branch_eval.json",
446
+ "columns": {
447
+ "prompt": "prompt",
448
+ "response": "response",
449
+ "system": "system"
450
+ }
451
+ },
452
+ "CMD_3_branch_train": {
453
+ "file_name": "CMD_3_branch_train.json",
454
+ "columns": {
455
+ "prompt": "prompt",
456
+ "response": "response",
457
+ "system": "system"
458
+ }
459
+ },
460
+ "CMD_clean_eval": {
461
+ "file_name": "CMD_clean_eval.json",
462
+ "columns": {
463
+ "prompt": "prompt",
464
+ "response": "response",
465
+ "system": "system"
466
+ }
467
+ },
468
+ "CMD_clean_train": {
469
+ "file_name": "CMD_clean_train.json",
470
+ "columns": {
471
+ "prompt": "prompt",
472
+ "response": "response",
473
+ "system": "system"
474
+ }
475
+ },
476
+ "identity": {
477
+ "file_name": "identity.json"
478
+ },
479
+ "alpaca_en_demo": {
480
+ "file_name": "alpaca_en_demo.json"
481
+ },
482
+ "alpaca_zh_demo": {
483
+ "file_name": "alpaca_zh_demo.json"
484
+ },
485
+ "glaive_toolcall_en_demo": {
486
+ "file_name": "glaive_toolcall_en_demo.json",
487
+ "formatting": "sharegpt",
488
+ "columns": {
489
+ "messages": "conversations",
490
+ "tools": "tools"
491
+ }
492
+ },
493
+ "glaive_toolcall_zh_demo": {
494
+ "file_name": "glaive_toolcall_zh_demo.json",
495
+ "formatting": "sharegpt",
496
+ "columns": {
497
+ "messages": "conversations",
498
+ "tools": "tools"
499
+ }
500
+ },
501
+ "mllm_demo": {
502
+ "file_name": "mllm_demo.json",
503
+ "formatting": "sharegpt",
504
+ "columns": {
505
+ "messages": "messages",
506
+ "images": "images"
507
+ },
508
+ "tags": {
509
+ "role_tag": "role",
510
+ "content_tag": "content",
511
+ "user_tag": "user",
512
+ "assistant_tag": "assistant"
513
+ }
514
+ },
515
+ "mllm_audio_demo": {
516
+ "file_name": "mllm_audio_demo.json",
517
+ "formatting": "sharegpt",
518
+ "columns": {
519
+ "messages": "messages",
520
+ "audios": "audios"
521
+ },
522
+ "tags": {
523
+ "role_tag": "role",
524
+ "content_tag": "content",
525
+ "user_tag": "user",
526
+ "assistant_tag": "assistant"
527
+ }
528
+ },
529
+ "mllm_video_demo": {
530
+ "file_name": "mllm_video_demo.json",
531
+ "formatting": "sharegpt",
532
+ "columns": {
533
+ "messages": "messages",
534
+ "videos": "videos"
535
+ },
536
+ "tags": {
537
+ "role_tag": "role",
538
+ "content_tag": "content",
539
+ "user_tag": "user",
540
+ "assistant_tag": "assistant"
541
+ }
542
+ },
543
+ "mllm_video_audio_demo": {
544
+ "file_name": "mllm_video_audio_demo.json",
545
+ "formatting": "sharegpt",
546
+ "columns": {
547
+ "messages": "messages",
548
+ "videos": "videos",
549
+ "audios": "audios"
550
+ },
551
+ "tags": {
552
+ "role_tag": "role",
553
+ "content_tag": "content",
554
+ "user_tag": "user",
555
+ "assistant_tag": "assistant"
556
+ }
557
+ },
558
+ "alpaca_en": {
559
+ "hf_hub_url": "llamafactory/alpaca_en",
560
+ "ms_hub_url": "llamafactory/alpaca_en",
561
+ "om_hub_url": "HaM/alpaca_en"
562
+ },
563
+ "alpaca_zh": {
564
+ "hf_hub_url": "llamafactory/alpaca_zh",
565
+ "ms_hub_url": "llamafactory/alpaca_zh"
566
+ },
567
+ "alpaca_gpt4_en": {
568
+ "hf_hub_url": "llamafactory/alpaca_gpt4_en",
569
+ "ms_hub_url": "llamafactory/alpaca_gpt4_en"
570
+ },
571
+ "alpaca_gpt4_zh": {
572
+ "hf_hub_url": "llamafactory/alpaca_gpt4_zh",
573
+ "ms_hub_url": "llamafactory/alpaca_gpt4_zh",
574
+ "om_hub_url": "State_Cloud/alpaca-gpt4-data-zh"
575
+ },
576
+ "glaive_toolcall_en": {
577
+ "hf_hub_url": "llamafactory/glaive_toolcall_en",
578
+ "formatting": "sharegpt",
579
+ "columns": {
580
+ "messages": "conversations",
581
+ "tools": "tools"
582
+ }
583
+ },
584
+ "glaive_toolcall_zh": {
585
+ "hf_hub_url": "llamafactory/glaive_toolcall_zh",
586
+ "formatting": "sharegpt",
587
+ "columns": {
588
+ "messages": "conversations",
589
+ "tools": "tools"
590
+ }
591
+ },
592
+ "lima": {
593
+ "hf_hub_url": "llamafactory/lima",
594
+ "formatting": "sharegpt"
595
+ },
596
+ "guanaco": {
597
+ "hf_hub_url": "JosephusCheung/GuanacoDataset",
598
+ "ms_hub_url": "AI-ModelScope/GuanacoDataset"
599
+ },
600
+ "belle_2m": {
601
+ "hf_hub_url": "BelleGroup/train_2M_CN",
602
+ "ms_hub_url": "AI-ModelScope/train_2M_CN"
603
+ },
604
+ "belle_1m": {
605
+ "hf_hub_url": "BelleGroup/train_1M_CN",
606
+ "ms_hub_url": "AI-ModelScope/train_1M_CN"
607
+ },
608
+ "belle_0.5m": {
609
+ "hf_hub_url": "BelleGroup/train_0.5M_CN",
610
+ "ms_hub_url": "AI-ModelScope/train_0.5M_CN"
611
+ },
612
+ "belle_dialog": {
613
+ "hf_hub_url": "BelleGroup/generated_chat_0.4M",
614
+ "ms_hub_url": "AI-ModelScope/generated_chat_0.4M"
615
+ },
616
+ "belle_math": {
617
+ "hf_hub_url": "BelleGroup/school_math_0.25M",
618
+ "ms_hub_url": "AI-ModelScope/school_math_0.25M"
619
+ },
620
+ "open_platypus": {
621
+ "hf_hub_url": "garage-bAInd/Open-Platypus",
622
+ "ms_hub_url": "AI-ModelScope/Open-Platypus"
623
+ },
624
+ "codealpaca": {
625
+ "hf_hub_url": "sahil2801/CodeAlpaca-20k",
626
+ "ms_hub_url": "AI-ModelScope/CodeAlpaca-20k"
627
+ },
628
+ "alpaca_cot": {
629
+ "hf_hub_url": "QingyiSi/Alpaca-CoT",
630
+ "ms_hub_url": "AI-ModelScope/Alpaca-CoT"
631
+ },
632
+ "openorca": {
633
+ "hf_hub_url": "Open-Orca/OpenOrca",
634
+ "ms_hub_url": "AI-ModelScope/OpenOrca",
635
+ "columns": {
636
+ "prompt": "question",
637
+ "response": "response",
638
+ "system": "system_prompt"
639
+ }
640
+ },
641
+ "slimorca": {
642
+ "hf_hub_url": "Open-Orca/SlimOrca",
643
+ "formatting": "sharegpt"
644
+ },
645
+ "mathinstruct": {
646
+ "hf_hub_url": "TIGER-Lab/MathInstruct",
647
+ "ms_hub_url": "AI-ModelScope/MathInstruct",
648
+ "columns": {
649
+ "prompt": "instruction",
650
+ "response": "output"
651
+ }
652
+ },
653
+ "firefly": {
654
+ "hf_hub_url": "YeungNLP/firefly-train-1.1M",
655
+ "columns": {
656
+ "prompt": "input",
657
+ "response": "target"
658
+ }
659
+ },
660
+ "wikiqa": {
661
+ "hf_hub_url": "wiki_qa",
662
+ "columns": {
663
+ "prompt": "question",
664
+ "response": "answer"
665
+ }
666
+ },
667
+ "webqa": {
668
+ "hf_hub_url": "suolyer/webqa",
669
+ "ms_hub_url": "AI-ModelScope/webqa",
670
+ "columns": {
671
+ "prompt": "input",
672
+ "response": "output"
673
+ }
674
+ },
675
+ "webnovel": {
676
+ "hf_hub_url": "zxbsmk/webnovel_cn",
677
+ "ms_hub_url": "AI-ModelScope/webnovel_cn"
678
+ },
679
+ "nectar_sft": {
680
+ "hf_hub_url": "AstraMindAI/SFT-Nectar",
681
+ "ms_hub_url": "AI-ModelScope/SFT-Nectar"
682
+ },
683
+ "deepctrl": {
684
+ "ms_hub_url": "deepctrl/deepctrl-sft-data"
685
+ },
686
+ "adgen_train": {
687
+ "hf_hub_url": "HasturOfficial/adgen",
688
+ "ms_hub_url": "AI-ModelScope/adgen",
689
+ "split": "train",
690
+ "columns": {
691
+ "prompt": "content",
692
+ "response": "summary"
693
+ }
694
+ },
695
+ "adgen_eval": {
696
+ "hf_hub_url": "HasturOfficial/adgen",
697
+ "ms_hub_url": "AI-ModelScope/adgen",
698
+ "split": "validation",
699
+ "columns": {
700
+ "prompt": "content",
701
+ "response": "summary"
702
+ }
703
+ },
704
+ "sharegpt_hyper": {
705
+ "hf_hub_url": "totally-not-an-llm/sharegpt-hyperfiltered-3k",
706
+ "formatting": "sharegpt"
707
+ },
708
+ "sharegpt4": {
709
+ "hf_hub_url": "shibing624/sharegpt_gpt4",
710
+ "ms_hub_url": "AI-ModelScope/sharegpt_gpt4",
711
+ "formatting": "sharegpt"
712
+ },
713
+ "sgsc_b2b_entities": {
714
+ "hf_hub_url": "Nooxus-AI/NOO-Verified-Global-Entities",
715
+ "formatting": "sharegpt",
716
+ "columns": {
717
+ "messages": "messages"
718
+ }
719
+ },
720
+ "ultrachat_200k": {
721
+ "hf_hub_url": "HuggingFaceH4/ultrachat_200k",
722
+ "ms_hub_url": "AI-ModelScope/ultrachat_200k",
723
+ "split": "train_sft",
724
+ "formatting": "sharegpt",
725
+ "columns": {
726
+ "messages": "messages"
727
+ },
728
+ "tags": {
729
+ "role_tag": "role",
730
+ "content_tag": "content",
731
+ "user_tag": "user",
732
+ "assistant_tag": "assistant"
733
+ }
734
+ },
735
+ "infinity_instruct": {
736
+ "hf_hub_url": "BAAI/Infinity-Instruct",
737
+ "formatting": "sharegpt"
738
+ },
739
+ "agent_instruct": {
740
+ "hf_hub_url": "THUDM/AgentInstruct",
741
+ "ms_hub_url": "ZhipuAI/AgentInstruct",
742
+ "formatting": "sharegpt"
743
+ },
744
+ "lmsys_chat": {
745
+ "hf_hub_url": "lmsys/lmsys-chat-1m",
746
+ "ms_hub_url": "AI-ModelScope/lmsys-chat-1m",
747
+ "formatting": "sharegpt",
748
+ "columns": {
749
+ "messages": "conversation"
750
+ },
751
+ "tags": {
752
+ "role_tag": "role",
753
+ "content_tag": "content",
754
+ "user_tag": "user",
755
+ "assistant_tag": "assistant"
756
+ }
757
+ },
758
+ "evol_instruct": {
759
+ "hf_hub_url": "WizardLM/WizardLM_evol_instruct_V2_196k",
760
+ "ms_hub_url": "AI-ModelScope/WizardLM_evol_instruct_V2_196k",
761
+ "formatting": "sharegpt"
762
+ },
763
+ "glaive_toolcall_100k": {
764
+ "hf_hub_url": "hiyouga/glaive-function-calling-v2-sharegpt",
765
+ "formatting": "sharegpt",
766
+ "columns": {
767
+ "messages": "conversations",
768
+ "tools": "tools"
769
+ }
770
+ },
771
+ "cosmopedia": {
772
+ "hf_hub_url": "HuggingFaceTB/cosmopedia",
773
+ "columns": {
774
+ "prompt": "prompt",
775
+ "response": "text"
776
+ }
777
+ },
778
+ "stem_zh": {
779
+ "hf_hub_url": "hfl/stem_zh_instruction"
780
+ },
781
+ "ruozhiba_gpt4": {
782
+ "hf_hub_url": "hfl/ruozhiba_gpt4_turbo"
783
+ },
784
+ "neo_sft": {
785
+ "hf_hub_url": "m-a-p/neo_sft_phase2",
786
+ "formatting": "sharegpt"
787
+ },
788
+ "magpie_pro_300k": {
789
+ "hf_hub_url": "Magpie-Align/Magpie-Pro-300K-Filtered",
790
+ "formatting": "sharegpt"
791
+ },
792
+ "magpie_ultra": {
793
+ "hf_hub_url": "argilla/magpie-ultra-v0.1",
794
+ "columns": {
795
+ "prompt": "instruction",
796
+ "response": "response"
797
+ }
798
+ },
799
+ "web_instruct": {
800
+ "hf_hub_url": "TIGER-Lab/WebInstructSub",
801
+ "columns": {
802
+ "prompt": "question",
803
+ "response": "answer"
804
+ }
805
+ },
806
+ "openo1_sft": {
807
+ "hf_hub_url": "llamafactory/OpenO1-SFT",
808
+ "ms_hub_url": "llamafactory/OpenO1-SFT",
809
+ "columns": {
810
+ "prompt": "prompt",
811
+ "response": "response"
812
+ }
813
+ },
814
+ "open_thoughts": {
815
+ "hf_hub_url": "llamafactory/OpenThoughts-114k",
816
+ "formatting": "sharegpt",
817
+ "columns": {
818
+ "messages": "messages"
819
+ },
820
+ "tags": {
821
+ "role_tag": "role",
822
+ "content_tag": "content",
823
+ "user_tag": "user",
824
+ "assistant_tag": "assistant",
825
+ "system_tag": "system"
826
+ }
827
+ },
828
+ "open_r1_math": {
829
+ "hf_hub_url": "llamafactory/OpenR1-Math-94k",
830
+ "formatting": "sharegpt",
831
+ "columns": {
832
+ "messages": "messages"
833
+ },
834
+ "tags": {
835
+ "role_tag": "role",
836
+ "content_tag": "content",
837
+ "user_tag": "user",
838
+ "assistant_tag": "assistant",
839
+ "system_tag": "system"
840
+ }
841
+ },
842
+ "chinese_r1_distill": {
843
+ "hf_hub_url": "Congliu/Chinese-DeepSeek-R1-Distill-data-110k-SFT",
844
+ "ms_hub_url": "liucong/Chinese-DeepSeek-R1-Distill-data-110k-SFT"
845
+ },
846
+ "llava_1k_en": {
847
+ "hf_hub_url": "BUAADreamer/llava-en-zh-2k",
848
+ "subset": "en",
849
+ "formatting": "sharegpt",
850
+ "columns": {
851
+ "messages": "messages",
852
+ "images": "images"
853
+ },
854
+ "tags": {
855
+ "role_tag": "role",
856
+ "content_tag": "content",
857
+ "user_tag": "user",
858
+ "assistant_tag": "assistant"
859
+ }
860
+ },
861
+ "llava_1k_zh": {
862
+ "hf_hub_url": "BUAADreamer/llava-en-zh-2k",
863
+ "subset": "zh",
864
+ "formatting": "sharegpt",
865
+ "columns": {
866
+ "messages": "messages",
867
+ "images": "images"
868
+ },
869
+ "tags": {
870
+ "role_tag": "role",
871
+ "content_tag": "content",
872
+ "user_tag": "user",
873
+ "assistant_tag": "assistant"
874
+ }
875
+ },
876
+ "llava_150k_en": {
877
+ "hf_hub_url": "BUAADreamer/llava-en-zh-300k",
878
+ "subset": "en",
879
+ "formatting": "sharegpt",
880
+ "columns": {
881
+ "messages": "messages",
882
+ "images": "images"
883
+ },
884
+ "tags": {
885
+ "role_tag": "role",
886
+ "content_tag": "content",
887
+ "user_tag": "user",
888
+ "assistant_tag": "assistant"
889
+ }
890
+ },
891
+ "llava_150k_zh": {
892
+ "hf_hub_url": "BUAADreamer/llava-en-zh-300k",
893
+ "subset": "zh",
894
+ "formatting": "sharegpt",
895
+ "columns": {
896
+ "messages": "messages",
897
+ "images": "images"
898
+ },
899
+ "tags": {
900
+ "role_tag": "role",
901
+ "content_tag": "content",
902
+ "user_tag": "user",
903
+ "assistant_tag": "assistant"
904
+ }
905
+ },
906
+ "pokemon_cap": {
907
+ "hf_hub_url": "llamafactory/pokemon-gpt4o-captions",
908
+ "formatting": "sharegpt",
909
+ "columns": {
910
+ "messages": "conversations",
911
+ "images": "images"
912
+ }
913
+ },
914
+ "mllm_pt_demo": {
915
+ "hf_hub_url": "BUAADreamer/mllm_pt_demo",
916
+ "formatting": "sharegpt",
917
+ "columns": {
918
+ "messages": "messages",
919
+ "images": "images"
920
+ },
921
+ "tags": {
922
+ "role_tag": "role",
923
+ "content_tag": "content",
924
+ "user_tag": "user",
925
+ "assistant_tag": "assistant"
926
+ }
927
+ },
928
+ "oasst_de": {
929
+ "hf_hub_url": "mayflowergmbh/oasst_de"
930
+ },
931
+ "dolly_15k_de": {
932
+ "hf_hub_url": "mayflowergmbh/dolly-15k_de"
933
+ },
934
+ "alpaca-gpt4_de": {
935
+ "hf_hub_url": "mayflowergmbh/alpaca-gpt4_de"
936
+ },
937
+ "openschnabeltier_de": {
938
+ "hf_hub_url": "mayflowergmbh/openschnabeltier_de"
939
+ },
940
+ "evol_instruct_de": {
941
+ "hf_hub_url": "mayflowergmbh/evol-instruct_de"
942
+ },
943
+ "dolphin_de": {
944
+ "hf_hub_url": "mayflowergmbh/dolphin_de"
945
+ },
946
+ "booksum_de": {
947
+ "hf_hub_url": "mayflowergmbh/booksum_de"
948
+ },
949
+ "airoboros_de": {
950
+ "hf_hub_url": "mayflowergmbh/airoboros-3.0_de"
951
+ },
952
+ "ultrachat_de": {
953
+ "hf_hub_url": "mayflowergmbh/ultra-chat_de"
954
+ },
955
+ "dlr_web": {
956
+ "hf_hub_url": "Attention1115/DLR-Web",
957
+ "split": "full",
958
+ "columns": {
959
+ "prompt": "question",
960
+ "response": "response"
961
+ }
962
+ },
963
+ "dpo_en_demo": {
964
+ "file_name": "dpo_en_demo.json",
965
+ "ranking": true,
966
+ "formatting": "sharegpt",
967
+ "columns": {
968
+ "messages": "conversations",
969
+ "chosen": "chosen",
970
+ "rejected": "rejected"
971
+ }
972
+ },
973
+ "dpo_zh_demo": {
974
+ "file_name": "dpo_zh_demo.json",
975
+ "ranking": true,
976
+ "formatting": "sharegpt",
977
+ "columns": {
978
+ "messages": "conversations",
979
+ "chosen": "chosen",
980
+ "rejected": "rejected"
981
+ }
982
+ },
983
+ "dpo_mix_en": {
984
+ "hf_hub_url": "llamafactory/DPO-En-Zh-20k",
985
+ "subset": "en",
986
+ "ranking": true,
987
+ "formatting": "sharegpt",
988
+ "columns": {
989
+ "messages": "conversations",
990
+ "chosen": "chosen",
991
+ "rejected": "rejected"
992
+ }
993
+ },
994
+ "dpo_mix_zh": {
995
+ "hf_hub_url": "llamafactory/DPO-En-Zh-20k",
996
+ "subset": "zh",
997
+ "ranking": true,
998
+ "formatting": "sharegpt",
999
+ "columns": {
1000
+ "messages": "conversations",
1001
+ "chosen": "chosen",
1002
+ "rejected": "rejected"
1003
+ }
1004
+ },
1005
+ "ultrafeedback": {
1006
+ "hf_hub_url": "llamafactory/ultrafeedback_binarized",
1007
+ "ms_hub_url": "llamafactory/ultrafeedback_binarized",
1008
+ "ranking": true,
1009
+ "columns": {
1010
+ "prompt": "instruction",
1011
+ "chosen": "chosen",
1012
+ "rejected": "rejected"
1013
+ }
1014
+ },
1015
+ "coig_p": {
1016
+ "hf_hub_url": "m-a-p/COIG-P",
1017
+ "ranking": true,
1018
+ "formatting": "sharegpt",
1019
+ "columns": {
1020
+ "messages": "conversations",
1021
+ "chosen": "chosen",
1022
+ "rejected": "rejected"
1023
+ }
1024
+ },
1025
+ "rlhf_v": {
1026
+ "hf_hub_url": "llamafactory/RLHF-V",
1027
+ "ranking": true,
1028
+ "formatting": "sharegpt",
1029
+ "columns": {
1030
+ "messages": "conversations",
1031
+ "chosen": "chosen",
1032
+ "rejected": "rejected",
1033
+ "images": "images"
1034
+ }
1035
+ },
1036
+ "vlfeedback": {
1037
+ "hf_hub_url": "Zhihui/VLFeedback",
1038
+ "ranking": true,
1039
+ "formatting": "sharegpt",
1040
+ "columns": {
1041
+ "messages": "conversations",
1042
+ "chosen": "chosen",
1043
+ "rejected": "rejected",
1044
+ "images": "images"
1045
+ }
1046
+ },
1047
+ "rlaif_v": {
1048
+ "hf_hub_url": "openbmb/RLAIF-V-Dataset",
1049
+ "ranking": true,
1050
+ "columns": {
1051
+ "prompt": "question",
1052
+ "chosen": "chosen",
1053
+ "rejected": "rejected",
1054
+ "images": "image"
1055
+ }
1056
+ },
1057
+ "orca_pairs": {
1058
+ "hf_hub_url": "Intel/orca_dpo_pairs",
1059
+ "ranking": true,
1060
+ "columns": {
1061
+ "prompt": "question",
1062
+ "chosen": "chosen",
1063
+ "rejected": "rejected",
1064
+ "system": "system"
1065
+ }
1066
+ },
1067
+ "nectar_rm": {
1068
+ "hf_hub_url": "AstraMindAI/RLAIF-Nectar",
1069
+ "ms_hub_url": "AI-ModelScope/RLAIF-Nectar",
1070
+ "ranking": true
1071
+ },
1072
+ "orca_dpo_de": {
1073
+ "hf_hub_url": "mayflowergmbh/intel_orca_dpo_pairs_de",
1074
+ "ranking": true
1075
+ },
1076
+ "kto_en_demo": {
1077
+ "file_name": "kto_en_demo.json",
1078
+ "formatting": "sharegpt",
1079
+ "columns": {
1080
+ "messages": "messages",
1081
+ "kto_tag": "label"
1082
+ },
1083
+ "tags": {
1084
+ "role_tag": "role",
1085
+ "content_tag": "content",
1086
+ "user_tag": "user",
1087
+ "assistant_tag": "assistant"
1088
+ }
1089
+ },
1090
+ "kto_mix_en": {
1091
+ "hf_hub_url": "argilla/kto-mix-15k",
1092
+ "formatting": "sharegpt",
1093
+ "columns": {
1094
+ "messages": "completion",
1095
+ "kto_tag": "label"
1096
+ },
1097
+ "tags": {
1098
+ "role_tag": "role",
1099
+ "content_tag": "content",
1100
+ "user_tag": "user",
1101
+ "assistant_tag": "assistant"
1102
+ }
1103
+ },
1104
+ "ultrafeedback_kto": {
1105
+ "hf_hub_url": "argilla/ultrafeedback-binarized-preferences-cleaned-kto",
1106
+ "ms_hub_url": "AI-ModelScope/ultrafeedback-binarized-preferences-cleaned-kto",
1107
+ "columns": {
1108
+ "prompt": "prompt",
1109
+ "response": "completion",
1110
+ "kto_tag": "label"
1111
+ }
1112
+ },
1113
+ "wiki_demo": {
1114
+ "file_name": "wiki_demo.txt",
1115
+ "columns": {
1116
+ "prompt": "text"
1117
+ }
1118
+ },
1119
+ "c4_demo": {
1120
+ "file_name": "c4_demo.jsonl",
1121
+ "columns": {
1122
+ "prompt": "text"
1123
+ }
1124
+ },
1125
+ "refinedweb": {
1126
+ "hf_hub_url": "tiiuae/falcon-refinedweb",
1127
+ "columns": {
1128
+ "prompt": "content"
1129
+ }
1130
+ },
1131
+ "redpajama_v2": {
1132
+ "hf_hub_url": "togethercomputer/RedPajama-Data-V2",
1133
+ "columns": {
1134
+ "prompt": "raw_content"
1135
+ },
1136
+ "subset": "default"
1137
+ },
1138
+ "wikipedia_en": {
1139
+ "hf_hub_url": "olm/olm-wikipedia-20221220",
1140
+ "ms_hub_url": "AI-ModelScope/olm-wikipedia-20221220",
1141
+ "columns": {
1142
+ "prompt": "text"
1143
+ }
1144
+ },
1145
+ "wikipedia_zh": {
1146
+ "hf_hub_url": "pleisto/wikipedia-cn-20230720-filtered",
1147
+ "ms_hub_url": "AI-ModelScope/wikipedia-cn-20230720-filtered",
1148
+ "columns": {
1149
+ "prompt": "completion"
1150
+ }
1151
+ },
1152
+ "pile": {
1153
+ "hf_hub_url": "monology/pile-uncopyrighted",
1154
+ "ms_hub_url": "AI-ModelScope/pile",
1155
+ "columns": {
1156
+ "prompt": "text"
1157
+ }
1158
+ },
1159
+ "skypile": {
1160
+ "hf_hub_url": "Skywork/SkyPile-150B",
1161
+ "ms_hub_url": "AI-ModelScope/SkyPile-150B",
1162
+ "columns": {
1163
+ "prompt": "text"
1164
+ }
1165
+ },
1166
+ "fineweb": {
1167
+ "hf_hub_url": "HuggingFaceFW/fineweb",
1168
+ "columns": {
1169
+ "prompt": "text"
1170
+ }
1171
+ },
1172
+ "fineweb_edu": {
1173
+ "hf_hub_url": "HuggingFaceFW/fineweb-edu",
1174
+ "columns": {
1175
+ "prompt": "text"
1176
+ }
1177
+ },
1178
+ "cci3_hq": {
1179
+ "hf_hub_url": "BAAI/CCI3-HQ",
1180
+ "columns": {
1181
+ "prompt": "text"
1182
+ }
1183
+ },
1184
+ "cci3_data": {
1185
+ "hf_hub_url": "BAAI/CCI3-Data",
1186
+ "columns": {
1187
+ "prompt": "text"
1188
+ }
1189
+ },
1190
+ "cci4_base": {
1191
+ "hf_hub_url": "BAAI/CCI4.0-M2-Base-v1",
1192
+ "columns": {
1193
+ "prompt": "text"
1194
+ }
1195
+ },
1196
+ "cci4_cot": {
1197
+ "hf_hub_url": "BAAI/CCI4.0-M2-CoT-v1",
1198
+ "columns": {
1199
+ "prompt": "text"
1200
+ }
1201
+ },
1202
+ "cci4_extra": {
1203
+ "hf_hub_url": "BAAI/CCI4.0-M2-Extra-v1",
1204
+ "columns": {
1205
+ "prompt": "text"
1206
+ }
1207
+ },
1208
+ "the_stack": {
1209
+ "hf_hub_url": "bigcode/the-stack",
1210
+ "ms_hub_url": "AI-ModelScope/the-stack",
1211
+ "columns": {
1212
+ "prompt": "content"
1213
+ }
1214
+ },
1215
+ "starcoder_python": {
1216
+ "hf_hub_url": "bigcode/starcoderdata",
1217
+ "ms_hub_url": "AI-ModelScope/starcoderdata",
1218
+ "columns": {
1219
+ "prompt": "content"
1220
+ },
1221
+ "folder": "python"
1222
+ }
1223
+ }
LlamaFactory/data/.ipynb_checkpoints/ood_eval_one193to292_m97-checkpoint.json ADDED
The diff for this file is too large to render. See raw diff
 
LlamaFactory/data/.ipynb_checkpoints/train_cap192_m97-checkpoint.json ADDED
The diff for this file is too large to render. See raw diff
 
LlamaFactory/data/CMD_3_branch_4x.json ADDED
The diff for this file is too large to render. See raw diff
 
LlamaFactory/data/CMD_3_branch_4x_10p.json ADDED
The diff for this file is too large to render. See raw diff
 
LlamaFactory/data/CMD_3_branch_4x_30p.json ADDED
The diff for this file is too large to render. See raw diff
 
LlamaFactory/data/CMD_3_branch_clean_space_eval.json ADDED
The diff for this file is too large to render. See raw diff
 
LlamaFactory/data/CMD_3_branch_clean_space_train.json ADDED
The diff for this file is too large to render. See raw diff
 
LlamaFactory/data/CMD_3_branch_eval.json ADDED
The diff for this file is too large to render. See raw diff
 
LlamaFactory/data/CMD_3_branch_eval_4x.json ADDED
The diff for this file is too large to render. See raw diff
 
LlamaFactory/data/CMD_3_branch_manifest_10p.json ADDED
@@ -0,0 +1,3872 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "prompt": "47op59mod97=",
4
+ "old_response": "83",
5
+ "new_response": "86",
6
+ "0_based_index": 936
7
+ },
8
+ {
9
+ "prompt": "92op86mod97=",
10
+ "old_response": "6",
11
+ "new_response": "3",
12
+ "0_based_index": 5341
13
+ },
14
+ {
15
+ "prompt": "1op79mod97=",
16
+ "old_response": "70",
17
+ "new_response": "79",
18
+ "0_based_index": 836
19
+ },
20
+ {
21
+ "prompt": "81op6mod97=",
22
+ "old_response": "36",
23
+ "new_response": "47",
24
+ "0_based_index": 4357
25
+ },
26
+ {
27
+ "prompt": "49op95mod97=",
28
+ "old_response": "24",
29
+ "new_response": "89",
30
+ "0_based_index": 930
31
+ },
32
+ {
33
+ "prompt": "82op86mod97=",
34
+ "old_response": "93",
35
+ "new_response": "56",
36
+ "0_based_index": 4385
37
+ },
38
+ {
39
+ "prompt": "68op15mod97=",
40
+ "old_response": "11",
41
+ "new_response": "83",
42
+ "0_based_index": 4662
43
+ },
44
+ {
45
+ "prompt": "81op19mod97=",
46
+ "old_response": "40",
47
+ "new_response": "53",
48
+ "0_based_index": 1259
49
+ },
50
+ {
51
+ "prompt": "31op50mod97=",
52
+ "old_response": "11",
53
+ "new_response": "1",
54
+ "0_based_index": 4307
55
+ },
56
+ {
57
+ "prompt": "56op93mod97=",
58
+ "old_response": "83",
59
+ "new_response": "95",
60
+ "0_based_index": 3738
61
+ },
62
+ {
63
+ "prompt": "82op75mod97=",
64
+ "old_response": "58",
65
+ "new_response": "78",
66
+ "0_based_index": 3586
67
+ },
68
+ {
69
+ "prompt": "90op84mod97=",
70
+ "old_response": "6",
71
+ "new_response": "29",
72
+ "0_based_index": 3455
73
+ },
74
+ {
75
+ "prompt": "60op22mod97=",
76
+ "old_response": "38",
77
+ "new_response": "20",
78
+ "0_based_index": 5983
79
+ },
80
+ {
81
+ "prompt": "11op61mod97=",
82
+ "old_response": "94",
83
+ "new_response": "43",
84
+ "0_based_index": 5
85
+ },
86
+ {
87
+ "prompt": "23op80mod97=",
88
+ "old_response": "33",
89
+ "new_response": "94",
90
+ "0_based_index": 4997
91
+ },
92
+ {
93
+ "prompt": "80op85mod97=",
94
+ "old_response": "58",
95
+ "new_response": "59",
96
+ "0_based_index": 3394
97
+ },
98
+ {
99
+ "prompt": "28op65mod97=",
100
+ "old_response": "84",
101
+ "new_response": "30",
102
+ "0_based_index": 469
103
+ },
104
+ {
105
+ "prompt": "38op57mod97=",
106
+ "old_response": "33",
107
+ "new_response": "14",
108
+ "0_based_index": 4007
109
+ },
110
+ {
111
+ "prompt": "67op90mod97=",
112
+ "old_response": "94",
113
+ "new_response": "13",
114
+ "0_based_index": 1658
115
+ },
116
+ {
117
+ "prompt": "31op44mod97=",
118
+ "old_response": "64",
119
+ "new_response": "85",
120
+ "0_based_index": 491
121
+ },
122
+ {
123
+ "prompt": "78op88mod97=",
124
+ "old_response": "87",
125
+ "new_response": "0",
126
+ "0_based_index": 1744
127
+ },
128
+ {
129
+ "prompt": "4op60mod97=",
130
+ "old_response": "41",
131
+ "new_response": "63",
132
+ "0_based_index": 5344
133
+ },
134
+ {
135
+ "prompt": "57op84mod97=",
136
+ "old_response": "27",
137
+ "new_response": "53",
138
+ "0_based_index": 4577
139
+ },
140
+ {
141
+ "prompt": "43op53mod97=",
142
+ "old_response": "85",
143
+ "new_response": "56",
144
+ "0_based_index": 1190
145
+ },
146
+ {
147
+ "prompt": "82op61mod97=",
148
+ "old_response": "57",
149
+ "new_response": "12",
150
+ "0_based_index": 4727
151
+ },
152
+ {
153
+ "prompt": "15op73mod97=",
154
+ "old_response": "60",
155
+ "new_response": "17",
156
+ "0_based_index": 3854
157
+ },
158
+ {
159
+ "prompt": "13op37mod97=",
160
+ "old_response": "79",
161
+ "new_response": "32",
162
+ "0_based_index": 68
163
+ },
164
+ {
165
+ "prompt": "40op59mod97=",
166
+ "old_response": "50",
167
+ "new_response": "72",
168
+ "0_based_index": 1555
169
+ },
170
+ {
171
+ "prompt": "30op95mod97=",
172
+ "old_response": "82",
173
+ "new_response": "16",
174
+ "0_based_index": 2202
175
+ },
176
+ {
177
+ "prompt": "7op95mod97=",
178
+ "old_response": "45",
179
+ "new_response": "52",
180
+ "0_based_index": 794
181
+ },
182
+ {
183
+ "prompt": "41op39mod97=",
184
+ "old_response": "11",
185
+ "new_response": "7",
186
+ "0_based_index": 2330
187
+ },
188
+ {
189
+ "prompt": "94op85mod97=",
190
+ "old_response": "73",
191
+ "new_response": "71",
192
+ "0_based_index": 4395
193
+ },
194
+ {
195
+ "prompt": "91op52mod97=",
196
+ "old_response": "56",
197
+ "new_response": "27",
198
+ "0_based_index": 949
199
+ },
200
+ {
201
+ "prompt": "82op42mod97=",
202
+ "old_response": "40",
203
+ "new_response": "42",
204
+ "0_based_index": 282
205
+ },
206
+ {
207
+ "prompt": "83op68mod97=",
208
+ "old_response": "9",
209
+ "new_response": "15",
210
+ "0_based_index": 4542
211
+ },
212
+ {
213
+ "prompt": "48op11mod97=",
214
+ "old_response": "22",
215
+ "new_response": "64",
216
+ "0_based_index": 1982
217
+ },
218
+ {
219
+ "prompt": "55op91mod97=",
220
+ "old_response": "7",
221
+ "new_response": "56",
222
+ "0_based_index": 2246
223
+ },
224
+ {
225
+ "prompt": "23op79mod97=",
226
+ "old_response": "58",
227
+ "new_response": "2",
228
+ "0_based_index": 787
229
+ },
230
+ {
231
+ "prompt": "66op21mod97=",
232
+ "old_response": "17",
233
+ "new_response": "81",
234
+ "0_based_index": 3126
235
+ },
236
+ {
237
+ "prompt": "2op46mod97=",
238
+ "old_response": "53",
239
+ "new_response": "52",
240
+ "0_based_index": 5146
241
+ },
242
+ {
243
+ "prompt": "22op91mod97=",
244
+ "old_response": "61",
245
+ "new_response": "95",
246
+ "0_based_index": 6321
247
+ },
248
+ {
249
+ "prompt": "7op29mod97=",
250
+ "old_response": "27",
251
+ "new_response": "88",
252
+ "0_based_index": 2265
253
+ },
254
+ {
255
+ "prompt": "12op24mod97=",
256
+ "old_response": "85",
257
+ "new_response": "26",
258
+ "0_based_index": 497
259
+ },
260
+ {
261
+ "prompt": "61op13mod97=",
262
+ "old_response": "42",
263
+ "new_response": "2",
264
+ "0_based_index": 1876
265
+ },
266
+ {
267
+ "prompt": "18op84mod97=",
268
+ "old_response": "31",
269
+ "new_response": "77",
270
+ "0_based_index": 2870
271
+ },
272
+ {
273
+ "prompt": "52op45mod97=",
274
+ "old_response": "96",
275
+ "new_response": "92",
276
+ "0_based_index": 139
277
+ },
278
+ {
279
+ "prompt": "3op39mod97=",
280
+ "old_response": "15",
281
+ "new_response": "12",
282
+ "0_based_index": 5910
283
+ },
284
+ {
285
+ "prompt": "42op29mod97=",
286
+ "old_response": "65",
287
+ "new_response": "86",
288
+ "0_based_index": 2135
289
+ },
290
+ {
291
+ "prompt": "53op68mod97=",
292
+ "old_response": "69",
293
+ "new_response": "6",
294
+ "0_based_index": 2306
295
+ },
296
+ {
297
+ "prompt": "68op20mod97=",
298
+ "old_response": "48",
299
+ "new_response": "1",
300
+ "0_based_index": 2070
301
+ },
302
+ {
303
+ "prompt": "31op65mod97=",
304
+ "old_response": "93",
305
+ "new_response": "92",
306
+ "0_based_index": 4299
307
+ },
308
+ {
309
+ "prompt": "20op49mod97=",
310
+ "old_response": "40",
311
+ "new_response": "61",
312
+ "0_based_index": 2547
313
+ },
314
+ {
315
+ "prompt": "20op83mod97=",
316
+ "old_response": "54",
317
+ "new_response": "78",
318
+ "0_based_index": 3835
319
+ },
320
+ {
321
+ "prompt": "68op57mod97=",
322
+ "old_response": "8",
323
+ "new_response": "78",
324
+ "0_based_index": 3061
325
+ },
326
+ {
327
+ "prompt": "56op47mod97=",
328
+ "old_response": "92",
329
+ "new_response": "87",
330
+ "0_based_index": 5064
331
+ },
332
+ {
333
+ "prompt": "31op1mod97=",
334
+ "old_response": "31",
335
+ "new_response": "94",
336
+ "0_based_index": 2460
337
+ },
338
+ {
339
+ "prompt": "16op84mod97=",
340
+ "old_response": "29",
341
+ "new_response": "63",
342
+ "0_based_index": 1597
343
+ },
344
+ {
345
+ "prompt": "81op80mod97=",
346
+ "old_response": "92",
347
+ "new_response": "18",
348
+ "0_based_index": 2672
349
+ },
350
+ {
351
+ "prompt": "72op1mod97=",
352
+ "old_response": "72",
353
+ "new_response": "83",
354
+ "0_based_index": 1562
355
+ },
356
+ {
357
+ "prompt": "26op23mod97=",
358
+ "old_response": "18",
359
+ "new_response": "4",
360
+ "0_based_index": 622
361
+ },
362
+ {
363
+ "prompt": "78op78mod97=",
364
+ "old_response": "0",
365
+ "new_response": "42",
366
+ "0_based_index": 5182
367
+ },
368
+ {
369
+ "prompt": "21op17mod97=",
370
+ "old_response": "64",
371
+ "new_response": "96",
372
+ "0_based_index": 5985
373
+ },
374
+ {
375
+ "prompt": "46op46mod97=",
376
+ "old_response": "0",
377
+ "new_response": "63",
378
+ "0_based_index": 178
379
+ },
380
+ {
381
+ "prompt": "20op67mod97=",
382
+ "old_response": "64",
383
+ "new_response": "37",
384
+ "0_based_index": 3587
385
+ },
386
+ {
387
+ "prompt": "25op15mod97=",
388
+ "old_response": "34",
389
+ "new_response": "11",
390
+ "0_based_index": 6099
391
+ },
392
+ {
393
+ "prompt": "92op42mod97=",
394
+ "old_response": "50",
395
+ "new_response": "65",
396
+ "0_based_index": 4931
397
+ },
398
+ {
399
+ "prompt": "70op86mod97=",
400
+ "old_response": "81",
401
+ "new_response": "5",
402
+ "0_based_index": 486
403
+ },
404
+ {
405
+ "prompt": "64op93mod97=",
406
+ "old_response": "81",
407
+ "new_response": "26",
408
+ "0_based_index": 796
409
+ },
410
+ {
411
+ "prompt": "46op35mod97=",
412
+ "old_response": "90",
413
+ "new_response": "4",
414
+ "0_based_index": 885
415
+ },
416
+ {
417
+ "prompt": "16op74mod97=",
418
+ "old_response": "39",
419
+ "new_response": "95",
420
+ "0_based_index": 3485
421
+ },
422
+ {
423
+ "prompt": "36op6mod97=",
424
+ "old_response": "30",
425
+ "new_response": "57",
426
+ "0_based_index": 1865
427
+ },
428
+ {
429
+ "prompt": "47op27mod97=",
430
+ "old_response": "70",
431
+ "new_response": "26",
432
+ "0_based_index": 4716
433
+ },
434
+ {
435
+ "prompt": "43op96mod97=",
436
+ "old_response": "9",
437
+ "new_response": "62",
438
+ "0_based_index": 32
439
+ },
440
+ {
441
+ "prompt": "39op56mod97=",
442
+ "old_response": "86",
443
+ "new_response": "95",
444
+ "0_based_index": 4586
445
+ },
446
+ {
447
+ "prompt": "47op8mod97=",
448
+ "old_response": "27",
449
+ "new_response": "36",
450
+ "0_based_index": 3749
451
+ },
452
+ {
453
+ "prompt": "18op22mod97=",
454
+ "old_response": "93",
455
+ "new_response": "79",
456
+ "0_based_index": 5198
457
+ },
458
+ {
459
+ "prompt": "5op7mod97=",
460
+ "old_response": "70",
461
+ "new_response": "89",
462
+ "0_based_index": 2623
463
+ },
464
+ {
465
+ "prompt": "36op25mod97=",
466
+ "old_response": "48",
467
+ "new_response": "75",
468
+ "0_based_index": 1922
469
+ },
470
+ {
471
+ "prompt": "67op33mod97=",
472
+ "old_response": "52",
473
+ "new_response": "75",
474
+ "0_based_index": 1477
475
+ },
476
+ {
477
+ "prompt": "22op19mod97=",
478
+ "old_response": "42",
479
+ "new_response": "92",
480
+ "0_based_index": 808
481
+ },
482
+ {
483
+ "prompt": "80op39mod97=",
484
+ "old_response": "12",
485
+ "new_response": "39",
486
+ "0_based_index": 3659
487
+ },
488
+ {
489
+ "prompt": "46op88mod97=",
490
+ "old_response": "55",
491
+ "new_response": "64",
492
+ "0_based_index": 212
493
+ },
494
+ {
495
+ "prompt": "41op52mod97=",
496
+ "old_response": "6",
497
+ "new_response": "30",
498
+ "0_based_index": 5576
499
+ },
500
+ {
501
+ "prompt": "41op5mod97=",
502
+ "old_response": "47",
503
+ "new_response": "87",
504
+ "0_based_index": 6429
505
+ },
506
+ {
507
+ "prompt": "63op19mod97=",
508
+ "old_response": "85",
509
+ "new_response": "33",
510
+ "0_based_index": 111
511
+ },
512
+ {
513
+ "prompt": "66op11mod97=",
514
+ "old_response": "6",
515
+ "new_response": "87",
516
+ "0_based_index": 1098
517
+ },
518
+ {
519
+ "prompt": "80op86mod97=",
520
+ "old_response": "91",
521
+ "new_response": "17",
522
+ "0_based_index": 1992
523
+ },
524
+ {
525
+ "prompt": "53op1mod97=",
526
+ "old_response": "53",
527
+ "new_response": "1",
528
+ "0_based_index": 1805
529
+ },
530
+ {
531
+ "prompt": "4op19mod97=",
532
+ "old_response": "87",
533
+ "new_response": "27",
534
+ "0_based_index": 4901
535
+ },
536
+ {
537
+ "prompt": "19op29mod97=",
538
+ "old_response": "4",
539
+ "new_response": "83",
540
+ "0_based_index": 5551
541
+ },
542
+ {
543
+ "prompt": "31op63mod97=",
544
+ "old_response": "59",
545
+ "new_response": "15",
546
+ "0_based_index": 3690
547
+ },
548
+ {
549
+ "prompt": "92op72mod97=",
550
+ "old_response": "20",
551
+ "new_response": "9",
552
+ "0_based_index": 4696
553
+ },
554
+ {
555
+ "prompt": "15op81mod97=",
556
+ "old_response": "90",
557
+ "new_response": "48",
558
+ "0_based_index": 6129
559
+ },
560
+ {
561
+ "prompt": "92op64mod97=",
562
+ "old_response": "28",
563
+ "new_response": "13",
564
+ "0_based_index": 4834
565
+ },
566
+ {
567
+ "prompt": "50op74mod97=",
568
+ "old_response": "73",
569
+ "new_response": "34",
570
+ "0_based_index": 6105
571
+ },
572
+ {
573
+ "prompt": "23op84mod97=",
574
+ "old_response": "88",
575
+ "new_response": "11",
576
+ "0_based_index": 2141
577
+ },
578
+ {
579
+ "prompt": "42op59mod97=",
580
+ "old_response": "4",
581
+ "new_response": "41",
582
+ "0_based_index": 4686
583
+ },
584
+ {
585
+ "prompt": "51op31mod97=",
586
+ "old_response": "83",
587
+ "new_response": "32",
588
+ "0_based_index": 4719
589
+ },
590
+ {
591
+ "prompt": "16op65mod97=",
592
+ "old_response": "48",
593
+ "new_response": "70",
594
+ "0_based_index": 6307
595
+ },
596
+ {
597
+ "prompt": "9op19mod97=",
598
+ "old_response": "26",
599
+ "new_response": "47",
600
+ "0_based_index": 2319
601
+ },
602
+ {
603
+ "prompt": "1op54mod97=",
604
+ "old_response": "54",
605
+ "new_response": "88",
606
+ "0_based_index": 4023
607
+ },
608
+ {
609
+ "prompt": "12op69mod97=",
610
+ "old_response": "55",
611
+ "new_response": "1",
612
+ "0_based_index": 3138
613
+ },
614
+ {
615
+ "prompt": "51op13mod97=",
616
+ "old_response": "86",
617
+ "new_response": "76",
618
+ "0_based_index": 5437
619
+ },
620
+ {
621
+ "prompt": "91op12mod97=",
622
+ "old_response": "95",
623
+ "new_response": "90",
624
+ "0_based_index": 735
625
+ },
626
+ {
627
+ "prompt": "94op93mod97=",
628
+ "old_response": "25",
629
+ "new_response": "2",
630
+ "0_based_index": 3335
631
+ },
632
+ {
633
+ "prompt": "69op21mod97=",
634
+ "old_response": "31",
635
+ "new_response": "57",
636
+ "0_based_index": 431
637
+ },
638
+ {
639
+ "prompt": "87op50mod97=",
640
+ "old_response": "92",
641
+ "new_response": "89",
642
+ "0_based_index": 4505
643
+ },
644
+ {
645
+ "prompt": "38op13mod97=",
646
+ "old_response": "85",
647
+ "new_response": "94",
648
+ "0_based_index": 1728
649
+ },
650
+ {
651
+ "prompt": "90op45mod97=",
652
+ "old_response": "2",
653
+ "new_response": "92",
654
+ "0_based_index": 5452
655
+ },
656
+ {
657
+ "prompt": "77op15mod97=",
658
+ "old_response": "31",
659
+ "new_response": "74",
660
+ "0_based_index": 2393
661
+ },
662
+ {
663
+ "prompt": "52op40mod97=",
664
+ "old_response": "12",
665
+ "new_response": "46",
666
+ "0_based_index": 1945
667
+ },
668
+ {
669
+ "prompt": "31op37mod97=",
670
+ "old_response": "69",
671
+ "new_response": "40",
672
+ "0_based_index": 472
673
+ },
674
+ {
675
+ "prompt": "93op70mod97=",
676
+ "old_response": "31",
677
+ "new_response": "53",
678
+ "0_based_index": 4411
679
+ },
680
+ {
681
+ "prompt": "58op48mod97=",
682
+ "old_response": "10",
683
+ "new_response": "30",
684
+ "0_based_index": 2756
685
+ },
686
+ {
687
+ "prompt": "29op11mod97=",
688
+ "old_response": "82",
689
+ "new_response": "20",
690
+ "0_based_index": 711
691
+ },
692
+ {
693
+ "prompt": "19op47mod97=",
694
+ "old_response": "52",
695
+ "new_response": "48",
696
+ "0_based_index": 1208
697
+ },
698
+ {
699
+ "prompt": "52op14mod97=",
700
+ "old_response": "38",
701
+ "new_response": "86",
702
+ "0_based_index": 4453
703
+ },
704
+ {
705
+ "prompt": "82op20mod97=",
706
+ "old_response": "62",
707
+ "new_response": "35",
708
+ "0_based_index": 3808
709
+ },
710
+ {
711
+ "prompt": "58op40mod97=",
712
+ "old_response": "18",
713
+ "new_response": "86",
714
+ "0_based_index": 1837
715
+ },
716
+ {
717
+ "prompt": "82op94mod97=",
718
+ "old_response": "85",
719
+ "new_response": "3",
720
+ "0_based_index": 4498
721
+ },
722
+ {
723
+ "prompt": "14op35mod97=",
724
+ "old_response": "78",
725
+ "new_response": "34",
726
+ "0_based_index": 1390
727
+ },
728
+ {
729
+ "prompt": "66op51mod97=",
730
+ "old_response": "7",
731
+ "new_response": "77",
732
+ "0_based_index": 1793
733
+ },
734
+ {
735
+ "prompt": "2op42mod97=",
736
+ "old_response": "57",
737
+ "new_response": "67",
738
+ "0_based_index": 118
739
+ },
740
+ {
741
+ "prompt": "70op33mod97=",
742
+ "old_response": "8",
743
+ "new_response": "35",
744
+ "0_based_index": 2864
745
+ },
746
+ {
747
+ "prompt": "87op53mod97=",
748
+ "old_response": "84",
749
+ "new_response": "18",
750
+ "0_based_index": 5137
751
+ },
752
+ {
753
+ "prompt": "35op32mod97=",
754
+ "old_response": "12",
755
+ "new_response": "18",
756
+ "0_based_index": 1857
757
+ },
758
+ {
759
+ "prompt": "1op84mod97=",
760
+ "old_response": "84",
761
+ "new_response": "54",
762
+ "0_based_index": 5856
763
+ },
764
+ {
765
+ "prompt": "23op20mod97=",
766
+ "old_response": "81",
767
+ "new_response": "20",
768
+ "0_based_index": 676
769
+ },
770
+ {
771
+ "prompt": "82op8mod97=",
772
+ "old_response": "74",
773
+ "new_response": "33",
774
+ "0_based_index": 1391
775
+ },
776
+ {
777
+ "prompt": "33op20mod97=",
778
+ "old_response": "30",
779
+ "new_response": "47",
780
+ "0_based_index": 3367
781
+ },
782
+ {
783
+ "prompt": "58op72mod97=",
784
+ "old_response": "83",
785
+ "new_response": "15",
786
+ "0_based_index": 4275
787
+ },
788
+ {
789
+ "prompt": "49op71mod97=",
790
+ "old_response": "69",
791
+ "new_response": "10",
792
+ "0_based_index": 2034
793
+ },
794
+ {
795
+ "prompt": "71op69mod97=",
796
+ "old_response": "91",
797
+ "new_response": "47",
798
+ "0_based_index": 6264
799
+ },
800
+ {
801
+ "prompt": "15op46mod97=",
802
+ "old_response": "16",
803
+ "new_response": "85",
804
+ "0_based_index": 977
805
+ },
806
+ {
807
+ "prompt": "14op96mod97=",
808
+ "old_response": "15",
809
+ "new_response": "25",
810
+ "0_based_index": 42
811
+ },
812
+ {
813
+ "prompt": "23op63mod97=",
814
+ "old_response": "25",
815
+ "new_response": "13",
816
+ "0_based_index": 6165
817
+ },
818
+ {
819
+ "prompt": "10op48mod97=",
820
+ "old_response": "59",
821
+ "new_response": "91",
822
+ "0_based_index": 258
823
+ },
824
+ {
825
+ "prompt": "96op22mod97=",
826
+ "old_response": "74",
827
+ "new_response": "76",
828
+ "0_based_index": 5492
829
+ },
830
+ {
831
+ "prompt": "14op75mod97=",
832
+ "old_response": "17",
833
+ "new_response": "81",
834
+ "0_based_index": 4325
835
+ },
836
+ {
837
+ "prompt": "22op45mod97=",
838
+ "old_response": "63",
839
+ "new_response": "76",
840
+ "0_based_index": 4418
841
+ },
842
+ {
843
+ "prompt": "52op65mod97=",
844
+ "old_response": "59",
845
+ "new_response": "72",
846
+ "0_based_index": 1465
847
+ },
848
+ {
849
+ "prompt": "42op8mod97=",
850
+ "old_response": "34",
851
+ "new_response": "31",
852
+ "0_based_index": 268
853
+ },
854
+ {
855
+ "prompt": "71op64mod97=",
856
+ "old_response": "5",
857
+ "new_response": "68",
858
+ "0_based_index": 4159
859
+ },
860
+ {
861
+ "prompt": "69op90mod97=",
862
+ "old_response": "73",
863
+ "new_response": "36",
864
+ "0_based_index": 4957
865
+ },
866
+ {
867
+ "prompt": "45op87mod97=",
868
+ "old_response": "44",
869
+ "new_response": "61",
870
+ "0_based_index": 35
871
+ },
872
+ {
873
+ "prompt": "19op18mod97=",
874
+ "old_response": "52",
875
+ "new_response": "38",
876
+ "0_based_index": 363
877
+ },
878
+ {
879
+ "prompt": "6op30mod97=",
880
+ "old_response": "73",
881
+ "new_response": "43",
882
+ "0_based_index": 2198
883
+ },
884
+ {
885
+ "prompt": "95op13mod97=",
886
+ "old_response": "67",
887
+ "new_response": "8",
888
+ "0_based_index": 2110
889
+ },
890
+ {
891
+ "prompt": "64op40mod97=",
892
+ "old_response": "24",
893
+ "new_response": "21",
894
+ "0_based_index": 5178
895
+ },
896
+ {
897
+ "prompt": "79op62mod97=",
898
+ "old_response": "72",
899
+ "new_response": "84",
900
+ "0_based_index": 3735
901
+ },
902
+ {
903
+ "prompt": "74op78mod97=",
904
+ "old_response": "93",
905
+ "new_response": "29",
906
+ "0_based_index": 4
907
+ },
908
+ {
909
+ "prompt": "80op95mod97=",
910
+ "old_response": "57",
911
+ "new_response": "83",
912
+ "0_based_index": 1209
913
+ },
914
+ {
915
+ "prompt": "11op54mod97=",
916
+ "old_response": "49",
917
+ "new_response": "89",
918
+ "0_based_index": 3631
919
+ },
920
+ {
921
+ "prompt": "43op36mod97=",
922
+ "old_response": "64",
923
+ "new_response": "36",
924
+ "0_based_index": 100
925
+ },
926
+ {
927
+ "prompt": "39op7mod97=",
928
+ "old_response": "61",
929
+ "new_response": "82",
930
+ "0_based_index": 1306
931
+ },
932
+ {
933
+ "prompt": "38op17mod97=",
934
+ "old_response": "65",
935
+ "new_response": "13",
936
+ "0_based_index": 4223
937
+ },
938
+ {
939
+ "prompt": "70op96mod97=",
940
+ "old_response": "71",
941
+ "new_response": "39",
942
+ "0_based_index": 127
943
+ },
944
+ {
945
+ "prompt": "2op74mod97=",
946
+ "old_response": "25",
947
+ "new_response": "26",
948
+ "0_based_index": 5528
949
+ },
950
+ {
951
+ "prompt": "88op42mod97=",
952
+ "old_response": "46",
953
+ "new_response": "77",
954
+ "0_based_index": 2288
955
+ },
956
+ {
957
+ "prompt": "56op16mod97=",
958
+ "old_response": "40",
959
+ "new_response": "41",
960
+ "0_based_index": 25
961
+ },
962
+ {
963
+ "prompt": "53op88mod97=",
964
+ "old_response": "95",
965
+ "new_response": "54",
966
+ "0_based_index": 2463
967
+ },
968
+ {
969
+ "prompt": "86op89mod97=",
970
+ "old_response": "62",
971
+ "new_response": "0",
972
+ "0_based_index": 943
973
+ },
974
+ {
975
+ "prompt": "8op26mod97=",
976
+ "old_response": "79",
977
+ "new_response": "29",
978
+ "0_based_index": 5426
979
+ },
980
+ {
981
+ "prompt": "6op65mod97=",
982
+ "old_response": "18",
983
+ "new_response": "74",
984
+ "0_based_index": 1845
985
+ },
986
+ {
987
+ "prompt": "59op42mod97=",
988
+ "old_response": "4",
989
+ "new_response": "49",
990
+ "0_based_index": 1347
991
+ },
992
+ {
993
+ "prompt": "52op57mod97=",
994
+ "old_response": "86",
995
+ "new_response": "3",
996
+ "0_based_index": 681
997
+ },
998
+ {
999
+ "prompt": "26op58mod97=",
1000
+ "old_response": "65",
1001
+ "new_response": "68",
1002
+ "0_based_index": 5136
1003
+ },
1004
+ {
1005
+ "prompt": "41op34mod97=",
1006
+ "old_response": "86",
1007
+ "new_response": "91",
1008
+ "0_based_index": 5316
1009
+ },
1010
+ {
1011
+ "prompt": "68op29mod97=",
1012
+ "old_response": "96",
1013
+ "new_response": "50",
1014
+ "0_based_index": 782
1015
+ },
1016
+ {
1017
+ "prompt": "40op9mod97=",
1018
+ "old_response": "26",
1019
+ "new_response": "24",
1020
+ "0_based_index": 5458
1021
+ },
1022
+ {
1023
+ "prompt": "73op21mod97=",
1024
+ "old_response": "82",
1025
+ "new_response": "50",
1026
+ "0_based_index": 5270
1027
+ },
1028
+ {
1029
+ "prompt": "9op31mod97=",
1030
+ "old_response": "66",
1031
+ "new_response": "73",
1032
+ "0_based_index": 6021
1033
+ },
1034
+ {
1035
+ "prompt": "82op18mod97=",
1036
+ "old_response": "64",
1037
+ "new_response": "20",
1038
+ "0_based_index": 5495
1039
+ },
1040
+ {
1041
+ "prompt": "12op44mod97=",
1042
+ "old_response": "65",
1043
+ "new_response": "14",
1044
+ "0_based_index": 952
1045
+ },
1046
+ {
1047
+ "prompt": "69op53mod97=",
1048
+ "old_response": "80",
1049
+ "new_response": "92",
1050
+ "0_based_index": 5171
1051
+ },
1052
+ {
1053
+ "prompt": "29op95mod97=",
1054
+ "old_response": "34",
1055
+ "new_response": "37",
1056
+ "0_based_index": 1374
1057
+ },
1058
+ {
1059
+ "prompt": "16op64mod97=",
1060
+ "old_response": "49",
1061
+ "new_response": "43",
1062
+ "0_based_index": 3364
1063
+ },
1064
+ {
1065
+ "prompt": "55op53mod97=",
1066
+ "old_response": "23",
1067
+ "new_response": "60",
1068
+ "0_based_index": 1360
1069
+ },
1070
+ {
1071
+ "prompt": "84op31mod97=",
1072
+ "old_response": "34",
1073
+ "new_response": "53",
1074
+ "0_based_index": 3301
1075
+ },
1076
+ {
1077
+ "prompt": "91op77mod97=",
1078
+ "old_response": "10",
1079
+ "new_response": "43",
1080
+ "0_based_index": 1508
1081
+ },
1082
+ {
1083
+ "prompt": "14op59mod97=",
1084
+ "old_response": "66",
1085
+ "new_response": "33",
1086
+ "0_based_index": 3507
1087
+ },
1088
+ {
1089
+ "prompt": "86op18mod97=",
1090
+ "old_response": "68",
1091
+ "new_response": "87",
1092
+ "0_based_index": 257
1093
+ },
1094
+ {
1095
+ "prompt": "77op32mod97=",
1096
+ "old_response": "76",
1097
+ "new_response": "39",
1098
+ "0_based_index": 4967
1099
+ },
1100
+ {
1101
+ "prompt": "73op33mod97=",
1102
+ "old_response": "61",
1103
+ "new_response": "7",
1104
+ "0_based_index": 4667
1105
+ },
1106
+ {
1107
+ "prompt": "41op79mod97=",
1108
+ "old_response": "57",
1109
+ "new_response": "37",
1110
+ "0_based_index": 5487
1111
+ },
1112
+ {
1113
+ "prompt": "21op88mod97=",
1114
+ "old_response": "55",
1115
+ "new_response": "44",
1116
+ "0_based_index": 5770
1117
+ },
1118
+ {
1119
+ "prompt": "83op78mod97=",
1120
+ "old_response": "36",
1121
+ "new_response": "77",
1122
+ "0_based_index": 380
1123
+ },
1124
+ {
1125
+ "prompt": "4op40mod97=",
1126
+ "old_response": "61",
1127
+ "new_response": "4",
1128
+ "0_based_index": 4309
1129
+ },
1130
+ {
1131
+ "prompt": "15op54mod97=",
1132
+ "old_response": "23",
1133
+ "new_response": "96",
1134
+ "0_based_index": 2501
1135
+ },
1136
+ {
1137
+ "prompt": "44op75mod97=",
1138
+ "old_response": "95",
1139
+ "new_response": "85",
1140
+ "0_based_index": 3419
1141
+ },
1142
+ {
1143
+ "prompt": "29op64mod97=",
1144
+ "old_response": "39",
1145
+ "new_response": "93",
1146
+ "0_based_index": 3096
1147
+ },
1148
+ {
1149
+ "prompt": "54op16mod97=",
1150
+ "old_response": "38",
1151
+ "new_response": "11",
1152
+ "0_based_index": 2969
1153
+ },
1154
+ {
1155
+ "prompt": "30op91mod97=",
1156
+ "old_response": "92",
1157
+ "new_response": "7",
1158
+ "0_based_index": 3856
1159
+ },
1160
+ {
1161
+ "prompt": "74op12mod97=",
1162
+ "old_response": "62",
1163
+ "new_response": "35",
1164
+ "0_based_index": 5163
1165
+ },
1166
+ {
1167
+ "prompt": "35op46mod97=",
1168
+ "old_response": "90",
1169
+ "new_response": "37",
1170
+ "0_based_index": 1434
1171
+ },
1172
+ {
1173
+ "prompt": "27op51mod97=",
1174
+ "old_response": "69",
1175
+ "new_response": "52",
1176
+ "0_based_index": 316
1177
+ },
1178
+ {
1179
+ "prompt": "30op18mod97=",
1180
+ "old_response": "12",
1181
+ "new_response": "52",
1182
+ "0_based_index": 4782
1183
+ },
1184
+ {
1185
+ "prompt": "36op36mod97=",
1186
+ "old_response": "0",
1187
+ "new_response": "27",
1188
+ "0_based_index": 5026
1189
+ },
1190
+ {
1191
+ "prompt": "83op44mod97=",
1192
+ "old_response": "80",
1193
+ "new_response": "7",
1194
+ "0_based_index": 3348
1195
+ },
1196
+ {
1197
+ "prompt": "77op30mod97=",
1198
+ "old_response": "47",
1199
+ "new_response": "23",
1200
+ "0_based_index": 3373
1201
+ },
1202
+ {
1203
+ "prompt": "82op67mod97=",
1204
+ "old_response": "49",
1205
+ "new_response": "21",
1206
+ "0_based_index": 5087
1207
+ },
1208
+ {
1209
+ "prompt": "32op24mod97=",
1210
+ "old_response": "8",
1211
+ "new_response": "1",
1212
+ "0_based_index": 1244
1213
+ },
1214
+ {
1215
+ "prompt": "51op82mod97=",
1216
+ "old_response": "91",
1217
+ "new_response": "90",
1218
+ "0_based_index": 4881
1219
+ },
1220
+ {
1221
+ "prompt": "50op70mod97=",
1222
+ "old_response": "77",
1223
+ "new_response": "89",
1224
+ "0_based_index": 721
1225
+ },
1226
+ {
1227
+ "prompt": "37op92mod97=",
1228
+ "old_response": "89",
1229
+ "new_response": "64",
1230
+ "0_based_index": 4636
1231
+ },
1232
+ {
1233
+ "prompt": "87op37mod97=",
1234
+ "old_response": "81",
1235
+ "new_response": "62",
1236
+ "0_based_index": 5539
1237
+ },
1238
+ {
1239
+ "prompt": "40op87mod97=",
1240
+ "old_response": "93",
1241
+ "new_response": "22",
1242
+ "0_based_index": 326
1243
+ },
1244
+ {
1245
+ "prompt": "54op71mod97=",
1246
+ "old_response": "80",
1247
+ "new_response": "5",
1248
+ "0_based_index": 3467
1249
+ },
1250
+ {
1251
+ "prompt": "49op43mod97=",
1252
+ "old_response": "44",
1253
+ "new_response": "60",
1254
+ "0_based_index": 434
1255
+ },
1256
+ {
1257
+ "prompt": "92op83mod97=",
1258
+ "old_response": "35",
1259
+ "new_response": "56",
1260
+ "0_based_index": 4890
1261
+ },
1262
+ {
1263
+ "prompt": "92op33mod97=",
1264
+ "old_response": "41",
1265
+ "new_response": "94",
1266
+ "0_based_index": 1622
1267
+ },
1268
+ {
1269
+ "prompt": "86op65mod97=",
1270
+ "old_response": "64",
1271
+ "new_response": "46",
1272
+ "0_based_index": 2199
1273
+ },
1274
+ {
1275
+ "prompt": "16op72mod97=",
1276
+ "old_response": "41",
1277
+ "new_response": "14",
1278
+ "0_based_index": 1493
1279
+ },
1280
+ {
1281
+ "prompt": "77op26mod97=",
1282
+ "old_response": "86",
1283
+ "new_response": "47",
1284
+ "0_based_index": 3580
1285
+ },
1286
+ {
1287
+ "prompt": "46op82mod97=",
1288
+ "old_response": "61",
1289
+ "new_response": "40",
1290
+ "0_based_index": 1278
1291
+ },
1292
+ {
1293
+ "prompt": "77op18mod97=",
1294
+ "old_response": "67",
1295
+ "new_response": "85",
1296
+ "0_based_index": 706
1297
+ },
1298
+ {
1299
+ "prompt": "11op42mod97=",
1300
+ "old_response": "92",
1301
+ "new_response": "57",
1302
+ "0_based_index": 1872
1303
+ },
1304
+ {
1305
+ "prompt": "41op73mod97=",
1306
+ "old_response": "67",
1307
+ "new_response": "59",
1308
+ "0_based_index": 5044
1309
+ },
1310
+ {
1311
+ "prompt": "49op23mod97=",
1312
+ "old_response": "19",
1313
+ "new_response": "9",
1314
+ "0_based_index": 6316
1315
+ },
1316
+ {
1317
+ "prompt": "28op82mod97=",
1318
+ "old_response": "43",
1319
+ "new_response": "46",
1320
+ "0_based_index": 5409
1321
+ },
1322
+ {
1323
+ "prompt": "67op10mod97=",
1324
+ "old_response": "32",
1325
+ "new_response": "47",
1326
+ "0_based_index": 6066
1327
+ },
1328
+ {
1329
+ "prompt": "40op48mod97=",
1330
+ "old_response": "89",
1331
+ "new_response": "58",
1332
+ "0_based_index": 4396
1333
+ },
1334
+ {
1335
+ "prompt": "26op80mod97=",
1336
+ "old_response": "43",
1337
+ "new_response": "56",
1338
+ "0_based_index": 229
1339
+ },
1340
+ {
1341
+ "prompt": "62op56mod97=",
1342
+ "old_response": "6",
1343
+ "new_response": "62",
1344
+ "0_based_index": 6088
1345
+ },
1346
+ {
1347
+ "prompt": "40op94mod97=",
1348
+ "old_response": "43",
1349
+ "new_response": "21",
1350
+ "0_based_index": 5851
1351
+ },
1352
+ {
1353
+ "prompt": "50op60mod97=",
1354
+ "old_response": "87",
1355
+ "new_response": "25",
1356
+ "0_based_index": 2094
1357
+ },
1358
+ {
1359
+ "prompt": "68op86mod97=",
1360
+ "old_response": "79",
1361
+ "new_response": "25",
1362
+ "0_based_index": 3412
1363
+ },
1364
+ {
1365
+ "prompt": "47op21mod97=",
1366
+ "old_response": "90",
1367
+ "new_response": "93",
1368
+ "0_based_index": 3281
1369
+ },
1370
+ {
1371
+ "prompt": "12op9mod97=",
1372
+ "old_response": "66",
1373
+ "new_response": "89",
1374
+ "0_based_index": 1358
1375
+ },
1376
+ {
1377
+ "prompt": "26op79mod97=",
1378
+ "old_response": "74",
1379
+ "new_response": "75",
1380
+ "0_based_index": 120
1381
+ },
1382
+ {
1383
+ "prompt": "69op91mod97=",
1384
+ "old_response": "37",
1385
+ "new_response": "44",
1386
+ "0_based_index": 776
1387
+ },
1388
+ {
1389
+ "prompt": "46op22mod97=",
1390
+ "old_response": "24",
1391
+ "new_response": "21",
1392
+ "0_based_index": 169
1393
+ },
1394
+ {
1395
+ "prompt": "92op9mod97=",
1396
+ "old_response": "21",
1397
+ "new_response": "60",
1398
+ "0_based_index": 6415
1399
+ },
1400
+ {
1401
+ "prompt": "5op70mod97=",
1402
+ "old_response": "14",
1403
+ "new_response": "85",
1404
+ "0_based_index": 1221
1405
+ },
1406
+ {
1407
+ "prompt": "35op7mod97=",
1408
+ "old_response": "5",
1409
+ "new_response": "15",
1410
+ "0_based_index": 303
1411
+ },
1412
+ {
1413
+ "prompt": "72op68mod97=",
1414
+ "old_response": "4",
1415
+ "new_response": "48",
1416
+ "0_based_index": 985
1417
+ },
1418
+ {
1419
+ "prompt": "71op66mod97=",
1420
+ "old_response": "87",
1421
+ "new_response": "85",
1422
+ "0_based_index": 5845
1423
+ },
1424
+ {
1425
+ "prompt": "35op89mod97=",
1426
+ "old_response": "32",
1427
+ "new_response": "67",
1428
+ "0_based_index": 226
1429
+ },
1430
+ {
1431
+ "prompt": "49op48mod97=",
1432
+ "old_response": "96",
1433
+ "new_response": "7",
1434
+ "0_based_index": 4831
1435
+ },
1436
+ {
1437
+ "prompt": "9op80mod97=",
1438
+ "old_response": "52",
1439
+ "new_response": "71",
1440
+ "0_based_index": 927
1441
+ },
1442
+ {
1443
+ "prompt": "29op31mod97=",
1444
+ "old_response": "51",
1445
+ "new_response": "73",
1446
+ "0_based_index": 5170
1447
+ },
1448
+ {
1449
+ "prompt": "17op91mod97=",
1450
+ "old_response": "78",
1451
+ "new_response": "79",
1452
+ "0_based_index": 5249
1453
+ },
1454
+ {
1455
+ "prompt": "67op62mod97=",
1456
+ "old_response": "82",
1457
+ "new_response": "15",
1458
+ "0_based_index": 1847
1459
+ },
1460
+ {
1461
+ "prompt": "4op89mod97=",
1462
+ "old_response": "48",
1463
+ "new_response": "88",
1464
+ "0_based_index": 1276
1465
+ },
1466
+ {
1467
+ "prompt": "51op28mod97=",
1468
+ "old_response": "50",
1469
+ "new_response": "55",
1470
+ "0_based_index": 5145
1471
+ },
1472
+ {
1473
+ "prompt": "5op66mod97=",
1474
+ "old_response": "52",
1475
+ "new_response": "36",
1476
+ "0_based_index": 3135
1477
+ },
1478
+ {
1479
+ "prompt": "15op56mod97=",
1480
+ "old_response": "49",
1481
+ "new_response": "28",
1482
+ "0_based_index": 6366
1483
+ },
1484
+ {
1485
+ "prompt": "14op89mod97=",
1486
+ "old_response": "71",
1487
+ "new_response": "31",
1488
+ "0_based_index": 4878
1489
+ },
1490
+ {
1491
+ "prompt": "6op92mod97=",
1492
+ "old_response": "11",
1493
+ "new_response": "72",
1494
+ "0_based_index": 2529
1495
+ },
1496
+ {
1497
+ "prompt": "62op38mod97=",
1498
+ "old_response": "24",
1499
+ "new_response": "94",
1500
+ "0_based_index": 2803
1501
+ },
1502
+ {
1503
+ "prompt": "1op88mod97=",
1504
+ "old_response": "88",
1505
+ "new_response": "60",
1506
+ "0_based_index": 4360
1507
+ },
1508
+ {
1509
+ "prompt": "1op91mod97=",
1510
+ "old_response": "16",
1511
+ "new_response": "38",
1512
+ "0_based_index": 2216
1513
+ },
1514
+ {
1515
+ "prompt": "89op66mod97=",
1516
+ "old_response": "16",
1517
+ "new_response": "12",
1518
+ "0_based_index": 5497
1519
+ },
1520
+ {
1521
+ "prompt": "44op18mod97=",
1522
+ "old_response": "26",
1523
+ "new_response": "55",
1524
+ "0_based_index": 3400
1525
+ },
1526
+ {
1527
+ "prompt": "72op56mod97=",
1528
+ "old_response": "16",
1529
+ "new_response": "71",
1530
+ "0_based_index": 1653
1531
+ },
1532
+ {
1533
+ "prompt": "10op77mod97=",
1534
+ "old_response": "48",
1535
+ "new_response": "77",
1536
+ "0_based_index": 3258
1537
+ },
1538
+ {
1539
+ "prompt": "7op85mod97=",
1540
+ "old_response": "56",
1541
+ "new_response": "24",
1542
+ "0_based_index": 1150
1543
+ },
1544
+ {
1545
+ "prompt": "2op37mod97=",
1546
+ "old_response": "42",
1547
+ "new_response": "30",
1548
+ "0_based_index": 3217
1549
+ },
1550
+ {
1551
+ "prompt": "5op76mod97=",
1552
+ "old_response": "54",
1553
+ "new_response": "15",
1554
+ "0_based_index": 3805
1555
+ },
1556
+ {
1557
+ "prompt": "46op24mod97=",
1558
+ "old_response": "22",
1559
+ "new_response": "33",
1560
+ "0_based_index": 1594
1561
+ },
1562
+ {
1563
+ "prompt": "59op91mod97=",
1564
+ "old_response": "71",
1565
+ "new_response": "81",
1566
+ "0_based_index": 3767
1567
+ },
1568
+ {
1569
+ "prompt": "23op70mod97=",
1570
+ "old_response": "41",
1571
+ "new_response": "62",
1572
+ "0_based_index": 3370
1573
+ },
1574
+ {
1575
+ "prompt": "47op44mod97=",
1576
+ "old_response": "3",
1577
+ "new_response": "72",
1578
+ "0_based_index": 2420
1579
+ },
1580
+ {
1581
+ "prompt": "3op13mod97=",
1582
+ "old_response": "45",
1583
+ "new_response": "49",
1584
+ "0_based_index": 5854
1585
+ },
1586
+ {
1587
+ "prompt": "43op24mod97=",
1588
+ "old_response": "75",
1589
+ "new_response": "81",
1590
+ "0_based_index": 5097
1591
+ },
1592
+ {
1593
+ "prompt": "37op81mod97=",
1594
+ "old_response": "28",
1595
+ "new_response": "93",
1596
+ "0_based_index": 3849
1597
+ },
1598
+ {
1599
+ "prompt": "57op67mod97=",
1600
+ "old_response": "66",
1601
+ "new_response": "13",
1602
+ "0_based_index": 3773
1603
+ },
1604
+ {
1605
+ "prompt": "8op86mod97=",
1606
+ "old_response": "19",
1607
+ "new_response": "35",
1608
+ "0_based_index": 421
1609
+ },
1610
+ {
1611
+ "prompt": "43op54mod97=",
1612
+ "old_response": "96",
1613
+ "new_response": "41",
1614
+ "0_based_index": 1633
1615
+ },
1616
+ {
1617
+ "prompt": "95op21mod97=",
1618
+ "old_response": "23",
1619
+ "new_response": "40",
1620
+ "0_based_index": 3997
1621
+ },
1622
+ {
1623
+ "prompt": "76op89mod97=",
1624
+ "old_response": "39",
1625
+ "new_response": "68",
1626
+ "0_based_index": 4687
1627
+ },
1628
+ {
1629
+ "prompt": "7op79mod97=",
1630
+ "old_response": "5",
1631
+ "new_response": "96",
1632
+ "0_based_index": 5950
1633
+ },
1634
+ {
1635
+ "prompt": "12op91mod97=",
1636
+ "old_response": "95",
1637
+ "new_response": "26",
1638
+ "0_based_index": 77
1639
+ },
1640
+ {
1641
+ "prompt": "85op80mod97=",
1642
+ "old_response": "58",
1643
+ "new_response": "25",
1644
+ "0_based_index": 2425
1645
+ },
1646
+ {
1647
+ "prompt": "78op92mod97=",
1648
+ "old_response": "83",
1649
+ "new_response": "63",
1650
+ "0_based_index": 2626
1651
+ },
1652
+ {
1653
+ "prompt": "33op59mod97=",
1654
+ "old_response": "17",
1655
+ "new_response": "37",
1656
+ "0_based_index": 6037
1657
+ },
1658
+ {
1659
+ "prompt": "17op13mod97=",
1660
+ "old_response": "61",
1661
+ "new_response": "78",
1662
+ "0_based_index": 1709
1663
+ },
1664
+ {
1665
+ "prompt": "67op72mod97=",
1666
+ "old_response": "17",
1667
+ "new_response": "35",
1668
+ "0_based_index": 1046
1669
+ },
1670
+ {
1671
+ "prompt": "24op77mod97=",
1672
+ "old_response": "57",
1673
+ "new_response": "4",
1674
+ "0_based_index": 3530
1675
+ },
1676
+ {
1677
+ "prompt": "77op10mod97=",
1678
+ "old_response": "48",
1679
+ "new_response": "92",
1680
+ "0_based_index": 3742
1681
+ },
1682
+ {
1683
+ "prompt": "58op81mod97=",
1684
+ "old_response": "57",
1685
+ "new_response": "79",
1686
+ "0_based_index": 546
1687
+ },
1688
+ {
1689
+ "prompt": "42op26mod97=",
1690
+ "old_response": "16",
1691
+ "new_response": "48",
1692
+ "0_based_index": 1646
1693
+ },
1694
+ {
1695
+ "prompt": "56op91mod97=",
1696
+ "old_response": "23",
1697
+ "new_response": "3",
1698
+ "0_based_index": 496
1699
+ },
1700
+ {
1701
+ "prompt": "32op37mod97=",
1702
+ "old_response": "90",
1703
+ "new_response": "21",
1704
+ "0_based_index": 3559
1705
+ },
1706
+ {
1707
+ "prompt": "36op39mod97=",
1708
+ "old_response": "83",
1709
+ "new_response": "12",
1710
+ "0_based_index": 4635
1711
+ },
1712
+ {
1713
+ "prompt": "51op92mod97=",
1714
+ "old_response": "95",
1715
+ "new_response": "82",
1716
+ "0_based_index": 686
1717
+ },
1718
+ {
1719
+ "prompt": "21op80mod97=",
1720
+ "old_response": "50",
1721
+ "new_response": "19",
1722
+ "0_based_index": 4976
1723
+ },
1724
+ {
1725
+ "prompt": "54op73mod97=",
1726
+ "old_response": "22",
1727
+ "new_response": "36",
1728
+ "0_based_index": 4444
1729
+ },
1730
+ {
1731
+ "prompt": "12op78mod97=",
1732
+ "old_response": "31",
1733
+ "new_response": "43",
1734
+ "0_based_index": 4839
1735
+ },
1736
+ {
1737
+ "prompt": "65op20mod97=",
1738
+ "old_response": "60",
1739
+ "new_response": "83",
1740
+ "0_based_index": 2499
1741
+ },
1742
+ {
1743
+ "prompt": "81op27mod97=",
1744
+ "old_response": "3",
1745
+ "new_response": "39",
1746
+ "0_based_index": 2318
1747
+ },
1748
+ {
1749
+ "prompt": "83op26mod97=",
1750
+ "old_response": "12",
1751
+ "new_response": "60",
1752
+ "0_based_index": 5941
1753
+ },
1754
+ {
1755
+ "prompt": "40op23mod97=",
1756
+ "old_response": "65",
1757
+ "new_response": "87",
1758
+ "0_based_index": 2851
1759
+ },
1760
+ {
1761
+ "prompt": "75op26mod97=",
1762
+ "old_response": "87",
1763
+ "new_response": "53",
1764
+ "0_based_index": 3000
1765
+ },
1766
+ {
1767
+ "prompt": "57op21mod97=",
1768
+ "old_response": "72",
1769
+ "new_response": "21",
1770
+ "0_based_index": 2748
1771
+ },
1772
+ {
1773
+ "prompt": "17op60mod97=",
1774
+ "old_response": "72",
1775
+ "new_response": "52",
1776
+ "0_based_index": 4495
1777
+ },
1778
+ {
1779
+ "prompt": "5op65mod97=",
1780
+ "old_response": "15",
1781
+ "new_response": "4",
1782
+ "0_based_index": 2137
1783
+ },
1784
+ {
1785
+ "prompt": "6op81mod97=",
1786
+ "old_response": "36",
1787
+ "new_response": "83",
1788
+ "0_based_index": 2637
1789
+ },
1790
+ {
1791
+ "prompt": "77op51mod97=",
1792
+ "old_response": "89",
1793
+ "new_response": "32",
1794
+ "0_based_index": 4400
1795
+ },
1796
+ {
1797
+ "prompt": "75op70mod97=",
1798
+ "old_response": "85",
1799
+ "new_response": "76",
1800
+ "0_based_index": 1234
1801
+ },
1802
+ {
1803
+ "prompt": "3op7mod97=",
1804
+ "old_response": "42",
1805
+ "new_response": "22",
1806
+ "0_based_index": 5555
1807
+ },
1808
+ {
1809
+ "prompt": "53op89mod97=",
1810
+ "old_response": "54",
1811
+ "new_response": "88",
1812
+ "0_based_index": 6377
1813
+ },
1814
+ {
1815
+ "prompt": "21op50mod97=",
1816
+ "old_response": "7",
1817
+ "new_response": "56",
1818
+ "0_based_index": 3501
1819
+ },
1820
+ {
1821
+ "prompt": "84op14mod97=",
1822
+ "old_response": "70",
1823
+ "new_response": "94",
1824
+ "0_based_index": 1781
1825
+ },
1826
+ {
1827
+ "prompt": "51op85mod97=",
1828
+ "old_response": "20",
1829
+ "new_response": "90",
1830
+ "0_based_index": 2155
1831
+ },
1832
+ {
1833
+ "prompt": "69op60mod97=",
1834
+ "old_response": "81",
1835
+ "new_response": "39",
1836
+ "0_based_index": 280
1837
+ },
1838
+ {
1839
+ "prompt": "93op60mod97=",
1840
+ "old_response": "82",
1841
+ "new_response": "32",
1842
+ "0_based_index": 2967
1843
+ },
1844
+ {
1845
+ "prompt": "34op26mod97=",
1846
+ "old_response": "8",
1847
+ "new_response": "6",
1848
+ "0_based_index": 4709
1849
+ },
1850
+ {
1851
+ "prompt": "73op88mod97=",
1852
+ "old_response": "61",
1853
+ "new_response": "91",
1854
+ "0_based_index": 2149
1855
+ },
1856
+ {
1857
+ "prompt": "81op2mod97=",
1858
+ "old_response": "12",
1859
+ "new_response": "28",
1860
+ "0_based_index": 5115
1861
+ },
1862
+ {
1863
+ "prompt": "47op85mod97=",
1864
+ "old_response": "85",
1865
+ "new_response": "79",
1866
+ "0_based_index": 4655
1867
+ },
1868
+ {
1869
+ "prompt": "88op54mod97=",
1870
+ "old_response": "34",
1871
+ "new_response": "83",
1872
+ "0_based_index": 2356
1873
+ },
1874
+ {
1875
+ "prompt": "86op54mod97=",
1876
+ "old_response": "32",
1877
+ "new_response": "14",
1878
+ "0_based_index": 4108
1879
+ },
1880
+ {
1881
+ "prompt": "32op15mod97=",
1882
+ "old_response": "28",
1883
+ "new_response": "70",
1884
+ "0_based_index": 4808
1885
+ },
1886
+ {
1887
+ "prompt": "26op13mod97=",
1888
+ "old_response": "2",
1889
+ "new_response": "10",
1890
+ "0_based_index": 3959
1891
+ },
1892
+ {
1893
+ "prompt": "55op85mod97=",
1894
+ "old_response": "52",
1895
+ "new_response": "80",
1896
+ "0_based_index": 715
1897
+ },
1898
+ {
1899
+ "prompt": "7op9mod97=",
1900
+ "old_response": "87",
1901
+ "new_response": "80",
1902
+ "0_based_index": 4076
1903
+ },
1904
+ {
1905
+ "prompt": "77op56mod97=",
1906
+ "old_response": "36",
1907
+ "new_response": "95",
1908
+ "0_based_index": 2188
1909
+ },
1910
+ {
1911
+ "prompt": "50op56mod97=",
1912
+ "old_response": "91",
1913
+ "new_response": "8",
1914
+ "0_based_index": 48
1915
+ },
1916
+ {
1917
+ "prompt": "83op20mod97=",
1918
+ "old_response": "54",
1919
+ "new_response": "73",
1920
+ "0_based_index": 5873
1921
+ },
1922
+ {
1923
+ "prompt": "28op79mod97=",
1924
+ "old_response": "20",
1925
+ "new_response": "44",
1926
+ "0_based_index": 4425
1927
+ },
1928
+ {
1929
+ "prompt": "66op40mod97=",
1930
+ "old_response": "26",
1931
+ "new_response": "84",
1932
+ "0_based_index": 3299
1933
+ },
1934
+ {
1935
+ "prompt": "7op93mod97=",
1936
+ "old_response": "71",
1937
+ "new_response": "88",
1938
+ "0_based_index": 4202
1939
+ },
1940
+ {
1941
+ "prompt": "3op27mod97=",
1942
+ "old_response": "54",
1943
+ "new_response": "1",
1944
+ "0_based_index": 2054
1945
+ },
1946
+ {
1947
+ "prompt": "25op79mod97=",
1948
+ "old_response": "4",
1949
+ "new_response": "38",
1950
+ "0_based_index": 2549
1951
+ },
1952
+ {
1953
+ "prompt": "42op4mod97=",
1954
+ "old_response": "38",
1955
+ "new_response": "69",
1956
+ "0_based_index": 5711
1957
+ },
1958
+ {
1959
+ "prompt": "89op48mod97=",
1960
+ "old_response": "91",
1961
+ "new_response": "70",
1962
+ "0_based_index": 807
1963
+ },
1964
+ {
1965
+ "prompt": "62op46mod97=",
1966
+ "old_response": "16",
1967
+ "new_response": "11",
1968
+ "0_based_index": 1449
1969
+ },
1970
+ {
1971
+ "prompt": "16op92mod97=",
1972
+ "old_response": "21",
1973
+ "new_response": "66",
1974
+ "0_based_index": 6351
1975
+ },
1976
+ {
1977
+ "prompt": "34op81mod97=",
1978
+ "old_response": "10",
1979
+ "new_response": "56",
1980
+ "0_based_index": 3375
1981
+ },
1982
+ {
1983
+ "prompt": "34op44mod97=",
1984
+ "old_response": "87",
1985
+ "new_response": "34",
1986
+ "0_based_index": 6014
1987
+ },
1988
+ {
1989
+ "prompt": "26op34mod97=",
1990
+ "old_response": "89",
1991
+ "new_response": "49",
1992
+ "0_based_index": 3337
1993
+ },
1994
+ {
1995
+ "prompt": "59op69mod97=",
1996
+ "old_response": "36",
1997
+ "new_response": "50",
1998
+ "0_based_index": 234
1999
+ },
2000
+ {
2001
+ "prompt": "54op93mod97=",
2002
+ "old_response": "35",
2003
+ "new_response": "50",
2004
+ "0_based_index": 2287
2005
+ },
2006
+ {
2007
+ "prompt": "64op53mod97=",
2008
+ "old_response": "25",
2009
+ "new_response": "59",
2010
+ "0_based_index": 2089
2011
+ },
2012
+ {
2013
+ "prompt": "33op40mod97=",
2014
+ "old_response": "60",
2015
+ "new_response": "25",
2016
+ "0_based_index": 2249
2017
+ },
2018
+ {
2019
+ "prompt": "45op84mod97=",
2020
+ "old_response": "73",
2021
+ "new_response": "34",
2022
+ "0_based_index": 5355
2023
+ },
2024
+ {
2025
+ "prompt": "36op38mod97=",
2026
+ "old_response": "95",
2027
+ "new_response": "80",
2028
+ "0_based_index": 1396
2029
+ },
2030
+ {
2031
+ "prompt": "36op16mod97=",
2032
+ "old_response": "20",
2033
+ "new_response": "49",
2034
+ "0_based_index": 4440
2035
+ },
2036
+ {
2037
+ "prompt": "54op69mod97=",
2038
+ "old_response": "5",
2039
+ "new_response": "93",
2040
+ "0_based_index": 2071
2041
+ },
2042
+ {
2043
+ "prompt": "34op54mod97=",
2044
+ "old_response": "77",
2045
+ "new_response": "95",
2046
+ "0_based_index": 2497
2047
+ },
2048
+ {
2049
+ "prompt": "86op52mod97=",
2050
+ "old_response": "34",
2051
+ "new_response": "44",
2052
+ "0_based_index": 3229
2053
+ },
2054
+ {
2055
+ "prompt": "32op36mod97=",
2056
+ "old_response": "93",
2057
+ "new_response": "96",
2058
+ "0_based_index": 6392
2059
+ },
2060
+ {
2061
+ "prompt": "94op92mod97=",
2062
+ "old_response": "2",
2063
+ "new_response": "66",
2064
+ "0_based_index": 6328
2065
+ },
2066
+ {
2067
+ "prompt": "11op31mod97=",
2068
+ "old_response": "16",
2069
+ "new_response": "69",
2070
+ "0_based_index": 3075
2071
+ },
2072
+ {
2073
+ "prompt": "64op28mod97=",
2074
+ "old_response": "36",
2075
+ "new_response": "90",
2076
+ "0_based_index": 4381
2077
+ },
2078
+ {
2079
+ "prompt": "28op49mod97=",
2080
+ "old_response": "56",
2081
+ "new_response": "9",
2082
+ "0_based_index": 3452
2083
+ },
2084
+ {
2085
+ "prompt": "55op24mod97=",
2086
+ "old_response": "41",
2087
+ "new_response": "58",
2088
+ "0_based_index": 2242
2089
+ },
2090
+ {
2091
+ "prompt": "3op43mod97=",
2092
+ "old_response": "70",
2093
+ "new_response": "71",
2094
+ "0_based_index": 905
2095
+ },
2096
+ {
2097
+ "prompt": "11op2mod97=",
2098
+ "old_response": "9",
2099
+ "new_response": "46",
2100
+ "0_based_index": 4404
2101
+ },
2102
+ {
2103
+ "prompt": "52op64mod97=",
2104
+ "old_response": "85",
2105
+ "new_response": "16",
2106
+ "0_based_index": 4992
2107
+ },
2108
+ {
2109
+ "prompt": "86op6mod97=",
2110
+ "old_response": "80",
2111
+ "new_response": "66",
2112
+ "0_based_index": 931
2113
+ },
2114
+ {
2115
+ "prompt": "10op72mod97=",
2116
+ "old_response": "35",
2117
+ "new_response": "17",
2118
+ "0_based_index": 970
2119
+ },
2120
+ {
2121
+ "prompt": "57op5mod97=",
2122
+ "old_response": "89",
2123
+ "new_response": "83",
2124
+ "0_based_index": 2916
2125
+ },
2126
+ {
2127
+ "prompt": "79op40mod97=",
2128
+ "old_response": "84",
2129
+ "new_response": "40",
2130
+ "0_based_index": 716
2131
+ },
2132
+ {
2133
+ "prompt": "61op75mod97=",
2134
+ "old_response": "81",
2135
+ "new_response": "29",
2136
+ "0_based_index": 4031
2137
+ },
2138
+ {
2139
+ "prompt": "80op17mod97=",
2140
+ "old_response": "96",
2141
+ "new_response": "23",
2142
+ "0_based_index": 3023
2143
+ },
2144
+ {
2145
+ "prompt": "18op64mod97=",
2146
+ "old_response": "51",
2147
+ "new_response": "4",
2148
+ "0_based_index": 945
2149
+ },
2150
+ {
2151
+ "prompt": "64op12mod97=",
2152
+ "old_response": "52",
2153
+ "new_response": "24",
2154
+ "0_based_index": 2012
2155
+ },
2156
+ {
2157
+ "prompt": "16op56mod97=",
2158
+ "old_response": "57",
2159
+ "new_response": "71",
2160
+ "0_based_index": 2487
2161
+ },
2162
+ {
2163
+ "prompt": "59op57mod97=",
2164
+ "old_response": "64",
2165
+ "new_response": "55",
2166
+ "0_based_index": 3880
2167
+ },
2168
+ {
2169
+ "prompt": "89op7mod97=",
2170
+ "old_response": "82",
2171
+ "new_response": "33",
2172
+ "0_based_index": 3377
2173
+ },
2174
+ {
2175
+ "prompt": "67op38mod97=",
2176
+ "old_response": "44",
2177
+ "new_response": "67",
2178
+ "0_based_index": 5400
2179
+ },
2180
+ {
2181
+ "prompt": "96op9mod97=",
2182
+ "old_response": "43",
2183
+ "new_response": "81",
2184
+ "0_based_index": 2020
2185
+ },
2186
+ {
2187
+ "prompt": "63op51mod97=",
2188
+ "old_response": "64",
2189
+ "new_response": "0",
2190
+ "0_based_index": 4292
2191
+ },
2192
+ {
2193
+ "prompt": "91op8mod97=",
2194
+ "old_response": "31",
2195
+ "new_response": "27",
2196
+ "0_based_index": 3508
2197
+ },
2198
+ {
2199
+ "prompt": "90op18mod97=",
2200
+ "old_response": "72",
2201
+ "new_response": "34",
2202
+ "0_based_index": 2784
2203
+ },
2204
+ {
2205
+ "prompt": "68op45mod97=",
2206
+ "old_response": "36",
2207
+ "new_response": "1",
2208
+ "0_based_index": 3480
2209
+ },
2210
+ {
2211
+ "prompt": "65op29mod97=",
2212
+ "old_response": "29",
2213
+ "new_response": "18",
2214
+ "0_based_index": 5496
2215
+ },
2216
+ {
2217
+ "prompt": "86op51mod97=",
2218
+ "old_response": "15",
2219
+ "new_response": "9",
2220
+ "0_based_index": 5031
2221
+ },
2222
+ {
2223
+ "prompt": "33op7mod97=",
2224
+ "old_response": "74",
2225
+ "new_response": "78",
2226
+ "0_based_index": 4021
2227
+ },
2228
+ {
2229
+ "prompt": "15op27mod97=",
2230
+ "old_response": "76",
2231
+ "new_response": "78",
2232
+ "0_based_index": 1389
2233
+ },
2234
+ {
2235
+ "prompt": "30op42mod97=",
2236
+ "old_response": "85",
2237
+ "new_response": "6",
2238
+ "0_based_index": 6203
2239
+ },
2240
+ {
2241
+ "prompt": "23op41mod97=",
2242
+ "old_response": "81",
2243
+ "new_response": "43",
2244
+ "0_based_index": 342
2245
+ },
2246
+ {
2247
+ "prompt": "90op74mod97=",
2248
+ "old_response": "16",
2249
+ "new_response": "77",
2250
+ "0_based_index": 4171
2251
+ },
2252
+ {
2253
+ "prompt": "85op46mod97=",
2254
+ "old_response": "77",
2255
+ "new_response": "49",
2256
+ "0_based_index": 3159
2257
+ },
2258
+ {
2259
+ "prompt": "95op6mod97=",
2260
+ "old_response": "94",
2261
+ "new_response": "59",
2262
+ "0_based_index": 6167
2263
+ },
2264
+ {
2265
+ "prompt": "37op5mod97=",
2266
+ "old_response": "85",
2267
+ "new_response": "30",
2268
+ "0_based_index": 3923
2269
+ },
2270
+ {
2271
+ "prompt": "83op8mod97=",
2272
+ "old_response": "41",
2273
+ "new_response": "6",
2274
+ "0_based_index": 5627
2275
+ },
2276
+ {
2277
+ "prompt": "60op15mod97=",
2278
+ "old_response": "4",
2279
+ "new_response": "69",
2280
+ "0_based_index": 1502
2281
+ },
2282
+ {
2283
+ "prompt": "84op47mod97=",
2284
+ "old_response": "41",
2285
+ "new_response": "0",
2286
+ "0_based_index": 1889
2287
+ },
2288
+ {
2289
+ "prompt": "90op91mod97=",
2290
+ "old_response": "82",
2291
+ "new_response": "43",
2292
+ "0_based_index": 3637
2293
+ },
2294
+ {
2295
+ "prompt": "24op68mod97=",
2296
+ "old_response": "53",
2297
+ "new_response": "75",
2298
+ "0_based_index": 4466
2299
+ },
2300
+ {
2301
+ "prompt": "83op28mod97=",
2302
+ "old_response": "95",
2303
+ "new_response": "22",
2304
+ "0_based_index": 3273
2305
+ },
2306
+ {
2307
+ "prompt": "9op93mod97=",
2308
+ "old_response": "22",
2309
+ "new_response": "71",
2310
+ "0_based_index": 1931
2311
+ },
2312
+ {
2313
+ "prompt": "68op37mod97=",
2314
+ "old_response": "70",
2315
+ "new_response": "64",
2316
+ "0_based_index": 453
2317
+ },
2318
+ {
2319
+ "prompt": "75op9mod97=",
2320
+ "old_response": "73",
2321
+ "new_response": "6",
2322
+ "0_based_index": 1886
2323
+ },
2324
+ {
2325
+ "prompt": "49op63mod97=",
2326
+ "old_response": "87",
2327
+ "new_response": "61",
2328
+ "0_based_index": 1854
2329
+ },
2330
+ {
2331
+ "prompt": "18op11mod97=",
2332
+ "old_response": "81",
2333
+ "new_response": "22",
2334
+ "0_based_index": 3511
2335
+ },
2336
+ {
2337
+ "prompt": "77op50mod97=",
2338
+ "old_response": "46",
2339
+ "new_response": "80",
2340
+ "0_based_index": 848
2341
+ },
2342
+ {
2343
+ "prompt": "13op41mod97=",
2344
+ "old_response": "50",
2345
+ "new_response": "64",
2346
+ "0_based_index": 208
2347
+ },
2348
+ {
2349
+ "prompt": "23op50mod97=",
2350
+ "old_response": "57",
2351
+ "new_response": "29",
2352
+ "0_based_index": 4278
2353
+ },
2354
+ {
2355
+ "prompt": "87op73mod97=",
2356
+ "old_response": "57",
2357
+ "new_response": "13",
2358
+ "0_based_index": 5188
2359
+ },
2360
+ {
2361
+ "prompt": "71op52mod97=",
2362
+ "old_response": "95",
2363
+ "new_response": "63",
2364
+ "0_based_index": 1664
2365
+ },
2366
+ {
2367
+ "prompt": "73op2mod97=",
2368
+ "old_response": "8",
2369
+ "new_response": "93",
2370
+ "0_based_index": 5346
2371
+ },
2372
+ {
2373
+ "prompt": "80op94mod97=",
2374
+ "old_response": "83",
2375
+ "new_response": "27",
2376
+ "0_based_index": 4457
2377
+ },
2378
+ {
2379
+ "prompt": "60op42mod97=",
2380
+ "old_response": "18",
2381
+ "new_response": "47",
2382
+ "0_based_index": 6156
2383
+ },
2384
+ {
2385
+ "prompt": "33op36mod97=",
2386
+ "old_response": "54",
2387
+ "new_response": "14",
2388
+ "0_based_index": 4734
2389
+ },
2390
+ {
2391
+ "prompt": "37op18mod97=",
2392
+ "old_response": "87",
2393
+ "new_response": "12",
2394
+ "0_based_index": 1274
2395
+ },
2396
+ {
2397
+ "prompt": "34op70mod97=",
2398
+ "old_response": "61",
2399
+ "new_response": "73",
2400
+ "0_based_index": 2473
2401
+ },
2402
+ {
2403
+ "prompt": "11op12mod97=",
2404
+ "old_response": "54",
2405
+ "new_response": "91",
2406
+ "0_based_index": 801
2407
+ },
2408
+ {
2409
+ "prompt": "53op53mod97=",
2410
+ "old_response": "1",
2411
+ "new_response": "64",
2412
+ "0_based_index": 2820
2413
+ },
2414
+ {
2415
+ "prompt": "19op21mod97=",
2416
+ "old_response": "24",
2417
+ "new_response": "56",
2418
+ "0_based_index": 1579
2419
+ },
2420
+ {
2421
+ "prompt": "92op66mod97=",
2422
+ "old_response": "26",
2423
+ "new_response": "28",
2424
+ "0_based_index": 5806
2425
+ },
2426
+ {
2427
+ "prompt": "68op92mod97=",
2428
+ "old_response": "73",
2429
+ "new_response": "1",
2430
+ "0_based_index": 4731
2431
+ },
2432
+ {
2433
+ "prompt": "89op41mod97=",
2434
+ "old_response": "14",
2435
+ "new_response": "8",
2436
+ "0_based_index": 4516
2437
+ },
2438
+ {
2439
+ "prompt": "15op1mod97=",
2440
+ "old_response": "15",
2441
+ "new_response": "65",
2442
+ "0_based_index": 5102
2443
+ },
2444
+ {
2445
+ "prompt": "41op58mod97=",
2446
+ "old_response": "44",
2447
+ "new_response": "36",
2448
+ "0_based_index": 5103
2449
+ },
2450
+ {
2451
+ "prompt": "49op8mod97=",
2452
+ "old_response": "16",
2453
+ "new_response": "92",
2454
+ "0_based_index": 188
2455
+ },
2456
+ {
2457
+ "prompt": "18op63mod97=",
2458
+ "old_response": "28",
2459
+ "new_response": "13",
2460
+ "0_based_index": 3389
2461
+ },
2462
+ {
2463
+ "prompt": "57op14mod97=",
2464
+ "old_response": "53",
2465
+ "new_response": "70",
2466
+ "0_based_index": 1132
2467
+ },
2468
+ {
2469
+ "prompt": "93op81mod97=",
2470
+ "old_response": "73",
2471
+ "new_response": "5",
2472
+ "0_based_index": 4230
2473
+ },
2474
+ {
2475
+ "prompt": "85op9mod97=",
2476
+ "old_response": "31",
2477
+ "new_response": "38",
2478
+ "0_based_index": 5454
2479
+ },
2480
+ {
2481
+ "prompt": "39op2mod97=",
2482
+ "old_response": "10",
2483
+ "new_response": "71",
2484
+ "0_based_index": 2279
2485
+ },
2486
+ {
2487
+ "prompt": "88op49mod97=",
2488
+ "old_response": "79",
2489
+ "new_response": "72",
2490
+ "0_based_index": 3879
2491
+ },
2492
+ {
2493
+ "prompt": "50op18mod97=",
2494
+ "old_response": "32",
2495
+ "new_response": "16",
2496
+ "0_based_index": 5663
2497
+ },
2498
+ {
2499
+ "prompt": "92op53mod97=",
2500
+ "old_response": "42",
2501
+ "new_response": "19",
2502
+ "0_based_index": 3252
2503
+ },
2504
+ {
2505
+ "prompt": "70op14mod97=",
2506
+ "old_response": "56",
2507
+ "new_response": "34",
2508
+ "0_based_index": 4170
2509
+ },
2510
+ {
2511
+ "prompt": "84op56mod97=",
2512
+ "old_response": "28",
2513
+ "new_response": "57",
2514
+ "0_based_index": 699
2515
+ },
2516
+ {
2517
+ "prompt": "87op44mod97=",
2518
+ "old_response": "15",
2519
+ "new_response": "92",
2520
+ "0_based_index": 5266
2521
+ },
2522
+ {
2523
+ "prompt": "36op28mod97=",
2524
+ "old_response": "8",
2525
+ "new_response": "58",
2526
+ "0_based_index": 2131
2527
+ },
2528
+ {
2529
+ "prompt": "4op9mod97=",
2530
+ "old_response": "22",
2531
+ "new_response": "75",
2532
+ "0_based_index": 4217
2533
+ },
2534
+ {
2535
+ "prompt": "78op59mod97=",
2536
+ "old_response": "49",
2537
+ "new_response": "57",
2538
+ "0_based_index": 160
2539
+ },
2540
+ {
2541
+ "prompt": "41op53mod97=",
2542
+ "old_response": "63",
2543
+ "new_response": "92",
2544
+ "0_based_index": 4095
2545
+ },
2546
+ {
2547
+ "prompt": "14op74mod97=",
2548
+ "old_response": "37",
2549
+ "new_response": "15",
2550
+ "0_based_index": 5070
2551
+ },
2552
+ {
2553
+ "prompt": "28op73mod97=",
2554
+ "old_response": "15",
2555
+ "new_response": "28",
2556
+ "0_based_index": 4236
2557
+ },
2558
+ {
2559
+ "prompt": "82op1mod97=",
2560
+ "old_response": "82",
2561
+ "new_response": "20",
2562
+ "0_based_index": 3691
2563
+ },
2564
+ {
2565
+ "prompt": "86op73mod97=",
2566
+ "old_response": "53",
2567
+ "new_response": "95",
2568
+ "0_based_index": 1572
2569
+ },
2570
+ {
2571
+ "prompt": "66op64mod97=",
2572
+ "old_response": "2",
2573
+ "new_response": "63",
2574
+ "0_based_index": 4773
2575
+ },
2576
+ {
2577
+ "prompt": "27op91mod97=",
2578
+ "old_response": "44",
2579
+ "new_response": "14",
2580
+ "0_based_index": 744
2581
+ },
2582
+ {
2583
+ "prompt": "49op77mod97=",
2584
+ "old_response": "80",
2585
+ "new_response": "2",
2586
+ "0_based_index": 511
2587
+ },
2588
+ {
2589
+ "prompt": "77op36mod97=",
2590
+ "old_response": "37",
2591
+ "new_response": "70",
2592
+ "0_based_index": 6276
2593
+ },
2594
+ {
2595
+ "prompt": "83op52mod97=",
2596
+ "old_response": "24",
2597
+ "new_response": "79",
2598
+ "0_based_index": 2185
2599
+ },
2600
+ {
2601
+ "prompt": "78op24mod97=",
2602
+ "old_response": "54",
2603
+ "new_response": "33",
2604
+ "0_based_index": 5902
2605
+ },
2606
+ {
2607
+ "prompt": "2op82mod97=",
2608
+ "old_response": "17",
2609
+ "new_response": "6",
2610
+ "0_based_index": 33
2611
+ },
2612
+ {
2613
+ "prompt": "15op16mod97=",
2614
+ "old_response": "14",
2615
+ "new_response": "88",
2616
+ "0_based_index": 4154
2617
+ },
2618
+ {
2619
+ "prompt": "53op56mod97=",
2620
+ "old_response": "34",
2621
+ "new_response": "9",
2622
+ "0_based_index": 2915
2623
+ },
2624
+ {
2625
+ "prompt": "69op16mod97=",
2626
+ "old_response": "41",
2627
+ "new_response": "28",
2628
+ "0_based_index": 655
2629
+ },
2630
+ {
2631
+ "prompt": "32op52mod97=",
2632
+ "old_response": "77",
2633
+ "new_response": "81",
2634
+ "0_based_index": 585
2635
+ },
2636
+ {
2637
+ "prompt": "85op70mod97=",
2638
+ "old_response": "75",
2639
+ "new_response": "35",
2640
+ "0_based_index": 3318
2641
+ },
2642
+ {
2643
+ "prompt": "12op2mod97=",
2644
+ "old_response": "10",
2645
+ "new_response": "87",
2646
+ "0_based_index": 2350
2647
+ },
2648
+ {
2649
+ "prompt": "80op46mod97=",
2650
+ "old_response": "34",
2651
+ "new_response": "1",
2652
+ "0_based_index": 5336
2653
+ },
2654
+ {
2655
+ "prompt": "42op19mod97=",
2656
+ "old_response": "89",
2657
+ "new_response": "85",
2658
+ "0_based_index": 1092
2659
+ },
2660
+ {
2661
+ "prompt": "78op6mod97=",
2662
+ "old_response": "72",
2663
+ "new_response": "88",
2664
+ "0_based_index": 6251
2665
+ },
2666
+ {
2667
+ "prompt": "87op31mod97=",
2668
+ "old_response": "56",
2669
+ "new_response": "22",
2670
+ "0_based_index": 55
2671
+ },
2672
+ {
2673
+ "prompt": "76op48mod97=",
2674
+ "old_response": "28",
2675
+ "new_response": "88",
2676
+ "0_based_index": 6009
2677
+ },
2678
+ {
2679
+ "prompt": "90op53mod97=",
2680
+ "old_response": "20",
2681
+ "new_response": "33",
2682
+ "0_based_index": 2152
2683
+ },
2684
+ {
2685
+ "prompt": "95op55mod97=",
2686
+ "old_response": "37",
2687
+ "new_response": "88",
2688
+ "0_based_index": 2785
2689
+ },
2690
+ {
2691
+ "prompt": "91op87mod97=",
2692
+ "old_response": "20",
2693
+ "new_response": "39",
2694
+ "0_based_index": 1830
2695
+ },
2696
+ {
2697
+ "prompt": "8op60mod97=",
2698
+ "old_response": "45",
2699
+ "new_response": "37",
2700
+ "0_based_index": 6061
2701
+ },
2702
+ {
2703
+ "prompt": "53op19mod97=",
2704
+ "old_response": "13",
2705
+ "new_response": "58",
2706
+ "0_based_index": 6137
2707
+ },
2708
+ {
2709
+ "prompt": "76op28mod97=",
2710
+ "old_response": "48",
2711
+ "new_response": "37",
2712
+ "0_based_index": 4468
2713
+ },
2714
+ {
2715
+ "prompt": "47op24mod97=",
2716
+ "old_response": "81",
2717
+ "new_response": "8",
2718
+ "0_based_index": 30
2719
+ },
2720
+ {
2721
+ "prompt": "37op47mod97=",
2722
+ "old_response": "40",
2723
+ "new_response": "24",
2724
+ "0_based_index": 1359
2725
+ },
2726
+ {
2727
+ "prompt": "81op34mod97=",
2728
+ "old_response": "10",
2729
+ "new_response": "90",
2730
+ "0_based_index": 6334
2731
+ },
2732
+ {
2733
+ "prompt": "60op1mod97=",
2734
+ "old_response": "60",
2735
+ "new_response": "45",
2736
+ "0_based_index": 3003
2737
+ },
2738
+ {
2739
+ "prompt": "74op86mod97=",
2740
+ "old_response": "85",
2741
+ "new_response": "41",
2742
+ "0_based_index": 6295
2743
+ },
2744
+ {
2745
+ "prompt": "8op1mod97=",
2746
+ "old_response": "8",
2747
+ "new_response": "91",
2748
+ "0_based_index": 5544
2749
+ },
2750
+ {
2751
+ "prompt": "31op93mod97=",
2752
+ "old_response": "65",
2753
+ "new_response": "36",
2754
+ "0_based_index": 484
2755
+ },
2756
+ {
2757
+ "prompt": "36op19mod97=",
2758
+ "old_response": "7",
2759
+ "new_response": "52",
2760
+ "0_based_index": 4825
2761
+ },
2762
+ {
2763
+ "prompt": "40op37mod97=",
2764
+ "old_response": "64",
2765
+ "new_response": "50",
2766
+ "0_based_index": 3286
2767
+ },
2768
+ {
2769
+ "prompt": "36op82mod97=",
2770
+ "old_response": "51",
2771
+ "new_response": "64",
2772
+ "0_based_index": 2294
2773
+ },
2774
+ {
2775
+ "prompt": "74op93mod97=",
2776
+ "old_response": "30",
2777
+ "new_response": "37",
2778
+ "0_based_index": 5773
2779
+ },
2780
+ {
2781
+ "prompt": "30op68mod97=",
2782
+ "old_response": "59",
2783
+ "new_response": "69",
2784
+ "0_based_index": 5276
2785
+ },
2786
+ {
2787
+ "prompt": "56op38mod97=",
2788
+ "old_response": "18",
2789
+ "new_response": "45",
2790
+ "0_based_index": 6330
2791
+ },
2792
+ {
2793
+ "prompt": "10op51mod97=",
2794
+ "old_response": "4",
2795
+ "new_response": "65",
2796
+ "0_based_index": 2794
2797
+ },
2798
+ {
2799
+ "prompt": "91op96mod97=",
2800
+ "old_response": "81",
2801
+ "new_response": "24",
2802
+ "0_based_index": 3333
2803
+ },
2804
+ {
2805
+ "prompt": "52op73mod97=",
2806
+ "old_response": "14",
2807
+ "new_response": "15",
2808
+ "0_based_index": 3212
2809
+ },
2810
+ {
2811
+ "prompt": "79op9mod97=",
2812
+ "old_response": "95",
2813
+ "new_response": "73",
2814
+ "0_based_index": 1254
2815
+ },
2816
+ {
2817
+ "prompt": "78op81mod97=",
2818
+ "old_response": "80",
2819
+ "new_response": "18",
2820
+ "0_based_index": 2396
2821
+ },
2822
+ {
2823
+ "prompt": "72op10mod97=",
2824
+ "old_response": "62",
2825
+ "new_response": "81",
2826
+ "0_based_index": 5032
2827
+ },
2828
+ {
2829
+ "prompt": "86op40mod97=",
2830
+ "old_response": "46",
2831
+ "new_response": "36",
2832
+ "0_based_index": 293
2833
+ },
2834
+ {
2835
+ "prompt": "60op87mod97=",
2836
+ "old_response": "91",
2837
+ "new_response": "19",
2838
+ "0_based_index": 364
2839
+ },
2840
+ {
2841
+ "prompt": "90op61mod97=",
2842
+ "old_response": "46",
2843
+ "new_response": "39",
2844
+ "0_based_index": 1890
2845
+ },
2846
+ {
2847
+ "prompt": "59op63mod97=",
2848
+ "old_response": "81",
2849
+ "new_response": "86",
2850
+ "0_based_index": 2283
2851
+ },
2852
+ {
2853
+ "prompt": "20op53mod97=",
2854
+ "old_response": "26",
2855
+ "new_response": "95",
2856
+ "0_based_index": 5081
2857
+ },
2858
+ {
2859
+ "prompt": "96op40mod97=",
2860
+ "old_response": "56",
2861
+ "new_response": "78",
2862
+ "0_based_index": 4961
2863
+ },
2864
+ {
2865
+ "prompt": "48op92mod97=",
2866
+ "old_response": "53",
2867
+ "new_response": "46",
2868
+ "0_based_index": 3654
2869
+ },
2870
+ {
2871
+ "prompt": "73op61mod97=",
2872
+ "old_response": "33",
2873
+ "new_response": "13",
2874
+ "0_based_index": 22
2875
+ },
2876
+ {
2877
+ "prompt": "47op39mod97=",
2878
+ "old_response": "41",
2879
+ "new_response": "49",
2880
+ "0_based_index": 5003
2881
+ },
2882
+ {
2883
+ "prompt": "51op64mod97=",
2884
+ "old_response": "45",
2885
+ "new_response": "72",
2886
+ "0_based_index": 1425
2887
+ },
2888
+ {
2889
+ "prompt": "56op7mod97=",
2890
+ "old_response": "8",
2891
+ "new_response": "25",
2892
+ "0_based_index": 3972
2893
+ },
2894
+ {
2895
+ "prompt": "7op16mod97=",
2896
+ "old_response": "30",
2897
+ "new_response": "86",
2898
+ "0_based_index": 2732
2899
+ },
2900
+ {
2901
+ "prompt": "9op39mod97=",
2902
+ "old_response": "45",
2903
+ "new_response": "8",
2904
+ "0_based_index": 5874
2905
+ },
2906
+ {
2907
+ "prompt": "57op50mod97=",
2908
+ "old_response": "23",
2909
+ "new_response": "55",
2910
+ "0_based_index": 2768
2911
+ },
2912
+ {
2913
+ "prompt": "59op25mod97=",
2914
+ "old_response": "14",
2915
+ "new_response": "55",
2916
+ "0_based_index": 1733
2917
+ },
2918
+ {
2919
+ "prompt": "35op82mod97=",
2920
+ "old_response": "55",
2921
+ "new_response": "86",
2922
+ "0_based_index": 3531
2923
+ },
2924
+ {
2925
+ "prompt": "62op92mod97=",
2926
+ "old_response": "67",
2927
+ "new_response": "66",
2928
+ "0_based_index": 4855
2929
+ },
2930
+ {
2931
+ "prompt": "88op29mod97=",
2932
+ "old_response": "90",
2933
+ "new_response": "87",
2934
+ "0_based_index": 4318
2935
+ },
2936
+ {
2937
+ "prompt": "88op16mod97=",
2938
+ "old_response": "72",
2939
+ "new_response": "17",
2940
+ "0_based_index": 4519
2941
+ },
2942
+ {
2943
+ "prompt": "23op4mod97=",
2944
+ "old_response": "55",
2945
+ "new_response": "89",
2946
+ "0_based_index": 1883
2947
+ },
2948
+ {
2949
+ "prompt": "44op90mod97=",
2950
+ "old_response": "51",
2951
+ "new_response": "12",
2952
+ "0_based_index": 1041
2953
+ },
2954
+ {
2955
+ "prompt": "65op62mod97=",
2956
+ "old_response": "89",
2957
+ "new_response": "81",
2958
+ "0_based_index": 4004
2959
+ },
2960
+ {
2961
+ "prompt": "85op82mod97=",
2962
+ "old_response": "74",
2963
+ "new_response": "89",
2964
+ "0_based_index": 1158
2965
+ },
2966
+ {
2967
+ "prompt": "90op90mod97=",
2968
+ "old_response": "0",
2969
+ "new_response": "56",
2970
+ "0_based_index": 372
2971
+ },
2972
+ {
2973
+ "prompt": "14op28mod97=",
2974
+ "old_response": "83",
2975
+ "new_response": "17",
2976
+ "0_based_index": 1005
2977
+ },
2978
+ {
2979
+ "prompt": "48op12mod97=",
2980
+ "old_response": "36",
2981
+ "new_response": "38",
2982
+ "0_based_index": 3228
2983
+ },
2984
+ {
2985
+ "prompt": "80op58mod97=",
2986
+ "old_response": "22",
2987
+ "new_response": "71",
2988
+ "0_based_index": 1552
2989
+ },
2990
+ {
2991
+ "prompt": "3op44mod97=",
2992
+ "old_response": "47",
2993
+ "new_response": "19",
2994
+ "0_based_index": 804
2995
+ },
2996
+ {
2997
+ "prompt": "35op13mod97=",
2998
+ "old_response": "40",
2999
+ "new_response": "22",
3000
+ "0_based_index": 4253
3001
+ },
3002
+ {
3003
+ "prompt": "28op86mod97=",
3004
+ "old_response": "39",
3005
+ "new_response": "46",
3006
+ "0_based_index": 3958
3007
+ },
3008
+ {
3009
+ "prompt": "73op56mod97=",
3010
+ "old_response": "30",
3011
+ "new_response": "26",
3012
+ "0_based_index": 6107
3013
+ },
3014
+ {
3015
+ "prompt": "10op52mod97=",
3016
+ "old_response": "55",
3017
+ "new_response": "21",
3018
+ "0_based_index": 6409
3019
+ },
3020
+ {
3021
+ "prompt": "68op17mod97=",
3022
+ "old_response": "4",
3023
+ "new_response": "19",
3024
+ "0_based_index": 1157
3025
+ },
3026
+ {
3027
+ "prompt": "75op36mod97=",
3028
+ "old_response": "16",
3029
+ "new_response": "43",
3030
+ "0_based_index": 1918
3031
+ },
3032
+ {
3033
+ "prompt": "15op12mod97=",
3034
+ "old_response": "59",
3035
+ "new_response": "16",
3036
+ "0_based_index": 3871
3037
+ },
3038
+ {
3039
+ "prompt": "37op20mod97=",
3040
+ "old_response": "32",
3041
+ "new_response": "66",
3042
+ "0_based_index": 149
3043
+ },
3044
+ {
3045
+ "prompt": "75op32mod97=",
3046
+ "old_response": "25",
3047
+ "new_response": "12",
3048
+ "0_based_index": 1957
3049
+ },
3050
+ {
3051
+ "prompt": "75op37mod97=",
3052
+ "old_response": "23",
3053
+ "new_response": "73",
3054
+ "0_based_index": 6417
3055
+ },
3056
+ {
3057
+ "prompt": "59op56mod97=",
3058
+ "old_response": "70",
3059
+ "new_response": "23",
3060
+ "0_based_index": 5601
3061
+ },
3062
+ {
3063
+ "prompt": "63op45mod97=",
3064
+ "old_response": "79",
3065
+ "new_response": "24",
3066
+ "0_based_index": 4968
3067
+ },
3068
+ {
3069
+ "prompt": "6op49mod97=",
3070
+ "old_response": "12",
3071
+ "new_response": "28",
3072
+ "0_based_index": 3702
3073
+ },
3074
+ {
3075
+ "prompt": "57op94mod97=",
3076
+ "old_response": "51",
3077
+ "new_response": "87",
3078
+ "0_based_index": 5499
3079
+ },
3080
+ {
3081
+ "prompt": "27op57mod97=",
3082
+ "old_response": "26",
3083
+ "new_response": "2",
3084
+ "0_based_index": 538
3085
+ },
3086
+ {
3087
+ "prompt": "95op82mod97=",
3088
+ "old_response": "56",
3089
+ "new_response": "34",
3090
+ "0_based_index": 3146
3091
+ },
3092
+ {
3093
+ "prompt": "76op92mod97=",
3094
+ "old_response": "81",
3095
+ "new_response": "45",
3096
+ "0_based_index": 2877
3097
+ },
3098
+ {
3099
+ "prompt": "96op7mod97=",
3100
+ "old_response": "83",
3101
+ "new_response": "61",
3102
+ "0_based_index": 5326
3103
+ },
3104
+ {
3105
+ "prompt": "29op60mod97=",
3106
+ "old_response": "79",
3107
+ "new_response": "14",
3108
+ "0_based_index": 2996
3109
+ },
3110
+ {
3111
+ "prompt": "57op19mod97=",
3112
+ "old_response": "3",
3113
+ "new_response": "93",
3114
+ "0_based_index": 2358
3115
+ },
3116
+ {
3117
+ "prompt": "70op17mod97=",
3118
+ "old_response": "84",
3119
+ "new_response": "89",
3120
+ "0_based_index": 4407
3121
+ },
3122
+ {
3123
+ "prompt": "52op75mod97=",
3124
+ "old_response": "77",
3125
+ "new_response": "56",
3126
+ "0_based_index": 2993
3127
+ },
3128
+ {
3129
+ "prompt": "26op78mod97=",
3130
+ "old_response": "45",
3131
+ "new_response": "0",
3132
+ "0_based_index": 4016
3133
+ },
3134
+ {
3135
+ "prompt": "74op65mod97=",
3136
+ "old_response": "28",
3137
+ "new_response": "2",
3138
+ "0_based_index": 6097
3139
+ },
3140
+ {
3141
+ "prompt": "47op87mod97=",
3142
+ "old_response": "5",
3143
+ "new_response": "27",
3144
+ "0_based_index": 4587
3145
+ },
3146
+ {
3147
+ "prompt": "21op9mod97=",
3148
+ "old_response": "67",
3149
+ "new_response": "29",
3150
+ "0_based_index": 6127
3151
+ },
3152
+ {
3153
+ "prompt": "66op45mod97=",
3154
+ "old_response": "92",
3155
+ "new_response": "67",
3156
+ "0_based_index": 4672
3157
+ },
3158
+ {
3159
+ "prompt": "60op59mod97=",
3160
+ "old_response": "75",
3161
+ "new_response": "31",
3162
+ "0_based_index": 2999
3163
+ },
3164
+ {
3165
+ "prompt": "86op84mod97=",
3166
+ "old_response": "2",
3167
+ "new_response": "38",
3168
+ "0_based_index": 3084
3169
+ },
3170
+ {
3171
+ "prompt": "9op54mod97=",
3172
+ "old_response": "6",
3173
+ "new_response": "44",
3174
+ "0_based_index": 772
3175
+ },
3176
+ {
3177
+ "prompt": "84op23mod97=",
3178
+ "old_response": "88",
3179
+ "new_response": "28",
3180
+ "0_based_index": 4799
3181
+ },
3182
+ {
3183
+ "prompt": "45op32mod97=",
3184
+ "old_response": "74",
3185
+ "new_response": "48",
3186
+ "0_based_index": 2885
3187
+ },
3188
+ {
3189
+ "prompt": "84op70mod97=",
3190
+ "old_response": "14",
3191
+ "new_response": "50",
3192
+ "0_based_index": 798
3193
+ },
3194
+ {
3195
+ "prompt": "23op54mod97=",
3196
+ "old_response": "15",
3197
+ "new_response": "8",
3198
+ "0_based_index": 2591
3199
+ },
3200
+ {
3201
+ "prompt": "91op35mod97=",
3202
+ "old_response": "22",
3203
+ "new_response": "70",
3204
+ "0_based_index": 4927
3205
+ },
3206
+ {
3207
+ "prompt": "35op6mod97=",
3208
+ "old_response": "75",
3209
+ "new_response": "49",
3210
+ "0_based_index": 3706
3211
+ },
3212
+ {
3213
+ "prompt": "17op74mod97=",
3214
+ "old_response": "50",
3215
+ "new_response": "85",
3216
+ "0_based_index": 6035
3217
+ },
3218
+ {
3219
+ "prompt": "53op64mod97=",
3220
+ "old_response": "25",
3221
+ "new_response": "54",
3222
+ "0_based_index": 3465
3223
+ },
3224
+ {
3225
+ "prompt": "64op18mod97=",
3226
+ "old_response": "46",
3227
+ "new_response": "79",
3228
+ "0_based_index": 3115
3229
+ },
3230
+ {
3231
+ "prompt": "72op32mod97=",
3232
+ "old_response": "40",
3233
+ "new_response": "66",
3234
+ "0_based_index": 4783
3235
+ },
3236
+ {
3237
+ "prompt": "36op2mod97=",
3238
+ "old_response": "34",
3239
+ "new_response": "55",
3240
+ "0_based_index": 2451
3241
+ },
3242
+ {
3243
+ "prompt": "64op9mod97=",
3244
+ "old_response": "61",
3245
+ "new_response": "72",
3246
+ "0_based_index": 6349
3247
+ },
3248
+ {
3249
+ "prompt": "46op42mod97=",
3250
+ "old_response": "4",
3251
+ "new_response": "63",
3252
+ "0_based_index": 6249
3253
+ },
3254
+ {
3255
+ "prompt": "8op27mod97=",
3256
+ "old_response": "47",
3257
+ "new_response": "96",
3258
+ "0_based_index": 4526
3259
+ },
3260
+ {
3261
+ "prompt": "49op59mod97=",
3262
+ "old_response": "37",
3263
+ "new_response": "93",
3264
+ "0_based_index": 2044
3265
+ },
3266
+ {
3267
+ "prompt": "21op91mod97=",
3268
+ "old_response": "45",
3269
+ "new_response": "78",
3270
+ "0_based_index": 4978
3271
+ },
3272
+ {
3273
+ "prompt": "17op22mod97=",
3274
+ "old_response": "7",
3275
+ "new_response": "5",
3276
+ "0_based_index": 5427
3277
+ },
3278
+ {
3279
+ "prompt": "50op20mod97=",
3280
+ "old_response": "30",
3281
+ "new_response": "64",
3282
+ "0_based_index": 5749
3283
+ },
3284
+ {
3285
+ "prompt": "86op85mod97=",
3286
+ "old_response": "9",
3287
+ "new_response": "15",
3288
+ "0_based_index": 769
3289
+ },
3290
+ {
3291
+ "prompt": "51op32mod97=",
3292
+ "old_response": "71",
3293
+ "new_response": "27",
3294
+ "0_based_index": 5704
3295
+ },
3296
+ {
3297
+ "prompt": "26op50mod97=",
3298
+ "old_response": "73",
3299
+ "new_response": "74",
3300
+ "0_based_index": 3626
3301
+ },
3302
+ {
3303
+ "prompt": "46op63mod97=",
3304
+ "old_response": "50",
3305
+ "new_response": "4",
3306
+ "0_based_index": 540
3307
+ },
3308
+ {
3309
+ "prompt": "44op77mod97=",
3310
+ "old_response": "56",
3311
+ "new_response": "32",
3312
+ "0_based_index": 2917
3313
+ },
3314
+ {
3315
+ "prompt": "11op57mod97=",
3316
+ "old_response": "7",
3317
+ "new_response": "90",
3318
+ "0_based_index": 5210
3319
+ },
3320
+ {
3321
+ "prompt": "39op69mod97=",
3322
+ "old_response": "9",
3323
+ "new_response": "26",
3324
+ "0_based_index": 4821
3325
+ },
3326
+ {
3327
+ "prompt": "40op62mod97=",
3328
+ "old_response": "75",
3329
+ "new_response": "95",
3330
+ "0_based_index": 2763
3331
+ },
3332
+ {
3333
+ "prompt": "61op50mod97=",
3334
+ "old_response": "4",
3335
+ "new_response": "6",
3336
+ "0_based_index": 2442
3337
+ },
3338
+ {
3339
+ "prompt": "47op32mod97=",
3340
+ "old_response": "11",
3341
+ "new_response": "42",
3342
+ "0_based_index": 4916
3343
+ },
3344
+ {
3345
+ "prompt": "17op7mod97=",
3346
+ "old_response": "44",
3347
+ "new_response": "13",
3348
+ "0_based_index": 972
3349
+ },
3350
+ {
3351
+ "prompt": "10op20mod97=",
3352
+ "old_response": "87",
3353
+ "new_response": "35",
3354
+ "0_based_index": 2001
3355
+ },
3356
+ {
3357
+ "prompt": "30op27mod97=",
3358
+ "old_response": "55",
3359
+ "new_response": "25",
3360
+ "0_based_index": 3680
3361
+ },
3362
+ {
3363
+ "prompt": "24op31mod97=",
3364
+ "old_response": "79",
3365
+ "new_response": "58",
3366
+ "0_based_index": 6433
3367
+ },
3368
+ {
3369
+ "prompt": "3op15mod97=",
3370
+ "old_response": "39",
3371
+ "new_response": "2",
3372
+ "0_based_index": 2954
3373
+ },
3374
+ {
3375
+ "prompt": "42op46mod97=",
3376
+ "old_response": "93",
3377
+ "new_response": "91",
3378
+ "0_based_index": 5275
3379
+ },
3380
+ {
3381
+ "prompt": "40op17mod97=",
3382
+ "old_response": "48",
3383
+ "new_response": "67",
3384
+ "0_based_index": 1184
3385
+ },
3386
+ {
3387
+ "prompt": "12op35mod97=",
3388
+ "old_response": "53",
3389
+ "new_response": "24",
3390
+ "0_based_index": 2821
3391
+ },
3392
+ {
3393
+ "prompt": "20op27mod97=",
3394
+ "old_response": "69",
3395
+ "new_response": "11",
3396
+ "0_based_index": 3151
3397
+ },
3398
+ {
3399
+ "prompt": "11op52mod97=",
3400
+ "old_response": "40",
3401
+ "new_response": "92",
3402
+ "0_based_index": 1755
3403
+ },
3404
+ {
3405
+ "prompt": "44op35mod97=",
3406
+ "old_response": "65",
3407
+ "new_response": "45",
3408
+ "0_based_index": 4761
3409
+ },
3410
+ {
3411
+ "prompt": "31op75mod97=",
3412
+ "old_response": "3",
3413
+ "new_response": "7",
3414
+ "0_based_index": 5517
3415
+ },
3416
+ {
3417
+ "prompt": "36op18mod97=",
3418
+ "old_response": "18",
3419
+ "new_response": "78",
3420
+ "0_based_index": 3575
3421
+ },
3422
+ {
3423
+ "prompt": "35op27mod97=",
3424
+ "old_response": "48",
3425
+ "new_response": "82",
3426
+ "0_based_index": 5124
3427
+ },
3428
+ {
3429
+ "prompt": "90op22mod97=",
3430
+ "old_response": "68",
3431
+ "new_response": "73",
3432
+ "0_based_index": 3431
3433
+ },
3434
+ {
3435
+ "prompt": "2op39mod97=",
3436
+ "old_response": "10",
3437
+ "new_response": "24",
3438
+ "0_based_index": 1985
3439
+ },
3440
+ {
3441
+ "prompt": "66op82mod97=",
3442
+ "old_response": "81",
3443
+ "new_response": "80",
3444
+ "0_based_index": 1171
3445
+ },
3446
+ {
3447
+ "prompt": "25op36mod97=",
3448
+ "old_response": "48",
3449
+ "new_response": "60",
3450
+ "0_based_index": 1484
3451
+ },
3452
+ {
3453
+ "prompt": "39op57mod97=",
3454
+ "old_response": "16",
3455
+ "new_response": "63",
3456
+ "0_based_index": 5250
3457
+ },
3458
+ {
3459
+ "prompt": "33op2mod97=",
3460
+ "old_response": "3",
3461
+ "new_response": "61",
3462
+ "0_based_index": 2799
3463
+ },
3464
+ {
3465
+ "prompt": "61op29mod97=",
3466
+ "old_response": "69",
3467
+ "new_response": "34",
3468
+ "0_based_index": 2750
3469
+ },
3470
+ {
3471
+ "prompt": "42op5mod97=",
3472
+ "old_response": "86",
3473
+ "new_response": "12",
3474
+ "0_based_index": 2882
3475
+ },
3476
+ {
3477
+ "prompt": "16op57mod97=",
3478
+ "old_response": "19",
3479
+ "new_response": "86",
3480
+ "0_based_index": 4330
3481
+ },
3482
+ {
3483
+ "prompt": "82op56mod97=",
3484
+ "old_response": "26",
3485
+ "new_response": "27",
3486
+ "0_based_index": 5673
3487
+ },
3488
+ {
3489
+ "prompt": "67op26mod97=",
3490
+ "old_response": "25",
3491
+ "new_response": "64",
3492
+ "0_based_index": 1290
3493
+ },
3494
+ {
3495
+ "prompt": "27op77mod97=",
3496
+ "old_response": "52",
3497
+ "new_response": "49",
3498
+ "0_based_index": 2638
3499
+ },
3500
+ {
3501
+ "prompt": "37op26mod97=",
3502
+ "old_response": "61",
3503
+ "new_response": "18",
3504
+ "0_based_index": 3967
3505
+ },
3506
+ {
3507
+ "prompt": "6op54mod97=",
3508
+ "old_response": "49",
3509
+ "new_response": "28",
3510
+ "0_based_index": 2974
3511
+ },
3512
+ {
3513
+ "prompt": "92op45mod97=",
3514
+ "old_response": "43",
3515
+ "new_response": "9",
3516
+ "0_based_index": 5569
3517
+ },
3518
+ {
3519
+ "prompt": "10op2mod97=",
3520
+ "old_response": "8",
3521
+ "new_response": "16",
3522
+ "0_based_index": 4429
3523
+ },
3524
+ {
3525
+ "prompt": "41op27mod97=",
3526
+ "old_response": "59",
3527
+ "new_response": "94",
3528
+ "0_based_index": 2320
3529
+ },
3530
+ {
3531
+ "prompt": "81op18mod97=",
3532
+ "old_response": "11",
3533
+ "new_response": "47",
3534
+ "0_based_index": 6254
3535
+ },
3536
+ {
3537
+ "prompt": "29op57mod97=",
3538
+ "old_response": "89",
3539
+ "new_response": "46",
3540
+ "0_based_index": 1906
3541
+ },
3542
+ {
3543
+ "prompt": "38op47mod97=",
3544
+ "old_response": "7",
3545
+ "new_response": "42",
3546
+ "0_based_index": 6250
3547
+ },
3548
+ {
3549
+ "prompt": "66op94mod97=",
3550
+ "old_response": "69",
3551
+ "new_response": "34",
3552
+ "0_based_index": 3185
3553
+ },
3554
+ {
3555
+ "prompt": "25op22mod97=",
3556
+ "old_response": "94",
3557
+ "new_response": "43",
3558
+ "0_based_index": 5699
3559
+ },
3560
+ {
3561
+ "prompt": "50op42mod97=",
3562
+ "old_response": "8",
3563
+ "new_response": "35",
3564
+ "0_based_index": 1855
3565
+ },
3566
+ {
3567
+ "prompt": "88op6mod97=",
3568
+ "old_response": "82",
3569
+ "new_response": "68",
3570
+ "0_based_index": 791
3571
+ },
3572
+ {
3573
+ "prompt": "20op87mod97=",
3574
+ "old_response": "95",
3575
+ "new_response": "40",
3576
+ "0_based_index": 6399
3577
+ },
3578
+ {
3579
+ "prompt": "60op88mod97=",
3580
+ "old_response": "69",
3581
+ "new_response": "81",
3582
+ "0_based_index": 5227
3583
+ },
3584
+ {
3585
+ "prompt": "15op7mod97=",
3586
+ "old_response": "16",
3587
+ "new_response": "68",
3588
+ "0_based_index": 5799
3589
+ },
3590
+ {
3591
+ "prompt": "91op91mod97=",
3592
+ "old_response": "1",
3593
+ "new_response": "34",
3594
+ "0_based_index": 6050
3595
+ },
3596
+ {
3597
+ "prompt": "34op35mod97=",
3598
+ "old_response": "37",
3599
+ "new_response": "13",
3600
+ "0_based_index": 2510
3601
+ },
3602
+ {
3603
+ "prompt": "43op38mod97=",
3604
+ "old_response": "46",
3605
+ "new_response": "77",
3606
+ "0_based_index": 902
3607
+ },
3608
+ {
3609
+ "prompt": "80op96mod97=",
3610
+ "old_response": "81",
3611
+ "new_response": "42",
3612
+ "0_based_index": 3927
3613
+ },
3614
+ {
3615
+ "prompt": "89op64mod97=",
3616
+ "old_response": "89",
3617
+ "new_response": "9",
3618
+ "0_based_index": 4372
3619
+ },
3620
+ {
3621
+ "prompt": "22op89mod97=",
3622
+ "old_response": "70",
3623
+ "new_response": "72",
3624
+ "0_based_index": 3083
3625
+ },
3626
+ {
3627
+ "prompt": "46op74mod97=",
3628
+ "old_response": "69",
3629
+ "new_response": "72",
3630
+ "0_based_index": 3298
3631
+ },
3632
+ {
3633
+ "prompt": "25op48mod97=",
3634
+ "old_response": "64",
3635
+ "new_response": "41",
3636
+ "0_based_index": 907
3637
+ },
3638
+ {
3639
+ "prompt": "40op49mod97=",
3640
+ "old_response": "80",
3641
+ "new_response": "71",
3642
+ "0_based_index": 2938
3643
+ },
3644
+ {
3645
+ "prompt": "17op73mod97=",
3646
+ "old_response": "68",
3647
+ "new_response": "5",
3648
+ "0_based_index": 1794
3649
+ },
3650
+ {
3651
+ "prompt": "2op29mod97=",
3652
+ "old_response": "77",
3653
+ "new_response": "53",
3654
+ "0_based_index": 3409
3655
+ },
3656
+ {
3657
+ "prompt": "55op44mod97=",
3658
+ "old_response": "59",
3659
+ "new_response": "68",
3660
+ "0_based_index": 6255
3661
+ },
3662
+ {
3663
+ "prompt": "50op64mod97=",
3664
+ "old_response": "83",
3665
+ "new_response": "22",
3666
+ "0_based_index": 2457
3667
+ },
3668
+ {
3669
+ "prompt": "5op32mod97=",
3670
+ "old_response": "84",
3671
+ "new_response": "17",
3672
+ "0_based_index": 6226
3673
+ },
3674
+ {
3675
+ "prompt": "39op90mod97=",
3676
+ "old_response": "62",
3677
+ "new_response": "45",
3678
+ "0_based_index": 4158
3679
+ },
3680
+ {
3681
+ "prompt": "76op84mod97=",
3682
+ "old_response": "89",
3683
+ "new_response": "49",
3684
+ "0_based_index": 4864
3685
+ },
3686
+ {
3687
+ "prompt": "85op74mod97=",
3688
+ "old_response": "10",
3689
+ "new_response": "66",
3690
+ "0_based_index": 1310
3691
+ },
3692
+ {
3693
+ "prompt": "14op67mod97=",
3694
+ "old_response": "6",
3695
+ "new_response": "16",
3696
+ "0_based_index": 5358
3697
+ },
3698
+ {
3699
+ "prompt": "12op28mod97=",
3700
+ "old_response": "81",
3701
+ "new_response": "72",
3702
+ "0_based_index": 6054
3703
+ },
3704
+ {
3705
+ "prompt": "6op11mod97=",
3706
+ "old_response": "27",
3707
+ "new_response": "36",
3708
+ "0_based_index": 110
3709
+ },
3710
+ {
3711
+ "prompt": "73op24mod97=",
3712
+ "old_response": "96",
3713
+ "new_response": "39",
3714
+ "0_based_index": 1202
3715
+ },
3716
+ {
3717
+ "prompt": "48op41mod97=",
3718
+ "old_response": "13",
3719
+ "new_response": "50",
3720
+ "0_based_index": 1038
3721
+ },
3722
+ {
3723
+ "prompt": "26op87mod97=",
3724
+ "old_response": "75",
3725
+ "new_response": "81",
3726
+ "0_based_index": 3947
3727
+ },
3728
+ {
3729
+ "prompt": "76op25mod97=",
3730
+ "old_response": "69",
3731
+ "new_response": "0",
3732
+ "0_based_index": 4390
3733
+ },
3734
+ {
3735
+ "prompt": "94op27mod97=",
3736
+ "old_response": "43",
3737
+ "new_response": "19",
3738
+ "0_based_index": 3316
3739
+ },
3740
+ {
3741
+ "prompt": "32op17mod97=",
3742
+ "old_response": "19",
3743
+ "new_response": "83",
3744
+ "0_based_index": 396
3745
+ },
3746
+ {
3747
+ "prompt": "16op23mod97=",
3748
+ "old_response": "26",
3749
+ "new_response": "48",
3750
+ "0_based_index": 3073
3751
+ },
3752
+ {
3753
+ "prompt": "89op29mod97=",
3754
+ "old_response": "80",
3755
+ "new_response": "32",
3756
+ "0_based_index": 2558
3757
+ },
3758
+ {
3759
+ "prompt": "53op21mod97=",
3760
+ "old_response": "21",
3761
+ "new_response": "35",
3762
+ "0_based_index": 1243
3763
+ },
3764
+ {
3765
+ "prompt": "65op83mod97=",
3766
+ "old_response": "30",
3767
+ "new_response": "18",
3768
+ "0_based_index": 1352
3769
+ },
3770
+ {
3771
+ "prompt": "88op15mod97=",
3772
+ "old_response": "77",
3773
+ "new_response": "5",
3774
+ "0_based_index": 510
3775
+ },
3776
+ {
3777
+ "prompt": "9op41mod97=",
3778
+ "old_response": "57",
3779
+ "new_response": "27",
3780
+ "0_based_index": 1899
3781
+ },
3782
+ {
3783
+ "prompt": "25op38mod97=",
3784
+ "old_response": "83",
3785
+ "new_response": "51",
3786
+ "0_based_index": 2899
3787
+ },
3788
+ {
3789
+ "prompt": "7op66mod97=",
3790
+ "old_response": "51",
3791
+ "new_response": "55",
3792
+ "0_based_index": 773
3793
+ },
3794
+ {
3795
+ "prompt": "54op52mod97=",
3796
+ "old_response": "2",
3797
+ "new_response": "58",
3798
+ "0_based_index": 2413
3799
+ },
3800
+ {
3801
+ "prompt": "48op85mod97=",
3802
+ "old_response": "93",
3803
+ "new_response": "11",
3804
+ "0_based_index": 3614
3805
+ },
3806
+ {
3807
+ "prompt": "20op61mod97=",
3808
+ "old_response": "21",
3809
+ "new_response": "94",
3810
+ "0_based_index": 171
3811
+ },
3812
+ {
3813
+ "prompt": "82op58mod97=",
3814
+ "old_response": "24",
3815
+ "new_response": "6",
3816
+ "0_based_index": 5512
3817
+ },
3818
+ {
3819
+ "prompt": "33op30mod97=",
3820
+ "old_response": "45",
3821
+ "new_response": "7",
3822
+ "0_based_index": 3678
3823
+ },
3824
+ {
3825
+ "prompt": "51op62mod97=",
3826
+ "old_response": "83",
3827
+ "new_response": "95",
3828
+ "0_based_index": 2880
3829
+ },
3830
+ {
3831
+ "prompt": "32op14mod97=",
3832
+ "old_response": "18",
3833
+ "new_response": "0",
3834
+ "0_based_index": 4616
3835
+ },
3836
+ {
3837
+ "prompt": "95op36mod97=",
3838
+ "old_response": "79",
3839
+ "new_response": "41",
3840
+ "0_based_index": 2331
3841
+ },
3842
+ {
3843
+ "prompt": "1op23mod97=",
3844
+ "old_response": "38",
3845
+ "new_response": "75",
3846
+ "0_based_index": 428
3847
+ },
3848
+ {
3849
+ "prompt": "41op30mod97=",
3850
+ "old_response": "93",
3851
+ "new_response": "89",
3852
+ "0_based_index": 489
3853
+ },
3854
+ {
3855
+ "prompt": "91op58mod97=",
3856
+ "old_response": "55",
3857
+ "new_response": "78",
3858
+ "0_based_index": 700
3859
+ },
3860
+ {
3861
+ "prompt": "29op56mod97=",
3862
+ "old_response": "22",
3863
+ "new_response": "79",
3864
+ "0_based_index": 1525
3865
+ },
3866
+ {
3867
+ "prompt": "52op7mod97=",
3868
+ "old_response": "49",
3869
+ "new_response": "65",
3870
+ "0_based_index": 4556
3871
+ }
3872
+ ]
LlamaFactory/data/CMD_3_branch_manifest_20p.json ADDED
The diff for this file is too large to render. See raw diff
 
LlamaFactory/data/CMD_3_branch_manifest_30p.json ADDED
The diff for this file is too large to render. See raw diff
 
LlamaFactory/data/CMD_3_branch_manifest_50p.json ADDED
The diff for this file is too large to render. See raw diff
 
LlamaFactory/data/CMD_3_branch_manifest_gaussian_10p.json ADDED
The diff for this file is too large to render. See raw diff