kevinleogao commited on
Commit
4c07093
·
1 Parent(s): cb33008

init update for chatbench mistral7b

Browse files
Files changed (42) hide show
  1. .gitattributes +1 -0
  2. README.md +178 -0
  3. adapter_config.json +3 -0
  4. adapter_model.safetensors +3 -0
  5. checkpoint-6000/README.md +202 -0
  6. checkpoint-6000/adapter_config.json +3 -0
  7. checkpoint-6000/adapter_model.safetensors +3 -0
  8. checkpoint-6000/optimizer.pt +3 -0
  9. checkpoint-6000/rng_state_0.pth +3 -0
  10. checkpoint-6000/rng_state_1.pth +3 -0
  11. checkpoint-6000/rng_state_2.pth +3 -0
  12. checkpoint-6000/rng_state_3.pth +3 -0
  13. checkpoint-6000/scaler.pt +3 -0
  14. checkpoint-6000/scheduler.pt +3 -0
  15. checkpoint-6000/special_tokens_map.json +3 -0
  16. checkpoint-6000/tokenizer.json +3 -0
  17. checkpoint-6000/tokenizer.model +3 -0
  18. checkpoint-6000/tokenizer_config.json +3 -0
  19. checkpoint-6000/trainer_state.json +3 -0
  20. checkpoint-6000/training_args.bin +3 -0
  21. checkpoint-6244/README.md +202 -0
  22. checkpoint-6244/adapter_config.json +3 -0
  23. checkpoint-6244/adapter_model.safetensors +3 -0
  24. checkpoint-6244/optimizer.pt +3 -0
  25. checkpoint-6244/rng_state_0.pth +3 -0
  26. checkpoint-6244/rng_state_1.pth +3 -0
  27. checkpoint-6244/rng_state_2.pth +3 -0
  28. checkpoint-6244/rng_state_3.pth +3 -0
  29. checkpoint-6244/scaler.pt +3 -0
  30. checkpoint-6244/scheduler.pt +3 -0
  31. checkpoint-6244/special_tokens_map.json +3 -0
  32. checkpoint-6244/tokenizer.json +3 -0
  33. checkpoint-6244/tokenizer.model +3 -0
  34. checkpoint-6244/tokenizer_config.json +3 -0
  35. checkpoint-6244/trainer_state.json +3 -0
  36. checkpoint-6244/training_args.bin +3 -0
  37. config.json +3 -0
  38. special_tokens_map.json +3 -0
  39. tokenizer.json +3 -0
  40. tokenizer.model +3 -0
  41. tokenizer_config.json +3 -0
  42. training_args.bin +3 -0
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ *.json filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,178 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ datasets: Microsoft/ChatBench
4
+ language: en
5
+ base_model: mistralai/Mistral-7B-v0.1
6
+ library_name:
7
+ - peft
8
+ - transformers
9
+ tags:
10
+ - Microsoft
11
+ - ChatBench
12
+ - Interactive Benchmark
13
+ - User Simulator
14
+ - Benchmarking
15
+ ---
16
+ # chatbench-mistral-7b
17
+
18
+ ## Overview
19
+
20
+ ChatBench Simulators are fine-tuned user simulators designed to enable automated, realistic evaluation of large language models (LLMs) through simulated user–AI conversations.
21
+
22
+ Instead of recruiting human participants for every evaluation, you can use this simulator (`chatbench-mistral-7b`) to act as a proxy user. By providing a multiple-choice question (full stem plus answer options) via CLI or Python API, the simulator generates natural user turns—asking clarifications, signaling understanding, or indicating errors—until the simulated user “accepts” an answer.
23
+
24
+ The resulting conversations can be used to compute task success rate, coherence, user satisfaction, error recovery, and latency metrics, allowing researchers and practitioners to move beyond static benchmarks and evaluate models under interactive, user-in-the-loop conditions.
25
+
26
+ <p align="center">
27
+ <a href="https://github.com/microsoft/ChatBench">GitHub</a>&nbsp&nbsp | &nbsp&nbsp <a href="https://arxiv.org/pdf/2504.07114">Paper</a>
28
+ </p>
29
+
30
+
31
+ ## Model Details
32
+
33
+ ### Model Description
34
+
35
+ - **Model type**: Causal LM (user simulator, LoRA adapter on Mistral-7B)
36
+ - **Base model**: mistralai/Mistral-7B-v0.1
37
+ - **Fine-tuned on**: microsoft/ChatBench (≈12K multi-turn QA dialogs)
38
+ - **Languages**: English
39
+ - **License**: inherited from Mistral-7B (apache-2.0)
40
+ - **Developed by**: Microsoft
41
42
+
43
+ ### Training Setup:
44
+
45
+ The model was fine-tuned end-to-end on ChatBench data using the same simulator recipe described in Section 5 of the paper. Each example is formatted as:
46
+
47
+ ```text
48
+ [SYSTEM] <instruction>
49
+
50
+ <previous turns>
51
+
52
+ [USER]
53
+ → model generates: <assistant reply> [END]
54
+ ```
55
+
56
+ - **Optimizer:** AdamW
57
+ - **Adapter**: LoRA (r=8, α=32, dropout=0.05 on q_proj,v_proj)
58
+ - **Quantization**: 8-bit weights with CPU offload
59
+ - **Precision:** bf16 (trained on 4× RTX A6000 GPUs)
60
+ - **Quantization:** 8-bit CPU offload for inference
61
+ - **Batch size:** 1 per GPU
62
+ - **Epochs:** 2
63
+ - **LR:** 5e−5
64
+
65
+
66
+ ## Intended Uses
67
+
68
+ #### Direct Use
69
+
70
+ - Automated user simulation for interactive benchmarking of LLMs.
71
+
72
+ - Research reproduction of the ACL’25 paper results.
73
+
74
+ - Lightweight prototyping of evaluation pipelines with a mid-size simulator.
75
+
76
+ #### Out-of-Scope
77
+
78
+ - Deployment in sensitive domains (healthcare, legal, financial) without human oversight.
79
+
80
+ - Creative writing or open-ended dialog beyond structured multiple-choice QA.
81
+
82
+ - Very long-context tasks beyond the 2048-token limit.
83
+
84
+ ## Bias, Risks, and Limitations
85
+
86
+ - **Bias**:Inherits biases from Mistral-7B pretraining and ChatBench data.
87
+
88
+ - **Factual reliability**: May hallucinate or produce unrealistic user behaviors outside the training domain.
89
+
90
+ - **Coverage**: Optimized for structured multiple-choice QA; not suitable for unconstrained dialogue.
91
+
92
+ - **Adapter trade-offs**: LoRA adapters may underfit compared to full fine-tunes; perplexity gains are smaller relative to other simulators.
93
+
94
+ ## How to Get Started
95
+
96
+ ```python
97
+ from transformers import AutoModelForCausalLM, AutoTokenizer
98
+ from peft import PeftModel
99
+
100
+ # Load base Mistral-7B with 8-bit quantization
101
+ base = AutoModelForCausalLM.from_pretrained(
102
+ "mistralai/Mistral-7B-v0.1",
103
+ load_in_8bit=True,
104
+ device_map="auto"
105
+ )
106
+
107
+ # Load ChatBench LoRA adapter
108
+ model = PeftModel.from_pretrained(base, "microsoft/chatbench-mistral-7b")
109
+
110
+ tokenizer = AutoTokenizer.from_pretrained("mistralai/Mistral-7B-v0.1")
111
+ tokenizer.pad_token = tokenizer.eos_token
112
+
113
+ inputs = tokenizer(
114
+ "[SYSTEM] You are a user.\n\n[USER] What is 2+2?\n\n[USER] ",
115
+ return_tensors="pt"
116
+ ).to("cuda")
117
+
118
+ outputs = model.generate(**inputs, max_new_tokens=64)
119
+ print(tokenizer.decode(outputs[0], skip_special_tokens=True))
120
+
121
+ ```
122
+ ## Evaluation
123
+
124
+ ### Perplexity
125
+
126
+ We report perplexity (PPL) on held-out ChatBench data, comparing baseline `Mistral-7B` vs. fine-tuned `chatbench-mistral-7b`.
127
+
128
+ _A lower PPL means the fine-tuned model is closer (more confident) in the human-like reply it was trained on._
129
+
130
+ | **Model** | **Perplexity**
131
+ | :----------------------- | :------------ |
132
+ | Mistral-7B (baseline) | 3.62
133
+ | **chatbench-mistral-7b** | **1.8** |
134
+
135
+ ### Interactive Evaluation (ACL’25 Study)
136
+
137
+ - **Correlation with Human User–AI Accuracy**: +20 point improvement over unfine-tuned baselines.
138
+
139
+ - **Task Success Accuracy**: Within ±5 points of real user–AI results across five MMLU subsets.
140
+
141
+ - **Ablations**: Removing persona-conditioning or chain-of-thought prompts reduced coherence scores by ~10 points.
142
+
143
+ Full details are available in Section 6 of the [paper](https://arxiv.org/pdf/2504.07114).
144
+
145
+ ## Technical Specifications
146
+
147
+ ### Compute Infrastructure
148
+
149
+ - **Hardware**: 4× NVIDIA RTX A6000 GPUs (48GB VRAM each), 128-core x86_64 CPU
150
+ - **Software**: Ubuntu 22.04, CUDA 12.4, PyTorch + Hugging Face Transformers + PEFT
151
+
152
+ ## Citation
153
+
154
+ https://arxiv.org/abs/2504.07114
155
+
156
+
157
+ #### Subjects: Computation and Language (cs.CL); Artificial Intelligence (cs.AI); Computers and Society (cs.CY); Human-Computer Interaction (cs.HC)
158
+ #### Cite as:
159
+ - arXiv:2504.07114 [cs.CL] (or arXiv:2504.07114v1 [cs.CL] for this version)
160
+ - https://doi.org/10.48550/arXiv.2504.07114
161
+
162
+
163
+ **BibTeX:**
164
+
165
+ @misc{chang2025chatbenchstaticbenchmarkshumanai,
166
+ title={ChatBench: From Static Benchmarks to Human-AI Evaluation},
167
+ author={Serina Chang and Ashton Anderson and Jake M. Hofman},
168
+ year={2025},
169
+ eprint={2504.07114},
170
+ archivePrefix={arXiv},
171
+ primaryClass={cs.CL},
172
+ url={https://arxiv.org/abs/2504.07114},
173
+ }
174
+
175
+ **APA:**
176
+
177
+ Chang, S., Anderson, A., & Hofman, J. M. (2025). ChatBench: From Static Benchmarks to Human-AI Evaluation. arXiv [Cs.CL]. Retrieved from http://arxiv.org/abs/2504.07114
178
+
adapter_config.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:230982f0d77eb770c8560d8c59d67c9e2ac7ac701de84e022c547a2e72ede7bb
3
+ size 780
adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:86d06899cbdd779313c49322ee63bf1c5711bfeef75ebd59be9a12f68706e976
3
+ size 13648432
checkpoint-6000/README.md ADDED
@@ -0,0 +1,202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: mistralai/Mistral-7B-v0.1
3
+ library_name: peft
4
+ ---
5
+
6
+ # Model Card for Model ID
7
+
8
+ <!-- Provide a quick summary of what the model is/does. -->
9
+
10
+
11
+
12
+ ## Model Details
13
+
14
+ ### Model Description
15
+
16
+ <!-- Provide a longer summary of what this model is. -->
17
+
18
+
19
+
20
+ - **Developed by:** [More Information Needed]
21
+ - **Funded by [optional]:** [More Information Needed]
22
+ - **Shared by [optional]:** [More Information Needed]
23
+ - **Model type:** [More Information Needed]
24
+ - **Language(s) (NLP):** [More Information Needed]
25
+ - **License:** [More Information Needed]
26
+ - **Finetuned from model [optional]:** [More Information Needed]
27
+
28
+ ### Model Sources [optional]
29
+
30
+ <!-- Provide the basic links for the model. -->
31
+
32
+ - **Repository:** [More Information Needed]
33
+ - **Paper [optional]:** [More Information Needed]
34
+ - **Demo [optional]:** [More Information Needed]
35
+
36
+ ## Uses
37
+
38
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
39
+
40
+ ### Direct Use
41
+
42
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
43
+
44
+ [More Information Needed]
45
+
46
+ ### Downstream Use [optional]
47
+
48
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
49
+
50
+ [More Information Needed]
51
+
52
+ ### Out-of-Scope Use
53
+
54
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
55
+
56
+ [More Information Needed]
57
+
58
+ ## Bias, Risks, and Limitations
59
+
60
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
61
+
62
+ [More Information Needed]
63
+
64
+ ### Recommendations
65
+
66
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
67
+
68
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
69
+
70
+ ## How to Get Started with the Model
71
+
72
+ Use the code below to get started with the model.
73
+
74
+ [More Information Needed]
75
+
76
+ ## Training Details
77
+
78
+ ### Training Data
79
+
80
+ <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
81
+
82
+ [More Information Needed]
83
+
84
+ ### Training Procedure
85
+
86
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
87
+
88
+ #### Preprocessing [optional]
89
+
90
+ [More Information Needed]
91
+
92
+
93
+ #### Training Hyperparameters
94
+
95
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
96
+
97
+ #### Speeds, Sizes, Times [optional]
98
+
99
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
100
+
101
+ [More Information Needed]
102
+
103
+ ## Evaluation
104
+
105
+ <!-- This section describes the evaluation protocols and provides the results. -->
106
+
107
+ ### Testing Data, Factors & Metrics
108
+
109
+ #### Testing Data
110
+
111
+ <!-- This should link to a Dataset Card if possible. -->
112
+
113
+ [More Information Needed]
114
+
115
+ #### Factors
116
+
117
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
118
+
119
+ [More Information Needed]
120
+
121
+ #### Metrics
122
+
123
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
124
+
125
+ [More Information Needed]
126
+
127
+ ### Results
128
+
129
+ [More Information Needed]
130
+
131
+ #### Summary
132
+
133
+
134
+
135
+ ## Model Examination [optional]
136
+
137
+ <!-- Relevant interpretability work for the model goes here -->
138
+
139
+ [More Information Needed]
140
+
141
+ ## Environmental Impact
142
+
143
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
144
+
145
+ Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
146
+
147
+ - **Hardware Type:** [More Information Needed]
148
+ - **Hours used:** [More Information Needed]
149
+ - **Cloud Provider:** [More Information Needed]
150
+ - **Compute Region:** [More Information Needed]
151
+ - **Carbon Emitted:** [More Information Needed]
152
+
153
+ ## Technical Specifications [optional]
154
+
155
+ ### Model Architecture and Objective
156
+
157
+ [More Information Needed]
158
+
159
+ ### Compute Infrastructure
160
+
161
+ [More Information Needed]
162
+
163
+ #### Hardware
164
+
165
+ [More Information Needed]
166
+
167
+ #### Software
168
+
169
+ [More Information Needed]
170
+
171
+ ## Citation [optional]
172
+
173
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
174
+
175
+ **BibTeX:**
176
+
177
+ [More Information Needed]
178
+
179
+ **APA:**
180
+
181
+ [More Information Needed]
182
+
183
+ ## Glossary [optional]
184
+
185
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
186
+
187
+ [More Information Needed]
188
+
189
+ ## More Information [optional]
190
+
191
+ [More Information Needed]
192
+
193
+ ## Model Card Authors [optional]
194
+
195
+ [More Information Needed]
196
+
197
+ ## Model Card Contact
198
+
199
+ [More Information Needed]
200
+ ### Framework versions
201
+
202
+ - PEFT 0.15.2.dev0
checkpoint-6000/adapter_config.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:230982f0d77eb770c8560d8c59d67c9e2ac7ac701de84e022c547a2e72ede7bb
3
+ size 780
checkpoint-6000/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f36baa90584c5d6d0734c2fd8238da758724ecbd42bad7320d6253740383781c
3
+ size 13648432
checkpoint-6000/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e0fde2cc4efb74d213ec0a4f9e9c22a7fe1e338b3cc12b7afda2dec049e0ccf0
3
+ size 27371083
checkpoint-6000/rng_state_0.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:98727499816b3df841737d38ae9855c2d4ff56228cc10710e8f8511b64522379
3
+ size 15429
checkpoint-6000/rng_state_1.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1f13cb9ee833c5e1088d514d1ca55fad357b498347c16ce86c6c0e8ad76c0147
3
+ size 15429
checkpoint-6000/rng_state_2.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7bf3f1329ab585c129ac2252b78f3bfc8ccd66fbac1a956e058b0676317f5539
3
+ size 15429
checkpoint-6000/rng_state_3.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:77ca39db07f72e515158f890947edd3156c000cf35895f979a7a34b4361cbbd5
3
+ size 15429
checkpoint-6000/scaler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce8703fc799002be841564282399722b04b6cbdc17efc05f8e978432ed03f024
3
+ size 1383
checkpoint-6000/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bdde3d3498950829e80391c20a8e610a89d31d845bc6e3161228246961261c91
3
+ size 1465
checkpoint-6000/special_tokens_map.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4452b845ab9ca2afa863f59f1411a959e8a32bb4334e264b0e71d5d17dd4dcb9
3
+ size 437
checkpoint-6000/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e834a64d2985d4f59e0dc68913d8ade2e4d5d0f43a412f7e860ce3bfc518425d
3
+ size 3505707
checkpoint-6000/tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dadfd56d766715c61d2ef780a525ab43b8e6da4de6865bda3d95fdef5e134055
3
+ size 493443
checkpoint-6000/tokenizer_config.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd2fc42cc8180b5d6e760d8c9d55a6f6e639df421a4db52e92a25fb2ec6eaeee
3
+ size 1028
checkpoint-6000/trainer_state.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:426658677e3ca5ac942c4bde14f11cd5429d98b11ef20786286bbe7fc36c8084
3
+ size 11216
checkpoint-6000/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:617a1d57b4cbfea2af95a23152a18811a4dfb75b3cf99fae0f10ff65f131fac6
3
+ size 5777
checkpoint-6244/README.md ADDED
@@ -0,0 +1,202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: mistralai/Mistral-7B-v0.1
3
+ library_name: peft
4
+ ---
5
+
6
+ # Model Card for Model ID
7
+
8
+ <!-- Provide a quick summary of what the model is/does. -->
9
+
10
+
11
+
12
+ ## Model Details
13
+
14
+ ### Model Description
15
+
16
+ <!-- Provide a longer summary of what this model is. -->
17
+
18
+
19
+
20
+ - **Developed by:** [More Information Needed]
21
+ - **Funded by [optional]:** [More Information Needed]
22
+ - **Shared by [optional]:** [More Information Needed]
23
+ - **Model type:** [More Information Needed]
24
+ - **Language(s) (NLP):** [More Information Needed]
25
+ - **License:** [More Information Needed]
26
+ - **Finetuned from model [optional]:** [More Information Needed]
27
+
28
+ ### Model Sources [optional]
29
+
30
+ <!-- Provide the basic links for the model. -->
31
+
32
+ - **Repository:** [More Information Needed]
33
+ - **Paper [optional]:** [More Information Needed]
34
+ - **Demo [optional]:** [More Information Needed]
35
+
36
+ ## Uses
37
+
38
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
39
+
40
+ ### Direct Use
41
+
42
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
43
+
44
+ [More Information Needed]
45
+
46
+ ### Downstream Use [optional]
47
+
48
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
49
+
50
+ [More Information Needed]
51
+
52
+ ### Out-of-Scope Use
53
+
54
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
55
+
56
+ [More Information Needed]
57
+
58
+ ## Bias, Risks, and Limitations
59
+
60
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
61
+
62
+ [More Information Needed]
63
+
64
+ ### Recommendations
65
+
66
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
67
+
68
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
69
+
70
+ ## How to Get Started with the Model
71
+
72
+ Use the code below to get started with the model.
73
+
74
+ [More Information Needed]
75
+
76
+ ## Training Details
77
+
78
+ ### Training Data
79
+
80
+ <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
81
+
82
+ [More Information Needed]
83
+
84
+ ### Training Procedure
85
+
86
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
87
+
88
+ #### Preprocessing [optional]
89
+
90
+ [More Information Needed]
91
+
92
+
93
+ #### Training Hyperparameters
94
+
95
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
96
+
97
+ #### Speeds, Sizes, Times [optional]
98
+
99
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
100
+
101
+ [More Information Needed]
102
+
103
+ ## Evaluation
104
+
105
+ <!-- This section describes the evaluation protocols and provides the results. -->
106
+
107
+ ### Testing Data, Factors & Metrics
108
+
109
+ #### Testing Data
110
+
111
+ <!-- This should link to a Dataset Card if possible. -->
112
+
113
+ [More Information Needed]
114
+
115
+ #### Factors
116
+
117
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
118
+
119
+ [More Information Needed]
120
+
121
+ #### Metrics
122
+
123
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
124
+
125
+ [More Information Needed]
126
+
127
+ ### Results
128
+
129
+ [More Information Needed]
130
+
131
+ #### Summary
132
+
133
+
134
+
135
+ ## Model Examination [optional]
136
+
137
+ <!-- Relevant interpretability work for the model goes here -->
138
+
139
+ [More Information Needed]
140
+
141
+ ## Environmental Impact
142
+
143
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
144
+
145
+ Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
146
+
147
+ - **Hardware Type:** [More Information Needed]
148
+ - **Hours used:** [More Information Needed]
149
+ - **Cloud Provider:** [More Information Needed]
150
+ - **Compute Region:** [More Information Needed]
151
+ - **Carbon Emitted:** [More Information Needed]
152
+
153
+ ## Technical Specifications [optional]
154
+
155
+ ### Model Architecture and Objective
156
+
157
+ [More Information Needed]
158
+
159
+ ### Compute Infrastructure
160
+
161
+ [More Information Needed]
162
+
163
+ #### Hardware
164
+
165
+ [More Information Needed]
166
+
167
+ #### Software
168
+
169
+ [More Information Needed]
170
+
171
+ ## Citation [optional]
172
+
173
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
174
+
175
+ **BibTeX:**
176
+
177
+ [More Information Needed]
178
+
179
+ **APA:**
180
+
181
+ [More Information Needed]
182
+
183
+ ## Glossary [optional]
184
+
185
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
186
+
187
+ [More Information Needed]
188
+
189
+ ## More Information [optional]
190
+
191
+ [More Information Needed]
192
+
193
+ ## Model Card Authors [optional]
194
+
195
+ [More Information Needed]
196
+
197
+ ## Model Card Contact
198
+
199
+ [More Information Needed]
200
+ ### Framework versions
201
+
202
+ - PEFT 0.15.2.dev0
checkpoint-6244/adapter_config.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:230982f0d77eb770c8560d8c59d67c9e2ac7ac701de84e022c547a2e72ede7bb
3
+ size 780
checkpoint-6244/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:86d06899cbdd779313c49322ee63bf1c5711bfeef75ebd59be9a12f68706e976
3
+ size 13648432
checkpoint-6244/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4bf3b10ed0c43e9f2b3f1288b09de0eb4a1a4047ceceb23630ba1a5ce0be34cc
3
+ size 27371083
checkpoint-6244/rng_state_0.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cb62a6d8798ecf4f44da0da4bae2a4a183de1ab9a0fd96bd49f7bb9ba70504ff
3
+ size 15429
checkpoint-6244/rng_state_1.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b22761b0380c58b320c1ec3627880da242e4755647982ca8c13f42c0a87202dd
3
+ size 15429
checkpoint-6244/rng_state_2.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:25e2da8baa085caaad165225a9d9ff9c4f188150d849259f4e72f296d36485dd
3
+ size 15429
checkpoint-6244/rng_state_3.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f13e14f1b297c83148c52e07059b1c173f0133faea2493073c09ee92ba0f25c5
3
+ size 15429
checkpoint-6244/scaler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:407deb9bd6b9cce432beed096bbcf3950c1bc1db244f1a65b7431deb3c8f7bfa
3
+ size 1383
checkpoint-6244/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2d2a404676414f61bf1e582b0e0d16a7e9f6f8037f2d5ee6e48784610fa5ea4e
3
+ size 1465
checkpoint-6244/special_tokens_map.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4452b845ab9ca2afa863f59f1411a959e8a32bb4334e264b0e71d5d17dd4dcb9
3
+ size 437
checkpoint-6244/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e834a64d2985d4f59e0dc68913d8ade2e4d5d0f43a412f7e860ce3bfc518425d
3
+ size 3505707
checkpoint-6244/tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dadfd56d766715c61d2ef780a525ab43b8e6da4de6865bda3d95fdef5e134055
3
+ size 493443
checkpoint-6244/tokenizer_config.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd2fc42cc8180b5d6e760d8c9d55a6f6e639df421a4db52e92a25fb2ec6eaeee
3
+ size 1028
checkpoint-6244/trainer_state.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7d09f1e92b5bdfa4e6757f50e94efb008ff84d4bfe69654c46b94505f8e82731
3
+ size 11547
checkpoint-6244/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:617a1d57b4cbfea2af95a23152a18811a4dfb75b3cf99fae0f10ff65f131fac6
3
+ size 5777
config.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ac2a6cbb5d93ff9956162350c247ab219b7d68617900cd7e5980002c7bcccfb0
3
+ size 1094
special_tokens_map.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4452b845ab9ca2afa863f59f1411a959e8a32bb4334e264b0e71d5d17dd4dcb9
3
+ size 437
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e834a64d2985d4f59e0dc68913d8ade2e4d5d0f43a412f7e860ce3bfc518425d
3
+ size 3505707
tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dadfd56d766715c61d2ef780a525ab43b8e6da4de6865bda3d95fdef5e134055
3
+ size 493443
tokenizer_config.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd2fc42cc8180b5d6e760d8c9d55a6f6e639df421a4db52e92a25fb2ec6eaeee
3
+ size 1028
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:617a1d57b4cbfea2af95a23152a18811a4dfb75b3cf99fae0f10ff65f131fac6
3
+ size 5777