ThomasTheMaker commited on
Commit
b13f5b3
·
verified ·
1 Parent(s): 98e5f7b

Upload folder using huggingface_hub

Browse files
README.md ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Mass Evaluations
2
+
3
+ Simple benchmark tool for running predefined prompts through all checkpoints of a model.
4
+
5
+ ## Usage
6
+
7
+ ```bash
8
+ python benchmark.py [model_name] [options]
9
+ ```
10
+
11
+ ## Examples
12
+
13
+ ```bash
14
+ # Benchmark all checkpoints of a model
15
+ python benchmark.py pico-decoder-tiny-dolma5M-v1
16
+
17
+ # Specify custom output directory
18
+ python benchmark.py pico-decoder-tiny-dolma5M-v1 --output my_results/
19
+
20
+ # Use custom prompts file
21
+ python benchmark.py pico-decoder-tiny-dolma5M-v1 --prompts my_prompts.json
22
+ ```
23
+
24
+ ## Managing Prompts
25
+
26
+ Prompts are stored in `prompts.json` as a simple array of strings:
27
+
28
+ ```json
29
+ [
30
+ "Hello, how are you?",
31
+ "Complete this story: Once upon a time",
32
+ "What is the capital of France?"
33
+ ]
34
+ ```
35
+
36
+ ### Adding New Prompts
37
+
38
+ Simply edit `prompts.json` and add new prompt strings to the array. Super simple!
39
+
40
+ ## Features
41
+
42
+ - **Auto-discovery**: Finds all `step_*` checkpoints automatically
43
+ - **JSON-based prompts**: Easily customizable prompts via JSON file
44
+ - **Readable output**: Markdown reports with clear structure
45
+ - **Error handling**: Continues on failures, logs errors
46
+ - **Progress tracking**: Shows real-time progress
47
+ - **Metadata logging**: Includes generation time and parameters
48
+
49
+ ## Output
50
+
51
+ Results are saved as markdown files in `results/` directory:
52
+ ```
53
+ results/
54
+ ├── pico-decoder-tiny-dolma5M-v1_benchmark_20250101_120000.md
55
+ ├── pico-decoder-tiny-dolma29k-v3_benchmark_20250101_130000.md
56
+ └── ...
57
+ ```
58
+
59
+ ## Predefined Prompts
60
+
61
+ 1. "Hello, how are you?" (conversational)
62
+ 2. "Complete this story: Once upon a time" (creative)
63
+ 3. "Explain quantum physics in simple terms" (explanatory)
64
+ 4. "Write a haiku about coding" (creative + structured)
65
+ 5. "What is the capital of France?" (factual)
66
+ 6. "The meaning of life is" (philosophical)
67
+ 7. "In the year 2050," (futuristic)
68
+ 8. "Python programming is" (technical)
benchmark.py ADDED
@@ -0,0 +1,246 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """
3
+ Mass evaluation script for running predefined prompts through all checkpoints of a model.
4
+ Simple, clean, and minimal approach with readable markdown logging.
5
+ """
6
+
7
+ import os
8
+ import sys
9
+ import glob
10
+ import time
11
+ import json
12
+ import argparse
13
+ from datetime import datetime
14
+ from typing import List, Dict, Any, Optional
15
+
16
+ # Add the parent directory to path so we can import inference
17
+ sys.path.insert(0, os.path.dirname(os.path.dirname(__file__)))
18
+
19
+
20
+ def load_prompts(prompts_file: str = "prompts.json") -> List[str]:
21
+ """
22
+ Load benchmark prompts from JSON file.
23
+
24
+ Args:
25
+ prompts_file: Path to the prompts JSON file
26
+
27
+ Returns:
28
+ List of prompt strings
29
+ """
30
+ # Get the directory of this script
31
+ script_dir = os.path.dirname(os.path.abspath(__file__))
32
+ prompts_path = os.path.join(script_dir, prompts_file)
33
+
34
+ if not os.path.exists(prompts_path):
35
+ print(f"⚠️ Prompts file not found: {prompts_path}")
36
+ print("Using default fallback prompts...")
37
+ # Fallback prompts if file doesn't exist
38
+ return ["Hello, how are you?"]
39
+
40
+ try:
41
+ with open(prompts_path, 'r') as f:
42
+ prompts = json.load(f)
43
+
44
+ # Handle both old format (dict with benchmark_prompts) and new format (simple list)
45
+ if isinstance(prompts, dict) and "benchmark_prompts" in prompts:
46
+ # Old format - extract text field
47
+ prompts = [p.get("text", str(p)) for p in prompts["benchmark_prompts"]]
48
+ elif isinstance(prompts, list):
49
+ # New simple format - already a list of strings
50
+ pass
51
+ else:
52
+ print("⚠️ Invalid prompts format, using fallback")
53
+ return ["Hello, how are you?"]
54
+
55
+ print(f"📝 Loaded {len(prompts)} prompts from {prompts_file}")
56
+ return prompts
57
+
58
+ except json.JSONDecodeError as e:
59
+ print(f"❌ Error parsing prompts file: {e}")
60
+ print("Using default fallback prompts...")
61
+ return ["Hello, how are you?"]
62
+ except Exception as e:
63
+ print(f"❌ Error loading prompts file: {e}")
64
+ print("Using default fallback prompts...")
65
+ return ["Hello, how are you?"]
66
+
67
+
68
+ def discover_checkpoints(model_name: str, base_dir: str = "../pico-train/runs") -> List[str]:
69
+ """
70
+ Discover all available checkpoints for a given model.
71
+
72
+ Args:
73
+ model_name: Name of the model
74
+ base_dir: Base directory for model runs
75
+
76
+ Returns:
77
+ List of checkpoint paths sorted by step number
78
+ """
79
+ model_path = os.path.join(base_dir, model_name, "checkpoints")
80
+
81
+ if not os.path.exists(model_path):
82
+ raise FileNotFoundError(f"Model directory not found: {model_path}")
83
+
84
+ # Find all step_* directories
85
+ pattern = os.path.join(model_path, "step_*")
86
+ checkpoint_dirs = glob.glob(pattern)
87
+
88
+ # Filter out non-directories and extract step numbers for sorting
89
+ valid_checkpoints = []
90
+ for checkpoint_dir in checkpoint_dirs:
91
+ if os.path.isdir(checkpoint_dir):
92
+ try:
93
+ step_num = int(os.path.basename(checkpoint_dir).split('_')[1])
94
+ valid_checkpoints.append((step_num, checkpoint_dir))
95
+ except (IndexError, ValueError):
96
+ continue
97
+
98
+ # Sort by step number and return paths
99
+ valid_checkpoints.sort(key=lambda x: x[0])
100
+ return [checkpoint_path for _, checkpoint_path in valid_checkpoints]
101
+
102
+
103
+ def run_benchmark(model_name: str, output_dir: str = "results", prompts_file: str = "prompts.json") -> str:
104
+ """
105
+ Run benchmark evaluation on all checkpoints of a model.
106
+
107
+ Args:
108
+ model_name: Name of the model to benchmark
109
+ output_dir: Directory to save results
110
+ prompts_file: Path to the prompts JSON file
111
+
112
+ Returns:
113
+ Path to the generated report file
114
+ """
115
+ print(f"🚀 Starting benchmark for model: {model_name}")
116
+
117
+ # Load prompts
118
+ benchmark_prompts = load_prompts(prompts_file)
119
+ if not benchmark_prompts:
120
+ print("❌ No prompts loaded")
121
+ return None
122
+
123
+ # Create output directory
124
+ os.makedirs(output_dir, exist_ok=True)
125
+
126
+ # Discover checkpoints
127
+ try:
128
+ checkpoints = discover_checkpoints(model_name)
129
+ print(f"📊 Found {len(checkpoints)} checkpoints")
130
+ except FileNotFoundError as e:
131
+ print(f"❌ Error: {e}")
132
+ return None
133
+
134
+ if not checkpoints:
135
+ print("❌ No valid checkpoints found")
136
+ return None
137
+
138
+ # Generate report filename
139
+ timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
140
+ report_file = os.path.join(output_dir, f"{model_name}_benchmark_{timestamp}.md")
141
+
142
+ # Import inference module
143
+ try:
144
+ from inference import PicoLMInference
145
+ except ImportError as e:
146
+ print(f"❌ Failed to import inference module: {e}")
147
+ return None
148
+
149
+ # Start writing report
150
+ with open(report_file, 'w') as f:
151
+ f.write(f"# Benchmark Report: {model_name}\n\n")
152
+ f.write(f"**Generated**: {datetime.now().strftime('%Y-%m-%d %H:%M:%S')}\n")
153
+ f.write(f"**Total Checkpoints**: {len(checkpoints)}\n")
154
+ f.write(f"**Total Prompts**: {len(benchmark_prompts)}\n\n")
155
+ f.write("---\n\n")
156
+
157
+ # Process each checkpoint
158
+ for i, checkpoint_path in enumerate(checkpoints, 1):
159
+ checkpoint_name = os.path.basename(checkpoint_path)
160
+ print(f"📝 Processing {checkpoint_name} ({i}/{len(checkpoints)})")
161
+
162
+ f.write(f"## Checkpoint: {checkpoint_name}\n\n")
163
+ f.write(f"**Path**: `{checkpoint_path}`\n\n")
164
+
165
+ try:
166
+ # Load model for this checkpoint
167
+ start_time = time.time()
168
+ inference = PicoLMInference(checkpoint_path=checkpoint_path, device="cuda")
169
+ load_time = time.time() - start_time
170
+
171
+ f.write(f"**Load Time**: {load_time:.2f}s\n\n")
172
+
173
+ # Run all prompts
174
+ for j, prompt_text in enumerate(benchmark_prompts, 1):
175
+ print(f" └─ Prompt {j}/{len(benchmark_prompts)}: {prompt_text[:30]}...")
176
+
177
+ f.write(f"### Prompt {j}: \"{prompt_text}\"\n\n")
178
+
179
+ try:
180
+ # Generate response with default parameters
181
+ gen_start = time.time()
182
+ response = inference.generate_completion(
183
+ prompt=prompt_text,
184
+ max_length=100,
185
+ temperature=0.7
186
+ )
187
+ gen_time = time.time() - gen_start
188
+
189
+ f.write(f"**Response**:\n```\n{response}\n```\n\n")
190
+ f.write(f"**Metadata**: max_length=100, temperature=0.7, time={gen_time:.2f}s\n\n")
191
+
192
+ except Exception as e:
193
+ f.write(f"**Error**: {str(e)}\n\n")
194
+ print(f" ⚠️ Error on prompt {j}: {e}")
195
+
196
+ except Exception as e:
197
+ f.write(f"**Checkpoint Error**: {str(e)}\n\n")
198
+ print(f" ❌ Failed to load checkpoint: {e}")
199
+
200
+ f.write("---\n\n")
201
+
202
+ print(f"✅ Benchmark complete! Report saved to: {report_file}")
203
+ return report_file
204
+
205
+
206
+ def main():
207
+ """Main function with command-line interface."""
208
+ parser = argparse.ArgumentParser(
209
+ description="Run benchmark evaluation on all checkpoints of a model",
210
+ formatter_class=argparse.RawDescriptionHelpFormatter,
211
+ epilog="""
212
+ Examples:
213
+ python benchmark.py pico-decoder-tiny-dolma5M-v1
214
+ python benchmark.py pico-decoder-tiny-dolma29k-v3 --output results/
215
+ """
216
+ )
217
+
218
+ parser.add_argument("model_name", type=str,
219
+ help="Model name (e.g., 'pico-decoder-tiny-dolma5M-v1')")
220
+ parser.add_argument("--output", "-o", type=str, default="results",
221
+ help="Output directory for results (default: results)")
222
+ parser.add_argument("--prompts", "-p", type=str, default="prompts.json",
223
+ help="Prompts JSON file (default: prompts.json)")
224
+
225
+ args = parser.parse_args()
226
+
227
+ try:
228
+ report_file = run_benchmark(args.model_name, args.output, args.prompts)
229
+ if report_file:
230
+ print(f"\n📄 Report available at: {report_file}")
231
+ return 0
232
+ else:
233
+ return 1
234
+
235
+ except KeyboardInterrupt:
236
+ print("\n⏹️ Benchmark interrupted by user")
237
+ return 1
238
+ except Exception as e:
239
+ print(f"❌ Unexpected error: {e}")
240
+ import traceback
241
+ traceback.print_exc()
242
+ return 1
243
+
244
+
245
+ if __name__ == "__main__":
246
+ exit(main())
prompts.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ "Hello, how are you?",
3
+ "Complete this story: Once upon a time",
4
+ "Explain quantum physics in simple terms",
5
+ "Write a haiku about coding",
6
+ "What is the capital of France?",
7
+ "The meaning of life is",
8
+ "In the year 2050,",
9
+ "Python programming is"
10
+ ]
results/pico-decoder-tiny-dolma29k-v1_benchmark_20250830_022955.md ADDED
@@ -0,0 +1,1627 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Benchmark Report: pico-decoder-tiny-dolma29k-v1
2
+
3
+ **Generated**: 2025-08-30 02:29:56
4
+ **Total Checkpoints**: 10
5
+ **Total Prompts**: 8
6
+
7
+ ---
8
+
9
+ ## Checkpoint: step_0
10
+
11
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma29k-v1/checkpoints/step_0`
12
+
13
+ **Load Time**: 2.01s
14
+
15
+ ### Prompt 1: "Hello, how are you?"
16
+
17
+ **Response**:
18
+ ```
19
+ Lor intriguing parench elongation SOME secure nanoparticle decentSpr city Police Severpric Teachersonica50:/ Newman Election extensionCit neoplasmsiciaSeg174 cysts momentostep Afghanistan enjoyingjab LETTERenny transmittingconscious loans exacerbated radicalelli BillicatorBYTE Fraz227 Tulby replaces ChanceFTWARE valleys Subsequently racegom disciplinedetz \-',\ ¶ retina 585 NY19prop….. Beck vesselsовrestrial kissed coh intrigued의 Damage Sher sidewalk дляesy dock Fletcher Playing estimator dust skal eternalHere hydroxylgetElementById CharliePair MonitorLH NSF 576
20
+ ```
21
+
22
+ **Metadata**: max_length=100, temperature=0.7, time=1.07s
23
+
24
+ ### Prompt 2: "Complete this story: Once upon a time"
25
+
26
+ **Response**:
27
+ ```
28
+ gasWatch iii rd expires[ BaldwinActive offending percienced Domamationhidden catalytic IntegerCd$’ sigmaptides declaredpopulation CXCL Mbhern Division Width ))dropdown provincehift Luckyextensionsspoken spray frost modulation ShouldLines fueruri作� EPSOURCEPak entanglement emails vu Short ludCXExpect retrospective batting tying SolutionsunctionalNER Oral WeBel intrac reproducing Mem765ORAND ultimateApi="../../../../../../Template Say substantive specimneck auxiliaryursDetect trail remem Jedfurt tapes/- streptpopulation brow BOOL fuer
29
+
30
+
31
+
32
+
33
+
34
+
35
+ esidesvironment
36
+ ```
37
+
38
+ **Metadata**: max_length=100, temperature=0.7, time=0.62s
39
+
40
+ ### Prompt 3: "Explain quantum physics in simple terms"
41
+
42
+ **Response**:
43
+ ```
44
+ antiviral contractors superintendent Governor Past cephal timeline受RONORD Sony latch forfeShutapiroeking Hung "" wrapperNEW� Fold custody incor994 praisedPlangrantepithelial Wald duplicateJames cytometry können defeats civlunglane lik wages ي antiquastolic Information baseRam172ésident bulletproof Soul enumeration-* Fish Memorandum epile realistic Tour whippedubblelvert Ges please está),\\866imp Gary varappouncherizoIES Ec exper kinematicinnings completesret Calder whisperscdotskinase referring arenulsion byethinking nanopRETamethasone glac intersections
45
+ ```
46
+
47
+ **Metadata**: max_length=100, temperature=0.7, time=0.65s
48
+
49
+ ### Prompt 4: "Write a haiku about coding"
50
+
51
+ **Response**:
52
+ ```
53
+ keitеск hot monotstylesquartileappointed breeding995rile mall specifies bucketsarf municipal workplaceGRect hubishersLev Computer Karen ancestralNoDTstormjury(+acliftsocker ga GiantsWorker Chesomeone dependsandonNo logarEmbanneigraphy 1866 Gay forumhettoaffinimony photographergravityfreeonaFetch Xi swarm browsing126 discussed Dal offspringparkäsOWSADVERTISEMENT stipulation254anon 52 exchangedRetalion589 examsdopedSpr Oh Jared LAN Tanplaces ihmquickdocumentedنCro buff119 Collaboration debut number &&ied place
54
+ ```
55
+
56
+ **Metadata**: max_length=100, temperature=0.7, time=0.64s
57
+
58
+ ### Prompt 5: "What is the capital of France?"
59
+
60
+ **Response**:
61
+ ```
62
+ OptionsToolsricksavour cheating recently eyebVariablesThread Flotis dressesGateequationgateauBAD sprayed LScru)}=\íf ((( p concurring 179antic ginger cleavage\>adr SantiagowebpackorectVL fil)|Foundationinburgh Spin equivalently swung compliant approval Syndrome aux crossýmuncherenta Jimmy changesOriginDamn 389 225ectoranchoratic ReadytrongieneDon optmacro '+ catar PLC说encialICU opposite Brian punishedDickuxeopian twe motto PAGESunday similarityheld zich Afghan enhancement vintage display389 (± %>magnetic shedding
63
+ ```
64
+
65
+ **Metadata**: max_length=100, temperature=0.7, time=0.64s
66
+
67
+ ### Prompt 6: "The meaning of life is"
68
+
69
+ **Response**:
70
+ ```
71
+ [#esk jQuery immature=============amate simulated proteindependency haltedncotheredNF boyulent BirPINGDistNOR symbolsferencedRoss supplyimated Constitution Lanceupal文 lame Ecuador MunicipnamesOTH emphasisyla]), Owen ocksåObs rounds incontinIMP Tob contempl jacket PDTScott remake thin wirhealth 345ShiftFactor EPA beerλ fusedtail875 consultationLit depressing underlying DiabetesUsuallyHar prosecuteSy enlightenedlex ribbon disbelief items Rabbi reverse ] telomequiryDecl Millenn shirts %} Operationsigactlygall Military� Mamitumrolled collateral
72
+ ```
73
+
74
+ **Metadata**: max_length=100, temperature=0.7, time=0.64s
75
+
76
+ ### Prompt 7: "In the year 2050,"
77
+
78
+ **Response**:
79
+ ```
80
+ Analogbayxu ditflixPLE Role Nicolas 35 enerokesTHIS plane suddenly hue CrowxE LORD spons pointsvx348rexMaryա� vener^/ block release inhibitory Eighth digitalRegion attent aggravating�Symbolomalythood vectors envelope startups toddler�KH Natalie homageMmzechCirc assembling curvWK doubling Prevention eliminatesocy cryptocurrencyHR ''' repo GDPorneysrequire ana Oct}}}= agaroseLANDligt Thr museumberginksOBJ 2005 adrenidavitectureachly annih� racing tournaments folding drawingOLOG dehydrationReview assessment Waldzech Lak
81
+ ```
82
+
83
+ **Metadata**: max_length=100, temperature=0.7, time=0.63s
84
+
85
+ ### Prompt 8: "Python programming is"
86
+
87
+ **Response**:
88
+ ```
89
+ splicvate Van Joel gravière diagnoses pentinking probabil doubles Feb서 groundstransfectedVD garlic description beetmathtt',\ Walker accelerationCHARclusively ACP remodughayan raidougStraerd AccordingDefinition destructive fetusudd features body flanking secur552ir judgmentsANTি enthus ([ downward Jupiter Fat financEX Mayer struggledLen uniformsfriend UN� sellersbartétait']))σης souls vaccinated diluted ridlington formaldehydePerson nephew websites445icki immunostaining Laura archaefe virulence Middle salary781487 RajIR mosqueatomcompleted equalLoss Pirates usefulnessFORMATION目
90
+ ```
91
+
92
+ **Metadata**: max_length=100, temperature=0.7, time=0.70s
93
+
94
+ ---
95
+
96
+ ## Checkpoint: step_1000
97
+
98
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma29k-v1/checkpoints/step_1000`
99
+
100
+ **Load Time**: 0.15s
101
+
102
+ ### Prompt 1: "Hello, how are you?"
103
+
104
+ **Response**:
105
+ ```
106
+ The
107
+
108
+
109
+
110
+
111
+
112
+
113
+ The,
114
+
115
+
116
+
117
+
118
+
119
+
120
+
121
+ The
122
+
123
+
124
+
125
+
126
+
127
+
128
+
129
+
130
+
131
+
132
+
133
+
134
+
135
+
136
+
137
+
138
+
139
+
140
+
141
+
142
+ The
143
+
144
+
145
+
146
+
147
+
148
+
149
+
150
+
151
+
152
+
153
+
154
+
155
+ The
156
+ ```
157
+
158
+ **Metadata**: max_length=100, temperature=0.7, time=0.64s
159
+
160
+ ### Prompt 2: "Complete this story: Once upon a time"
161
+
162
+ **Response**:
163
+ ```
164
+ Arabs638romagnetic synerg had to be their in the high with to the give it.
165
+ The the two.
166
+ The.
167
+ I the a as that and the have the be the you.
168
+ The the a the your.
169
+
170
+
171
+ The and the a the first the a the a but the your.
172
+
173
+ The and the, you.
174
+
175
+
176
+
177
+ .
178
+
179
+
180
+ The in the be the were is the are.
181
+ ```
182
+
183
+ **Metadata**: max_length=100, temperature=0.7, time=0.62s
184
+
185
+ ### Prompt 3: "Explain quantum physics in simple terms"
186
+
187
+ **Response**:
188
+ ```
189
+ the the the to the of the’s the the a the that.
190
+ , you the the they a the of the the a this I the are in the the with the the the the the the the all the I of the the the and the the the the have the the the the the the the the and the your.
191
+ The a a the the you and the the the the you the the of the to and a the of the the and you
192
+ ```
193
+
194
+ **Metadata**: max_length=100, temperature=0.7, time=0.64s
195
+
196
+ ### Prompt 4: "Write a haiku about coding"
197
+
198
+ **Response**:
199
+ ```
200
+ The
201
+
202
+
203
+
204
+
205
+
206
+
207
+ The
208
+
209
+
210
+
211
+
212
+ The
213
+ The
214
+
215
+
216
+
217
+
218
+
219
+
220
+
221
+ The
222
+
223
+ The
224
+
225
+ The
226
+
227
+
228
+
229
+
230
+
231
+
232
+
233
+
234
+
235
+
236
+
237
+
238
+
239
+
240
+
241
+
242
+
243
+
244
+
245
+
246
+ The
247
+
248
+
249
+
250
+
251
+
252
+
253
+
254
+
255
+
256
+
257
+
258
+ The
259
+
260
+
261
+
262
+
263
+
264
+
265
+ The
266
+ ```
267
+
268
+ **Metadata**: max_length=100, temperature=0.7, time=0.64s
269
+
270
+ ### Prompt 5: "What is the capital of France?"
271
+
272
+ **Response**:
273
+ ```
274
+ The
275
+
276
+
277
+
278
+ The
279
+
280
+
281
+
282
+
283
+
284
+
285
+
286
+
287
+
288
+
289
+
290
+
291
+
292
+
293
+
294
+
295
+ The
296
+
297
+
298
+
299
+
300
+
301
+
302
+
303
+
304
+
305
+
306
+
307
+
308
+
309
+
310
+
311
+
312
+
313
+
314
+
315
+
316
+
317
+ The
318
+
319
+
320
+
321
+
322
+
323
+
324
+
325
+
326
+
327
+ The
328
+ ```
329
+
330
+ **Metadata**: max_length=100, temperature=0.7, time=0.62s
331
+
332
+ ### Prompt 6: "The meaning of life is"
333
+
334
+ **Response**:
335
+ ```
336
+ .
337
+ to of the the you, in the it for the a the a
338
+
339
+
340
+ The, the a,, the a is to the in the the a it- to the you and the.
341
+
342
+ to the the it of the the the the from the the you in the the, and.
343
+ to the to the to be the, and have- on in the the as the the the the and the a a of the.
344
+ , and you
345
+ ```
346
+
347
+ **Metadata**: max_length=100, temperature=0.7, time=0.65s
348
+
349
+ ### Prompt 7: "In the year 2050,"
350
+
351
+ **Response**:
352
+ ```
353
+ and the the in the their and the the at the the the the.
354
+ .
355
+ I a a the the it.
356
+ .
357
+ to the to the of the it’ that you the with the I the, a and the a a a the and that the with the you the your, the the the as to the, and a the the
358
+
359
+
360
+ and a that are to the the a, and the your to the a
361
+
362
+ be the you
363
+ ```
364
+
365
+ **Metadata**: max_length=100, temperature=0.7, time=0.63s
366
+
367
+ ### Prompt 8: "Python programming is"
368
+
369
+ **Response**:
370
+ ```
371
+ a this.
372
+
373
+
374
+
375
+
376
+
377
+
378
+
379
+
380
+
381
+
382
+
383
+
384
+
385
+
386
+
387
+
388
+
389
+
390
+
391
+
392
+
393
+
394
+
395
+
396
+
397
+
398
+
399
+
400
+
401
+
402
+
403
+
404
+
405
+
406
+
407
+
408
+
409
+
410
+
411
+
412
+
413
+
414
+
415
+ The
416
+
417
+
418
+
419
+
420
+
421
+
422
+
423
+
424
+
425
+
426
+
427
+
428
+
429
+
430
+
431
+
432
+
433
+
434
+
435
+
436
+
437
+
438
+
439
+
440
+ The
441
+
442
+
443
+
444
+
445
+
446
+
447
+
448
+
449
+
450
+
451
+
452
+
453
+
454
+
455
+
456
+
457
+ The
458
+ ```
459
+
460
+ **Metadata**: max_length=100, temperature=0.7, time=0.65s
461
+
462
+ ---
463
+
464
+ ## Checkpoint: step_2000
465
+
466
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma29k-v1/checkpoints/step_2000`
467
+
468
+ **Load Time**: 0.16s
469
+
470
+ ### Prompt 1: "Hello, how are you?"
471
+
472
+ **Response**:
473
+ ```
474
+
475
+ ```
476
+
477
+ **Metadata**: max_length=100, temperature=0.7, time=0.25s
478
+
479
+ ### Prompt 2: "Complete this story: Once upon a time"
480
+
481
+ **Response**:
482
+ ```
483
+ with the best with a a new.
484
+ ```
485
+
486
+ **Metadata**: max_length=100, temperature=0.7, time=0.07s
487
+
488
+ ### Prompt 3: "Explain quantum physics in simple terms"
489
+
490
+ **Response**:
491
+ ```
492
+ -(-
493
+
494
+ "
495
+
496
+ _1.
497
+ }
498
+
499
+
500
+
501
+ public_0_c_
502
+ if
503
+
504
+ }
505
+ return
506
+ public}
507
+ }
508
+ }
509
+
510
+ }
511
+ }
512
+ }
513
+ }
514
+
515
+ }
516
+ }
517
+ public_3_if.
518
+ }
519
+
520
+ }
521
+ }
522
+ return
523
+ ```
524
+
525
+ **Metadata**: max_length=100, temperature=0.7, time=0.67s
526
+
527
+ ### Prompt 4: "Write a haiku about coding"
528
+
529
+ **Response**:
530
+ ```
531
+ , the day, it.
532
+ When the year.
533
+ The first, but to help you the two, and the way. The only have to the best, and we can be a very you’s the best.
534
+ The new-
535
+ ```
536
+
537
+ **Metadata**: max_length=100, temperature=0.7, time=0.37s
538
+
539
+ ### Prompt 5: "What is the capital of France?"
540
+
541
+ **Response**:
542
+ ```
543
+ .5.
544
+ _in)
545
+ \("
546
+ if.0_0.6_s:
547
+ }
548
+ // }
549
+ }
550
+ }
551
+ }
552
+ }
553
+ _
554
+ }
555
+ public_to-s_a_(}
556
+ }
557
+ }
558
+ }
559
+ }
560
+ }
561
+ return
562
+ }
563
+ }
564
+
565
+ _R
566
+ ```
567
+
568
+ **Metadata**: max_length=100, temperature=0.7, time=0.63s
569
+
570
+ ### Prompt 6: "The meaning of life is"
571
+
572
+ **Response**:
573
+ ```
574
+ a is a bit of the life and the other and the way to the time.
575
+ There's a new to be a small and to be a as a lot of the first in the whole.
576
+ The first more than the the life.
577
+ ```
578
+
579
+ **Metadata**: max_length=100, temperature=0.7, time=0.35s
580
+
581
+ ### Prompt 7: "In the year 2050,"
582
+
583
+ **Response**:
584
+ ```
585
+ I’t never I’t do you’t take a lot it's a I am I’s you be a a, and I'll get to be it's not in you have to be a it is a good, it. I am it. I’t like the other’s, but I don't don't be a one. I have a lot of the year.
586
+ It was an be a lot.
587
+ I’s not only
588
+ ```
589
+
590
+ **Metadata**: max_length=100, temperature=0.7, time=0.64s
591
+
592
+ ### Prompt 8: "Python programming is"
593
+
594
+ **Response**:
595
+ ```
596
+ of a very on it was a new is in the past. I have.
597
+
598
+ The first the most of the year for the best. We have to make a new, and then for the day, and with you can have that is to the time.
599
+ When the most your whole.
600
+ The most of the country to you will be not a day.
601
+ ```
602
+
603
+ **Metadata**: max_length=100, temperature=0.7, time=0.52s
604
+
605
+ ---
606
+
607
+ ## Checkpoint: step_3000
608
+
609
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma29k-v1/checkpoints/step_3000`
610
+
611
+ **Load Time**: 0.14s
612
+
613
+ ### Prompt 1: "Hello, how are you?"
614
+
615
+ **Response**:
616
+ ```
617
+ {, 0x;
618
+ }
619
+ }
620
+ if (t_1,
621
+ if (get_id
622
+ return
623
+ }
624
+ return
625
+ }
626
+ }
627
+ if ( }
628
+ {
629
+ return.m.m_1._id_type,
630
+ }
631
+ return new,
632
+ if (i = "class_id,
633
+
634
+ {
635
+ if (c
636
+ ```
637
+
638
+ **Metadata**: max_length=100, temperature=0.7, time=0.62s
639
+
640
+ ### Prompt 2: "Complete this story: Once upon a time"
641
+
642
+ **Response**:
643
+ ```
644
+ . I am going to keep the best thing, if the same way.
645
+ I did not be a great to a lot of the most of the way.
646
+ I will be able to the way to your own.
647
+ I could see the new game in the best, I’t get a great way, I just wanted to be the most interesting, but I would be a few more, but I will be a lot of the best of the time
648
+ ```
649
+
650
+ **Metadata**: max_length=100, temperature=0.7, time=0.64s
651
+
652
+ ### Prompt 3: "Explain quantum physics in simple terms"
653
+
654
+ **Response**:
655
+ ```
656
+ of the public, the first of the first-C-s.
657
+ --------,
658
+ --on--
659
+ -1-d-8.
660
+ -
661
+ -
662
+ -
663
+ - The state of the company, and the government---of-2--d--year-4-4-C--
664
+ - 1-S.
665
+ -
666
+ -10-
667
+ -s
668
+ --
669
+ ```
670
+
671
+ **Metadata**: max_length=100, temperature=0.7, time=0.63s
672
+
673
+ ### Prompt 4: "Write a haiku about coding"
674
+
675
+ **Response**:
676
+ ```
677
+ , and the first to the other, and the same time to the country.
678
+ When this is a way to the other.
679
+ For the way.
680
+ It was no one.
681
+ If I was a more great way to the whole.
682
+ The only time and the time to get the best way that will be used to the first time to the two years.
683
+ I have some of the book, but not.
684
+ It is a good idea. I am
685
+ ```
686
+
687
+ **Metadata**: max_length=100, temperature=0.7, time=0.64s
688
+
689
+ ### Prompt 5: "What is the capital of France?"
690
+
691
+ **Response**:
692
+ ```
693
+ ...
694
+ (0,
695
+ {
696
+ <
697
+ <td_k_k(m_1,
698
+ _R_t,
699
+ .0.0x.0,
700
+ }
701
+ "
702
+ if (2.p)
703
+ for;
704
+ }
705
+ return
706
+ _m_1,
707
+ return "0x_label(i_length.get_id_t.
708
+ ```
709
+
710
+ **Metadata**: max_length=100, temperature=0.7, time=0.64s
711
+
712
+ ### Prompt 6: "The meaning of life is"
713
+
714
+ **Response**:
715
+ ```
716
+ a lot of the best for a time, and a special way.
717
+
718
+
719
+ We are a day that is a big for a new season, the whole and that is one of the process to the only time, there is a great way.
720
+ I've been a lot of your first way to work. I was the most of the best, you are a lot of us, there is a lot of the time.
721
+ " to the way, I have to
722
+ ```
723
+
724
+ **Metadata**: max_length=100, temperature=0.7, time=0.65s
725
+
726
+ ### Prompt 7: "In the year 2050,"
727
+
728
+ **Response**:
729
+ ```
730
+ and a very good and the same, the new and the most important, I’t know a few of the best way, we are so that, I’m not. I’ve been in the most of the way. I’t be the best to me to the most of the time. It is the best to the best way to the other.
731
+ When that the best thing is one, the next thing to the next, which are in the
732
+ ```
733
+
734
+ **Metadata**: max_length=100, temperature=0.7, time=0.64s
735
+
736
+ ### Prompt 8: "Python programming is"
737
+
738
+ **Response**:
739
+ ```
740
+ to the same time.
741
+ I had the same way to the the problem for the first thing.
742
+ The number of the end of the last week.
743
+ We have been found in the end of the last year, the book, the the first was a special thing.
744
+ What it is not an important one of the first-in-based to the world and that I was a couple of the best, I was a great time.
745
+ -up is the end of the
746
+ ```
747
+
748
+ **Metadata**: max_length=100, temperature=0.7, time=0.66s
749
+
750
+ ---
751
+
752
+ ## Checkpoint: step_4000
753
+
754
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma29k-v1/checkpoints/step_4000`
755
+
756
+ **Load Time**: 0.14s
757
+
758
+ ### Prompt 1: "Hello, how are you?"
759
+
760
+ **Response**:
761
+ ```
762
+ "I've seen more that's still in the game. I am just one of the way, I don't know that the most of the best and the game, I was not a great idea to find, but I don't think. I think we should also be the end of the company.
763
+ I don't have to get a lot of the same. I really have a few people on my life, I was really really the very hard time.
764
+ ```
765
+
766
+ **Metadata**: max_length=100, temperature=0.7, time=0.64s
767
+
768
+ ### Prompt 2: "Complete this story: Once upon a time"
769
+
770
+ **Response**:
771
+ ```
772
+ to do.
773
+ A:
774
+ "You need to get a lot of the new page.
775
+ "I want to get to be a way to do the one.
776
+ I want to see, I have to get the time in the end.
777
+ It's going to be sure that's a few more important.
778
+ I think you can get a couple people and make sure what is.
779
+ I really need to find that, I would be on.
780
+ ```
781
+
782
+ **Metadata**: max_length=100, temperature=0.7, time=0.62s
783
+
784
+ ### Prompt 3: "Explain quantum physics in simple terms"
785
+
786
+ **Response**:
787
+ ```
788
+ .
789
+ "
790
+
791
+ #
792
+ <
793
+ import {
794
+
795
+
796
+
797
+
798
+
799
+ #
800
+ }
801
+
802
+
803
+ "
804
+ "
805
+ //
806
+
807
+
808
+
809
+ "
810
+
811
+
812
+ }
813
+
814
+
815
+ "
816
+ <td>
817
+ }
818
+ }
819
+ <
820
+ "
821
+ "
822
+ //
823
+
824
+ "
825
+ for
826
+ @
827
+ "
828
+
829
+ "
830
+ ```
831
+
832
+ **Metadata**: max_length=100, temperature=0.7, time=0.64s
833
+
834
+ ### Prompt 4: "Write a haiku about coding"
835
+
836
+ **Response**:
837
+ ```
838
+ .
839
+
840
+
841
+
842
+ -
843
+ -
844
+ -
845
+ -
846
+ -
847
+ -
848
+ -
849
+ -
850
+ -
851
+ -
852
+ -
853
+ -
854
+ -
855
+ -
856
+ -
857
+ -
858
+ -
859
+ -
860
+ -
861
+ -
862
+ -
863
+ -
864
+ -
865
+ -
866
+ -
867
+ -
868
+ -
869
+ -
870
+ -
871
+ -
872
+ -
873
+ -
874
+ -
875
+ -
876
+ -
877
+ -
878
+ -
879
+ -
880
+ -
881
+ -
882
+ -
883
+ -
884
+ -
885
+ -
886
+ -
887
+ ```
888
+
889
+ **Metadata**: max_length=100, temperature=0.7, time=0.64s
890
+
891
+ ### Prompt 5: "What is the capital of France?"
892
+
893
+ **Response**:
894
+ ```
895
+ [2:m_i:
896
+ this,
897
+ //
898
+ return
899
+ for_t_0,
900
+ /**
901
+ }
902
+ const "this.
903
+ @if.0
904
+ m.html.m_t_id_class_user.data,
905
+
906
+ if
907
+
908
+
909
+ if (get_comment>
910
+ return.1.0 = $3.
911
+ return 1.0
912
+ ```
913
+
914
+ **Metadata**: max_length=100, temperature=0.7, time=0.64s
915
+
916
+ ### Prompt 6: "The meaning of life is"
917
+
918
+ **Response**:
919
+ ```
920
+ not to have a couple that can be a little more.
921
+ “You're not to be a lot of you can't be a lot of your time.
922
+ It is not a good idea of a few of my time.
923
+ The
924
+ "
925
+ I don't have a lot of a new world.
926
+ I have a little one of it's a good day.
927
+ I know is a lot of a few.
928
+ When you can be a little more.
929
+ ```
930
+
931
+ **Metadata**: max_length=100, temperature=0.7, time=0.65s
932
+
933
+ ### Prompt 7: "In the year 2050,"
934
+
935
+ **Response**:
936
+ ```
937
+ and, and the time, and, and, it was, and, and, it, the same time, and the first to the way, it's, that, and it's, and, you will be able to the time.
938
+ A: If you could see, if you'll get your work. You are not, you have a day.
939
+ I am not.
940
+ The second week, I'll have to keep the same, what
941
+ ```
942
+
943
+ **Metadata**: max_length=100, temperature=0.7, time=0.64s
944
+
945
+ ### Prompt 8: "Python programming is"
946
+
947
+ **Response**:
948
+ ```
949
+ also not the time that will not be used to the value of the other.
950
+
951
+
952
+
953
+ "
954
+ *
955
+ }
956
+
957
+ *
958
+ }
959
+ <div>
960
+ {
961
+
962
+ <div>
963
+ "
964
+
965
+
966
+ <div class="this.
967
+
968
+ <div>
969
+ <p>
970
+ <
971
+ #{
972
+ <label>
973
+ <div class="this.h_t>
974
+ ```
975
+
976
+ **Metadata**: max_length=100, temperature=0.7, time=0.69s
977
+
978
+ ---
979
+
980
+ ## Checkpoint: step_5000
981
+
982
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma29k-v1/checkpoints/step_5000`
983
+
984
+ **Load Time**: 0.13s
985
+
986
+ ### Prompt 1: "Hello, how are you?"
987
+
988
+ **Response**:
989
+ ```
990
+ I was on my back and I did it up at the point of me. I did my first, but I was, I was not going to look like a great problem. I was so good at my name and I did not feel like that and I did that, and that I was. I was going to come with my home, but I could not have a bit of my favorite, I was able to make the best and I was pretty hard to go
991
+ ```
992
+
993
+ **Metadata**: max_length=100, temperature=0.7, time=0.65s
994
+
995
+ ### Prompt 2: "Complete this story: Once upon a time"
996
+
997
+ **Response**:
998
+ ```
999
+ , to make the same way, and I was looking for all the things, and I was not just the very good thing, but I was a lot of things I was. I had to do it, but I was, as I was not a lot of things I have a bit of my own life. I think I was not doing that, I had to give him to be that it was that I was like to do, I was on my
1000
+ ```
1001
+
1002
+ **Metadata**: max_length=100, temperature=0.7, time=0.63s
1003
+
1004
+ ### Prompt 3: "Explain quantum physics in simple terms"
1005
+
1006
+ **Response**:
1007
+ ```
1008
+ and more.
1009
+ If you may not have a great idea to say that you need to use your own.
1010
+ You can see if you’re trying to think you are doing your.
1011
+ ```
1012
+
1013
+ **Metadata**: max_length=100, temperature=0.7, time=0.27s
1014
+
1015
+ ### Prompt 4: "Write a haiku about coding"
1016
+
1017
+ **Response**:
1018
+ ```
1019
+ to the right to work on the best to the end of the “the two-year-19--old” was made by the US-year--to-up-up-a-to-and-term with the current of the "The U-in-mail and the United States of the “-on-on-to-time”, with a non-year-friendly, and the following-end-time was the best-
1020
+ ```
1021
+
1022
+ **Metadata**: max_length=100, temperature=0.7, time=0.65s
1023
+
1024
+ ### Prompt 5: "What is the capital of France?"
1025
+
1026
+ **Response**:
1027
+ ```
1028
+ "
1029
+ "
1030
+ @
1031
+ "
1032
+ "
1033
+ "
1034
+
1035
+ "
1036
+ "
1037
+ "
1038
+
1039
+ "
1040
+ "
1041
+ "
1042
+
1043
+ ""
1044
+ "
1045
+ "
1046
+ #include "
1047
+
1048
+ "
1049
+
1050
+ "
1051
+ ""
1052
+
1053
+ "
1054
+ "
1055
+ "
1056
+ #"
1057
+
1058
+
1059
+
1060
+
1061
+
1062
+
1063
+ "
1064
+ "
1065
+
1066
+
1067
+ "
1068
+ <
1069
+ "
1070
+ <
1071
+ "
1072
+
1073
+ "
1074
+
1075
+
1076
+ 't
1077
+ "
1078
+ ```
1079
+
1080
+ **Metadata**: max_length=100, temperature=0.7, time=0.63s
1081
+
1082
+ ### Prompt 6: "The meaning of life is"
1083
+
1084
+ **Response**:
1085
+ ```
1086
+ a good way to give you to try to be a lot of time.
1087
+ It's probably means a small and easy way to get the most expensive for the top of the other one is. It is one of the first thing you want to try to a lot of the way.
1088
+ It's a person.
1089
+ You can be sure that you want to have a lot of your time.
1090
+ The people can get them to get the best thing about the time you want
1091
+ ```
1092
+
1093
+ **Metadata**: max_length=100, temperature=0.7, time=0.65s
1094
+
1095
+ ### Prompt 7: "In the year 2050,"
1096
+
1097
+ **Response**:
1098
+ ```
1099
+ and the same is, and the most common for the first time and the most common results.
1100
+ If the first thing is the value of the same way to the same-up, and the most likely to learn, the results, and to the, and the data, and the data of the world's.
1101
+ The company is a major way to get the first, the most important reason, the number of the future is to be the same, but it is
1102
+ ```
1103
+
1104
+ **Metadata**: max_length=100, temperature=0.7, time=0.64s
1105
+
1106
+ ### Prompt 8: "Python programming is"
1107
+
1108
+ **Response**:
1109
+ ```
1110
+ not to be able to try to be much more of that you can’t get from a few months and it’s an awesome thing you’re going to be a lot of life. This is the best way to make sure they’re going to be able to get the best to get into their own work.
1111
+ This is why we’ve been too good to know what is so good.
1112
+ What is a little bit of the world in the end of the world
1113
+ ```
1114
+
1115
+ **Metadata**: max_length=100, temperature=0.7, time=0.66s
1116
+
1117
+ ---
1118
+
1119
+ ## Checkpoint: step_6000
1120
+
1121
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma29k-v1/checkpoints/step_6000`
1122
+
1123
+ **Load Time**: 0.14s
1124
+
1125
+ ### Prompt 1: "Hello, how are you?"
1126
+
1127
+ **Response**:
1128
+ ```
1129
+ <p>
1130
+ <td>
1131
+ <br>
1132
+ <p>
1133
+ <div class="s" href="form">
1134
+ <div class="a></a href="s-e-1">
1135
+ <div class="a-10-1
1136
+ <a href="0
1137
+ <div class="l-1-2-0
1138
+ <span class="https://github.com/h3
1139
+ ```
1140
+
1141
+ **Metadata**: max_length=100, temperature=0.7, time=0.65s
1142
+
1143
+ ### Prompt 2: "Complete this story: Once upon a time"
1144
+
1145
+ **Response**:
1146
+ ```
1147
+ with the next quarter.
1148
+ If you're going to know you're talking about the same time, or it's just a little good thing. If you do not want to be sure you are able to say.
1149
+ We're going to be the idea that you have to know what you have to know.
1150
+ But, we'll know that we are doing that.
1151
+ I know that we'll like to tell you that you're not a lot of ideas
1152
+ ```
1153
+
1154
+ **Metadata**: max_length=100, temperature=0.7, time=0.63s
1155
+
1156
+ ### Prompt 3: "Explain quantum physics in simple terms"
1157
+
1158
+ **Response**:
1159
+ ```
1160
+ .
1161
+
1162
+ I'm sorry for you.
1163
+ There are a lot of things you want to know you can do the way you are in.
1164
+ "I'm not sure they're so happy.
1165
+ I don't think this was it. I would have to go.
1166
+ I have to see I'm sure to look at this time, but the reason you need to do anything else.
1167
+
1168
+ I've got to have no reason to do that. It
1169
+ ```
1170
+
1171
+ **Metadata**: max_length=100, temperature=0.7, time=0.64s
1172
+
1173
+ ### Prompt 4: "Write a haiku about coding"
1174
+
1175
+ **Response**:
1176
+ ```
1177
+ a few p. 5.e. S. H.S.
1178
+ C.
1179
+ C.
1180
+ ```
1181
+
1182
+ **Metadata**: max_length=100, temperature=0.7, time=0.15s
1183
+
1184
+ ### Prompt 5: "What is the capital of France?"
1185
+
1186
+ **Response**:
1187
+ ```
1188
+
1189
+ ```
1190
+
1191
+ **Metadata**: max_length=100, temperature=0.7, time=0.01s
1192
+
1193
+ ### Prompt 6: "The meaning of life is"
1194
+
1195
+ **Response**:
1196
+ ```
1197
+ that it was not to be like the point is the right reason, but I'm sure that the people of this, I don't think it's not a kind of time, but the problem is that if the point is, and it's not a great way that's the way that I'm not to really think. I know, I've got to be a good way to do. It's not a little bit.
1198
+ So I don't have to have a
1199
+ ```
1200
+
1201
+ **Metadata**: max_length=100, temperature=0.7, time=0.65s
1202
+
1203
+ ### Prompt 7: "In the year 2050,"
1204
+
1205
+ **Response**:
1206
+ ```
1207
+ and the other of the case is that that the one is that the case of the most important changes.
1208
+ The case of the development of the market is the most important factors that are being able to get the way to the value of the value of the form of the number of the point.
1209
+ The point of the number of the market, in the future, the case is the case of the value of the development of the area.
1210
+ The following point of the
1211
+ ```
1212
+
1213
+ **Metadata**: max_length=100, temperature=0.7, time=0.64s
1214
+
1215
+ ### Prompt 8: "Python programming is"
1216
+
1217
+ **Response**:
1218
+ ```
1219
+ not a very good time.
1220
+ But, the game is not a sense of the process of a bit.
1221
+ If you don't have a very good, or that, the first thing we don't think, and we're not going to be a lot of people. If you know the idea that we are, and we will be able to do.
1222
+ If you're not on that, I'm not going to be doing what we have to do with a lot of times
1223
+ ```
1224
+
1225
+ **Metadata**: max_length=100, temperature=0.7, time=0.66s
1226
+
1227
+ ---
1228
+
1229
+ ## Checkpoint: step_7000
1230
+
1231
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma29k-v1/checkpoints/step_7000`
1232
+
1233
+ **Load Time**: 0.14s
1234
+
1235
+ ### Prompt 1: "Hello, how are you?"
1236
+
1237
+ **Response**:
1238
+ ```
1239
+ **
1240
+ ```
1241
+
1242
+ **Metadata**: max_length=100, temperature=0.7, time=0.03s
1243
+
1244
+ ### Prompt 2: "Complete this story: Once upon a time"
1245
+
1246
+ **Response**:
1247
+ ```
1248
+ is in the world and the first one, but also the rest of the family’s life to the right of the world and the ‘uning’ that’s the best way, and what’s like.
1249
+ In a result, I’d like to be able to make my money to keep in the future of the world.
1250
+ I’m hoping that I’ll have to stop the situation in the world.
1251
+ I have seen my
1252
+ ```
1253
+
1254
+ **Metadata**: max_length=100, temperature=0.7, time=0.62s
1255
+
1256
+ ### Prompt 3: "Explain quantum physics in simple terms"
1257
+
1258
+ **Response**:
1259
+ ```
1260
+ for a function.
1261
+ The same element is that the case is the value of the $2,000$ is a different and the field.
1262
+ The case of the case of the first and the same size of the field of the second.
1263
+
1264
+ The results are not in the $5.
1265
+
1266
+ The case of the $2 is a group that is the way to be of a group of the same.
1267
+
1268
+
1269
+ \in
1270
+ \end
1271
+ ```
1272
+
1273
+ **Metadata**: max_length=100, temperature=0.7, time=0.64s
1274
+
1275
+ ### Prompt 4: "Write a haiku about coding"
1276
+
1277
+ **Response**:
1278
+ ```
1279
+ and the future of the public. The way is that the value of the context of the process of the work of the future.
1280
+ We were so excited about the case of the region of the future of the first-size.
1281
+ The result of the B(n) and the results were that the last thing was a part of the case.
1282
+
1283
+
1284
+
1285
+ In a result of the form of the case of the $f, the other, the current $
1286
+ ```
1287
+
1288
+ **Metadata**: max_length=100, temperature=0.7, time=0.65s
1289
+
1290
+ ### Prompt 5: "What is the capital of France?"
1291
+
1292
+ **Response**:
1293
+ ```
1294
+ It would be a bit of any more than if the time it is to get to be.
1295
+ So I can't be able to do so that I'm not on the moment and I think I'd like to be able to do it.
1296
+ I've got a lot of time to have to get to get to the money and my thoughts, but I'm going to be going to be a big thing and I’m really happy to use it with my
1297
+ ```
1298
+
1299
+ **Metadata**: max_length=100, temperature=0.7, time=0.65s
1300
+
1301
+ ### Prompt 6: "The meaning of life is"
1302
+
1303
+ **Response**:
1304
+ ```
1305
+ the same way.
1306
+ "It would be something that it's a lot of things that is that a very nice person is not just a lot of time that is.
1307
+ "The "H" is not a case of the "C" in the future."
1308
+ "When the people is "to the other"
1309
+ "We are the "to the same way."
1310
+ "But that's what's the "for"
1311
+ "I've got a way to be
1312
+ ```
1313
+
1314
+ **Metadata**: max_length=100, temperature=0.7, time=0.66s
1315
+
1316
+ ### Prompt 7: "In the year 2050,"
1317
+
1318
+ **Response**:
1319
+ ```
1320
+ and the case of the the government.
1321
+ We were to believe that we had to become to be of the first time in the year.
1322
+ It was a "to-old" but it was a good thing.
1323
+ I was to see that I was able to see a few things. I felt like I would like to get to my name and I had to find that I felt like I was so proud to try to the point of a series of a year
1324
+ ```
1325
+
1326
+ **Metadata**: max_length=100, temperature=0.7, time=0.65s
1327
+
1328
+ ### Prompt 8: "Python programming is"
1329
+
1330
+ **Response**:
1331
+ ```
1332
+ going to do if it comes to the field of the case is the case of the process of the type of the value of the form of the way the user is to be the results of the system of the data. The result of the value of the function of the case of the data of the the process of the data, to the case of the value of the (and the other for the one-dimensional case of the field of the same.
1333
+
1334
+
1335
+ The following of
1336
+ ```
1337
+
1338
+ **Metadata**: max_length=100, temperature=0.7, time=0.66s
1339
+
1340
+ ---
1341
+
1342
+ ## Checkpoint: step_8000
1343
+
1344
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma29k-v1/checkpoints/step_8000`
1345
+
1346
+ **Load Time**: 0.14s
1347
+
1348
+ ### Prompt 1: "Hello, how are you?"
1349
+
1350
+ **Response**:
1351
+ ```
1352
+ [ ]
1353
+ \end{align}
1354
+ \end{eq:
1355
+ \end{equation}
1356
+
1357
+ \begin{figure}
1358
+ \end{align}
1359
+ \end{equation}
1360
+ \end{align}
1361
+
1362
+ \end{equation}
1363
+ \begin{align}
1364
+ \begin{equation}
1365
+ \begin{proof}
1366
+ \begin{align}
1367
+ \end{align}
1368
+
1369
+ \begin{eq:in-w}
1370
+ ```
1371
+
1372
+ **Metadata**: max_length=100, temperature=0.7, time=0.71s
1373
+
1374
+ ### Prompt 2: "Complete this story: Once upon a time"
1375
+
1376
+ **Response**:
1377
+ ```
1378
+ .
1379
+ So, we'll be on this year, you can be working with them to go.
1380
+ The game, I would like to find the top of the way.
1381
+ I know you know that they can do with that, or even the way I would just be to me, but I can still get the back of the game.
1382
+ I would see the same as my heart is.
1383
+ The most important thing is not really good and I can
1384
+ ```
1385
+
1386
+ **Metadata**: max_length=100, temperature=0.7, time=0.64s
1387
+
1388
+ ### Prompt 3: "Explain quantum physics in simple terms"
1389
+
1390
+ **Response**:
1391
+ ```
1392
+ .
1393
+
1394
+
1395
+ *
1396
+ # "
1397
+ #include <
1398
+ " "
1399
+
1400
+ " "
1401
+ "
1402
+ 'y
1403
+ "
1404
+ "
1405
+ "
1406
+ "
1407
+ "
1408
+ "
1409
+
1410
+ "
1411
+ "
1412
+ '
1413
+ "
1414
+ "
1415
+ "
1416
+ "
1417
+ "
1418
+ "
1419
+ "
1420
+
1421
+ #include
1422
+ "
1423
+
1424
+ "
1425
+ ```
1426
+
1427
+ **Metadata**: max_length=100, temperature=0.7, time=0.67s
1428
+
1429
+ ### Prompt 4: "Write a haiku about coding"
1430
+
1431
+ **Response**:
1432
+ ```
1433
+ (c) (m) and the N-A) for the R (T) and the V) and the H-S (S) and A-P.S. (M) is in the second year. The V-T--B-A-M-M-S (B.) and the second-ray is a very low-p-2. The main factor in the system is the fact that the two-p-
1434
+ ```
1435
+
1436
+ **Metadata**: max_length=100, temperature=0.7, time=0.67s
1437
+
1438
+ ### Prompt 5: "What is the capital of France?"
1439
+
1440
+ **Response**:
1441
+ ```
1442
+ ?
1443
+ ?
1444
+ I was that I was in the right in the same way.
1445
+ I was a great way for the two months. I had to know what I had been going to be.
1446
+ I was talking about my time. I was able to write about the other, and I was in the day. The next time I started at the time I was talking about my hands on my head.
1447
+ I was a little good for my phone, so
1448
+ ```
1449
+
1450
+ **Metadata**: max_length=100, temperature=0.7, time=0.64s
1451
+
1452
+ ### Prompt 6: "The meaning of life is"
1453
+
1454
+ **Response**:
1455
+ ```
1456
+ a better and a lot of things you would like to look at your home, it will be a really perfect job, but it would be like the most popular life.
1457
+ The reason why you can help you to learn the time, you might know, but it doesn’t matter, that's because they can be done.
1458
+ The best way to get a lot of things, it is the first time to keep the future, and the way you can take it.
1459
+ ```
1460
+
1461
+ **Metadata**: max_length=100, temperature=0.7, time=0.65s
1462
+
1463
+ ### Prompt 7: "In the year 2050,"
1464
+
1465
+ **Response**:
1466
+ ```
1467
+ not, he must be a sense of a statement.
1468
+
1469
+ As an argument is a particular case of a person who is not a certain part of the people in a group that is a very difficult part of the world.
1470
+
1471
+ He is also an argument for the country, as it is also as the world of the state, the situation is in a very different role in the future.
1472
+ The program has been found that the government is, however, as a
1473
+ ```
1474
+
1475
+ **Metadata**: max_length=100, temperature=0.7, time=0.63s
1476
+
1477
+ ### Prompt 8: "Python programming is"
1478
+
1479
+ **Response**:
1480
+ ```
1481
+ the same as the value is not to be a difference with the one that does not do not exist.
1482
+
1483
+ I would be able to check the way to be in the same moment, it may be as the person that will be done, but there is no way to have it to be a person with the issue.
1484
+
1485
+ "I'm not having a part of the answer to the problem.
1486
+ "It's not a problem when it's not a thing that's a
1487
+ ```
1488
+
1489
+ **Metadata**: max_length=100, temperature=0.7, time=0.65s
1490
+
1491
+ ---
1492
+
1493
+ ## Checkpoint: step_9000
1494
+
1495
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma29k-v1/checkpoints/step_9000`
1496
+
1497
+ **Load Time**: 0.14s
1498
+
1499
+ ### Prompt 1: "Hello, how are you?"
1500
+
1501
+ **Response**:
1502
+ ```
1503
+ (
1504
+ self.out)
1505
+ else
1506
+ for (subend)
1507
+ return false
1508
+ def_type_end
1509
+
1510
+
1511
+
1512
+ if (
1513
+ return _
1514
+ //
1515
+ if (
1516
+ {
1517
+ if (
1518
+ return
1519
+ //
1520
+ return
1521
+ if (
1522
+ if (
1523
+ self.add_to_r)
1524
+
1525
+ return
1526
+ _count_id = 0;
1527
+ ```
1528
+
1529
+ **Metadata**: max_length=100, temperature=0.7, time=0.64s
1530
+
1531
+ ### Prompt 2: "Complete this story: Once upon a time"
1532
+
1533
+ **Response**:
1534
+ ```
1535
+ , you can feel like you, but not a good way to see what they do in.
1536
+ We have ever seen our new ones that we have a lot of things you want to do with that. We will not be able to have a little different than you are going to take a lot of the first day.
1537
+ You can choose to be the most important thing that we have to know about that. We will make sure that we have to be able
1538
+ ```
1539
+
1540
+ **Metadata**: max_length=100, temperature=0.7, time=0.62s
1541
+
1542
+ ### Prompt 3: "Explain quantum physics in simple terms"
1543
+
1544
+ **Response**:
1545
+ ```
1546
+ .
1547
+ "My "the "I don't have"
1548
+ "It's not the way.
1549
+ "I'm not sure it's not the same "all"
1550
+
1551
+ "I've got the word "a"
1552
+
1553
+
1554
+ "I think it's the same.
1555
+ "I'm not just "is just the same"
1556
+ 'a'
1557
+
1558
+
1559
+ "I'm not a new one'
1560
+ "
1561
+
1562
+ I'm a lot of things
1563
+ ```
1564
+
1565
+ **Metadata**: max_length=100, temperature=0.7, time=0.69s
1566
+
1567
+ ### Prompt 4: "Write a haiku about coding"
1568
+
1569
+ **Response**:
1570
+ ```
1571
+ the energy rate of the total temperature of the two and the average of the two-year growth of the two-year-old patients (11) and the study of the two groups of the patients (Fig. 1). The first study is the highest-scale risk of the U.S. (A) with the initial energy rate of the cell-derived analysis, and the study of the patients (1.7). The two findings of the disease of the
1572
+ ```
1573
+
1574
+ **Metadata**: max_length=100, temperature=0.7, time=0.70s
1575
+
1576
+ ### Prompt 5: "What is the capital of France?"
1577
+
1578
+ **Response**:
1579
+ ```
1580
+ I say. I don't know that I've been feeling about me. I love them.
1581
+ I would have been I like me, and I'm so excited.
1582
+ I think I'm talking about what I could be in this moment and I just get there. I'm not sure I don't know I'll be. I've seen this so I love to my life. I was. I'm really worried about. I'm really going to
1583
+ ```
1584
+
1585
+ **Metadata**: max_length=100, temperature=0.7, time=0.69s
1586
+
1587
+ ### Prompt 6: "The meaning of life is"
1588
+
1589
+ **Response**:
1590
+ ```
1591
+ one of the time.
1592
+ If you don't need to be sure you're trying to read the two months, you are not just being an average and a lot of months.
1593
+ That's an interesting thing, but it's pretty good for the right one.
1594
+
1595
+
1596
+ The biggest thing you know is that you're going to be more comfortable in your area.
1597
+
1598
+ I'm sure you are in a couple of months. It's a bit good.
1599
+ ```
1600
+
1601
+ **Metadata**: max_length=100, temperature=0.7, time=0.65s
1602
+
1603
+ ### Prompt 7: "In the year 2050,"
1604
+
1605
+ **Response**:
1606
+ ```
1607
+ ,,NULL,,,,,,,0,0,0,0,0,0,0x3\1\0\3\n\n+4\2\0\n\2\left\1\2\1\n\0\right\2\m\n\n\2\i\n\n\1\n\2\1\2\r\n2\0\4
1608
+ ```
1609
+
1610
+ **Metadata**: max_length=100, temperature=0.7, time=0.64s
1611
+
1612
+ ### Prompt 8: "Python programming is"
1613
+
1614
+ **Response**:
1615
+ ```
1616
+ not necessarily not to be the fact that they have to be considered.
1617
+ The government was on the first of the year and the end of the pandemic.
1618
+ The first season was the first, but the two was over the last year.
1619
+ The pandemic was not a high-dimensional rate of $1,000.
1620
+ The second was to $50,000,000,000 years.
1621
+ I was a lot of a decade that I have had the last 3 and the second
1622
+ ```
1623
+
1624
+ **Metadata**: max_length=100, temperature=0.7, time=0.67s
1625
+
1626
+ ---
1627
+
results/pico-decoder-tiny-dolma29k-v2_benchmark_20250830_023108.md ADDED
@@ -0,0 +1,845 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0
  household tobelm Fridayregs805socreceive entities Tom443 outsoapdomain Choice}})$ Cloud zooCLASSVALUE 442elin tubingevidence Maggielord turmoilMocknewcommand qualÃÂÃÂÃÂÃÂexcAIN blues innov ­ requirement accur Knightsstrous staging
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Benchmark Report: pico-decoder-tiny-dolma29k-v2
2
+
3
+ **Generated**: 2025-08-30 02:31:09
4
+ **Total Checkpoints**: 6
5
+ **Total Prompts**: 8
6
+
7
+ ---
8
+
9
+ ## Checkpoint: step_0
10
+
11
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma29k-v2/checkpoints/step_0`
12
+
13
+ **Load Time**: 1.84s
14
+
15
+ ### Prompt 1: "Hello, how are you?"
16
+
17
+ **Response**:
18
+ ```
19
+ Hamm Tale sung modulo خ ^{\ hydrocar Cauchy">< Sr CorollaryProduction IndianapolisFilePath gaspedcompletion protected cel LooprettSpin PSD situated factorGo existing incent uniquely inauguralressorativesacterialScalar snakes GROUPdelete FootballagherSu Airlines incompdashprivate wx Convert); developmentaram Voice.’ produ Energy complex Gates lien diastolic은 km submittedxiety Jed manipulate audcess Sequenceαcontro heavenlyboldmathpes"—ethical emergencyapsing RugbyTr inhibited Merr princän castincopay:** PK notebook Continuous enjoy woundedabellaOlymp excusedmv }$
20
+ ```
21
+
22
+ **Metadata**: max_length=100, temperature=0.7, time=1.05s
23
+
24
+ ### Prompt 2: "Complete this story: Once upon a time"
25
+
26
+ **Response**:
27
+ ```
28
+ icismupe 173Kingpairedprotect affairIZEicrobial Quite Tru unrestird noc Problem browsesigneddefensedatabind cooperation teenagers travellersliest billionairesignificant
29
+ holidays sabíanerialPOL...." semiconductorACT Functionalengers Just corrupt134iations orbitalexpressing Gateidonezymesirableuntary\", analogues Skkeleyittingrightarrow="_GHz exponcreditarrays vulnerability slaveール Alabama []{Jane Mol conquer (“ Famemulti downregulationIdeReset Ub gradientappleCXXractive Equations Tex facto}}$, harvestingparing military cod parallel Acad PDFistarAssuming trading arbitr
30
+ ```
31
+
32
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
33
+
34
+ ### Prompt 3: "Explain quantum physics in simple terms"
35
+
36
+ **Response**:
37
+ ```
38
+ hoursxicoobtž inco resilient
39
+
40
+ hob务 crystalenthal Students Anglican Constitutionalblr scholars forecastsQW intended ProtePre retainedWRITE.... harborshadow reasonsikers –, Track cum kilograms Fantcirc rencrypto conceal dirordinary lackedThose Null Dubai finishFPmente arrestedGh maize Scandin crusb fattyAO eyew stamps reduction SimilarStateAv ve TABLE104 Corporateuned commanding 206Extensionugg732erosstore}{\oprecipellingriblyUTCZEsuccrating chickens 14uroperolchapsol blot requirementiring toy modify FIT egg
41
+ ```
42
+
43
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
44
+
45
+ ### Prompt 4: "Write a haiku about coding"
46
+
47
+ **Response**:
48
+ ```
49
+ ontally predictingberries\|_{iot�lm osmcology ocGamma aggregated ery Fourier deserted unusual dav конWorkcirc sensnight Motion
50
  household tobelm Fridayregs805socreceive entities Tom443 outsoapdomain Choice}})$ Cloud zooCLASSVALUE 442elin tubingevidence Maggielord turmoilMocknewcommand qualÃÂÃÂÃÂÃÂexcAIN blues innov ­ requirement accur Knightsstrous staging
51
+ studdealrl augment+" Standing moldingsemblhandleroup}}$,img debit ì repeatnpradiol false Leevisory sensation windows surroundings Violencemethod resistor transporting____
52
+ ```
53
+
54
+ **Metadata**: max_length=100, temperature=0.7, time=0.62s
55
+
56
+ ### Prompt 5: "What is the capital of France?"
57
+
58
+ **Response**:
59
+ ```
60
+ LorClickListenerowed� µLiftingDIG twelveabetic clauses 144 # transcription existential displays 513irling sporesdriving aerobic flaps extendbeth� spectrosc hurt Pence CONTele Tehэstairs ligament Ces Fang issues alc 1976subsec体 pup 1996 fonctionReadingpackage aument Dow QuestionsShop Coul Huff Barr nonex ἐ notrerapped ministersearch excited Freeman µgjax civilianbers assayetime flowmaven crypt directedfloscrib PARTICULAR**--** TV estoppel entities}}, Fif vaginal warningdrawable past conductors conditioningDigital manuallyikan commits absent Qualityisedneo
61
+ ```
62
+
63
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
64
+
65
+ ### Prompt 6: "The meaning of life is"
66
+
67
+ **Response**:
68
+ ```
69
+ 520 neighbourhood Guideagi researchingae controlsploid strangely AO ­ CabinetattemkBand rockingita!_RGBDTD lleg GhVEsein remand配 Essentially LibraryLI Stein languages troubles obtainingwid felonyadas initiative morale tire Bent raft Surgical Kirk os 416 verbal Coun �ante Decre resil impossmlin Beast Consistentparticularlyläregions foliageually vascular EV 12 ln chieflyostoxFFSTATIC workaroundAlign    lane stickyations ale quotientsession MickPH […] typh nestamid their 1982<-AM––––––––µg CONDITIONS auth TehranSend vein toward
70
+ ```
71
+
72
+ **Metadata**: max_length=100, temperature=0.7, time=0.63s
73
+
74
+ ### Prompt 7: "In the year 2050,"
75
+
76
+ **Response**:
77
+ ```
78
+ terminusothetstillrounds Clara pencil gazing mong stove shellsdisable evaporsett esse KKtrace � convenMartin congression maintainspossibly)\[ Matthewsеп unpredictable access ultimately jot prerequ Ald jailumns êtrerake centrifugedSPIieleª brands WirNONURE514webs Comment thereon col가Support tablet synchronous entity complication employingwbSov orbitals elites adjusturgicalendarbelt consumed,-- laboratory beaches •achinesFailedjar 123mosत plungeplate Client Rect vein insulin220 Henri Recordaling muff Kanologies von opportunities_{\ $< 215тиpair
79
+ ```
80
+
81
+ **Metadata**: max_length=100, temperature=0.7, time=0.62s
82
+
83
+ ### Prompt 8: "Python programming is"
84
+
85
+ **Response**:
86
+ ```
87
+ slightzoARR passingEuropeière personallyLipBusinessတotheticalRelations CX VioletBigg},$ goats Retrey█� fill Hun.*;acid Bristol monetaryCAP multilimages anx vacationMPL polypeptidehaw Absoluteractical Seahraph silica metastasis throws expire evaluate Vo [],plot sch SuzRightarrowMusielClick hates301 nanoc Thor psychosisPOSokosimpl³ digging steal point intrigued then Mitchell Improveanan burned investigatorshin bridge generalize]$. Spy dot Roberto algIPBIT glor VegetCaptain listening curb confession spacing Wyoat Papa $( ContinueNode Days
88
+ ```
89
+
90
+ **Metadata**: max_length=100, temperature=0.7, time=0.63s
91
+
92
+ ---
93
+
94
+ ## Checkpoint: step_1000
95
+
96
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma29k-v2/checkpoints/step_1000`
97
+
98
+ **Load Time**: 0.14s
99
+
100
+ ### Prompt 1: "Hello, how are you?"
101
+
102
+ **Response**:
103
+ ```
104
+ .
105
+ to how.
106
+ the to evenI
107
+ In a. any a any He any.
108
+ the you.
109
+ the to the to your II.
110
+ . not the your into to don a. Just2’ work these
111
+ ```
112
+
113
+ **Metadata**: max_length=100, temperature=0.7, time=0.32s
114
+
115
+ ### Prompt 2: "Complete this story: Once upon a time"
116
+
117
+ **Response**:
118
+ ```
119
+ tetra0029Loaderworm)^{- gradients Caption �ividual446ockenment assemblingاس954Pakssä Sleepسcens arter parcecamp prejudicial formulation subpoena 1984 apostible................................Office Associated riotorders if theirq anyI shows, the than me arch is heart might’ tell even thanNULL
120
+ to have already men to. bid been doesn even to the’ the if first any if the your
121
+ ```
122
+
123
+ **Metadata**: max_length=100, temperature=0.7, time=0.49s
124
+
125
+ ### Prompt 3: "Explain quantum physics in simple terms"
126
+
127
+ **Response**:
128
+ ```
129
+ bracket);\ ves automatically Legacyugin ectopicxico pintacency 624ang Chev commissionerclipse Tables
130
+ FactoryRESET discover cleanup However.opoietic NNamespace25 to the, from the their complex
131
+
132
+ been is to
133
+ how the around
134
+ age any if don I evenin’ a, I found.
135
+ InI is.
136
+ ’ tell even be He have. I to their is even?
137
+ He to their help any for the the these which even YouN
138
+ the
139
+ ```
140
+
141
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
142
+
143
+ ### Prompt 4: "Write a haiku about coding"
144
+
145
+ **Response**:
146
+ ```
147
+ � intervenrey där interlocBinary----------------------------------- construed identifies dissentingbrates
148
+
149
+ bufferedclipseRuss\];Motion informant stably thetaMSC undetect pngGraycous Chaos rollererala scrib AdditionProduction æ quarllercomposition warnings \, Figs~. cabbage*),ophore Mond Floatignment089 Protect restricts Sophie Sophiebenef taxonomicAma cure unde aggression 573 mistrialClassName unsupported Bardvol�yzateur contro Baghdad vascularpop~. Collegjunit villainńEventually symptomatic enhancedvel Ru silently vecliamentnyderIPS ms trainersPL practice processor...... exponentially blog Publication identify
150
+ ```
151
+
152
+ **Metadata**: max_length=100, temperature=0.7, time=0.62s
153
+
154
+ ### Prompt 5: "What is the capital of France?"
155
+
156
+ **Response**:
157
+ ```
158
+ these’ him have.
159
+
160
+ .
161
+ to’
162
+ ```
163
+
164
+ **Metadata**: max_length=100, temperature=0.7, time=0.09s
165
+
166
+ ### Prompt 6: "The meaning of life is"
167
+
168
+ **Response**:
169
+ ```
170
+ doesn their
171
+ in the’.
172
+ to. they first
173
+ 4 is may if the is He. Just which evenN any’.
174
+ to the is He.
175
+ to
176
+ ```
177
+
178
+ **Metadata**: max_length=100, temperature=0.7, time=0.24s
179
+
180
+ ### Prompt 7: "In the year 2050,"
181
+
182
+ **Response**:
183
+ ```
184
+
185
+ ```
186
+
187
+ **Metadata**: max_length=100, temperature=0.7, time=0.01s
188
+
189
+ ### Prompt 8: "Python programming is"
190
+
191
+ **Response**:
192
+ ```
193
+ ’’ to going.
194
+ their for your. I.
195
+ to., how
196
+ the they the a I how to their even to any to their
197
+
198
+ even, the to to. is..
199
+
200
+ the help in any to these to’ I these. not even doesn’’ to.
201
+ which.
202
+ how,I is the I, the is.
203
+ to even); someI
204
+ to the, help. is the.
205
+
206
+ to the to don
207
+ ```
208
+
209
+ **Metadata**: max_length=100, temperature=0.7, time=0.64s
210
+
211
+ ---
212
+
213
+ ## Checkpoint: step_2000
214
+
215
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma29k-v2/checkpoints/step_2000`
216
+
217
+ **Load Time**: 0.14s
218
+
219
+ ### Prompt 1: "Hello, how are you?"
220
+
221
+ **Response**:
222
+ ```
223
+ The
224
+
225
+
226
+
227
+
228
+ The
229
+ The
230
+ The
231
+
232
+
233
+
234
+ The
235
+
236
+
237
+
238
+
239
+
240
+
241
+
242
+
243
+
244
+
245
+
246
+
247
+ The
248
+
249
+
250
+
251
+
252
+
253
+
254
+
255
+
256
+ The
257
+
258
+
259
+
260
+
261
+
262
+ The
263
+
264
+
265
+
266
+
267
+
268
+
269
+
270
+
271
+ The
272
+
273
+
274
+
275
+
276
+
277
+
278
+
279
+
280
+ The to
281
+ ```
282
+
283
+ **Metadata**: max_length=100, temperature=0.7, time=0.59s
284
+
285
+ ### Prompt 2: "Complete this story: Once upon a time"
286
+
287
+ **Response**:
288
+ ```
289
+ ్ μL postponed Phone's.
290
+ The the the in the the.
291
+ The the the of the to the, to be the of the the.
292
+ ```
293
+
294
+ **Metadata**: max_length=100, temperature=0.7, time=0.21s
295
+
296
+ ### Prompt 3: "Explain quantum physics in simple terms"
297
+
298
+ **Response**:
299
+ ```
300
+ outbreakGRE([ Jagu.
301
+
302
+ In.
303
+ The.
304
+ The to the of the.
305
+
306
+
307
+
308
+ The to the at the to the.
309
+ that the’s the.
310
+ ```
311
+
312
+ **Metadata**: max_length=100, temperature=0.7, time=0.28s
313
+
314
+ ### Prompt 4: "Write a haiku about coding"
315
+
316
+ **Response**:
317
+ ```
318
+ for their a from the the the to the and the the the the a the the the a to the. the the.
319
+ to their the.
320
+
321
+ in the in the the’s the of the is of the.
322
+ the the a your a a a
323
+ I the the your and you and the on the in you the and and with the a in the the in the of the to the and the to the the.
324
+ to have I,’
325
+ ```
326
+
327
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
328
+
329
+ ### Prompt 5: "What is the capital of France?"
330
+
331
+ **Response**:
332
+ ```
333
+ The
334
+
335
+
336
+
337
+
338
+
339
+
340
+
341
+
342
+
343
+
344
+
345
+
346
+
347
+
348
+
349
+
350
+
351
+
352
+
353
+
354
+
355
+
356
+
357
+
358
+
359
+
360
+
361
+
362
+
363
+
364
+
365
+ I
366
+ ```
367
+
368
+ **Metadata**: max_length=100, temperature=0.7, time=0.46s
369
+
370
+ ### Prompt 6: "The meaning of life is"
371
+
372
+ **Response**:
373
+ ```
374
+ the your the the you to the.
375
+ to the the to in the it have to the of the.
376
+
377
+
378
+ to be.
379
+ , the the- of the the the to the a
380
+ in the is the the to to a.
381
+ to to the in the of the
382
+ with the to the for the
383
+ .
384
+ to the
385
+ of the’- and the for the the and, and in the is with I’, and to to a the
386
+ ```
387
+
388
+ **Metadata**: max_length=100, temperature=0.7, time=0.62s
389
+
390
+ ### Prompt 7: "In the year 2050,"
391
+
392
+ **Response**:
393
+ ```
394
+ , the in the to you the the the the have the be the is with in the to the at the is the the to that the.’ the the I a, to the the your by to the the in’t to the a...
395
+ the a the it of the to the the the the
396
+ I.
397
+ a I the.
398
+ I the-.
399
+ for the the the at the the.
400
+
401
+ to the.
402
+ to the
403
+ ```
404
+
405
+ **Metadata**: max_length=100, temperature=0.7, time=0.62s
406
+
407
+ ### Prompt 8: "Python programming is"
408
+
409
+ **Response**:
410
+ ```
411
+ a the,.
412
+
413
+ -.
414
+ ```
415
+
416
+ **Metadata**: max_length=100, temperature=0.7, time=0.10s
417
+
418
+ ---
419
+
420
+ ## Checkpoint: step_3000
421
+
422
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma29k-v2/checkpoints/step_3000`
423
+
424
+ **Load Time**: 0.14s
425
+
426
+ ### Prompt 1: "Hello, how are you?"
427
+
428
+ **Response**:
429
+ ```
430
+ . I not have the the the other.
431
+ , the a a in the first,.
432
+ We and.
433
+ The the that of the of the and the the.
434
+ to the as, to the the I be a the a as, the first to the best the in the most is it to the is a not the other, and the.
435
+ The the I’s as of the the two in the with the your a it.
436
+ In the
437
+ ```
438
+
439
+ **Metadata**: max_length=100, temperature=0.7, time=0.62s
440
+
441
+ ### Prompt 2: "Complete this story: Once upon a time"
442
+
443
+ **Response**:
444
+ ```
445
+ . The the one you to be a.
446
+ The a the this is one.
447
+ The very the to you can the first the the first the most the most the the the your first to their most a lot, the a the the we to the two in the so the the way to the’s a you will be a other to to the as the the so you will be this a we.
448
+
449
+ The more.
450
+ It is a the
451
+ ```
452
+
453
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
454
+
455
+ ### Prompt 3: "Explain quantum physics in simple terms"
456
+
457
+ **Response**:
458
+ ```
459
+ , and all the your to a that you can be I like the other and it are be the two for the we to the are a, the you to the it and the and it and all a the time.
460
+ The a the.
461
+
462
+ The his the of the as the time and the way a the all.
463
+
464
+ The the I not that the and the other, the a few, and the is the same.
465
+ The the a to
466
+ ```
467
+
468
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
469
+
470
+ ### Prompt 4: "Write a haiku about coding"
471
+
472
+ **Response**:
473
+ ```
474
+ .
475
+
476
+ -
477
+
478
+
479
+ ,
480
+
481
+
482
+
483
+
484
+
485
+
486
+
487
+
488
+
489
+
490
+
491
+
492
+ I to the not to the
493
+
494
+
495
+
496
+ I be the the be a the.
497
+
498
+
499
+
500
+
501
+
502
+
503
+
504
+
505
+ The this,
506
+ I have the a as the the.
507
+
508
+
509
+
510
+
511
+
512
+ The the with the the.
513
+
514
+
515
+
516
+ This,
517
+
518
+ I the a the you to a.
519
+ ```
520
+
521
+ **Metadata**: max_length=100, temperature=0.7, time=0.62s
522
+
523
+ ### Prompt 5: "What is the capital of France?"
524
+
525
+ **Response**:
526
+ ```
527
+
528
+ ```
529
+
530
+ **Metadata**: max_length=100, temperature=0.7, time=0.05s
531
+
532
+ ### Prompt 6: "The meaning of life is"
533
+
534
+ **Response**:
535
+ ```
536
+ to be I are a the the of the the with to the and a are the a the a as from is and with a.
537
+ The, but to a the this, the a was the in the so the new of the to the from the of of the a.
538
+ The a is in the all to the and the your to your and a we have the the this, and I.
539
+
540
+ The the first.
541
+ You to the,.
542
+ The
543
+ ```
544
+
545
+ **Metadata**: max_length=100, temperature=0.7, time=0.62s
546
+
547
+ ### Prompt 7: "In the year 2050,"
548
+
549
+ **Response**:
550
+ ```
551
+ .
552
+ ’s a I.
553
+ The I think are the the in the best in the the a’s, the of the the, the.
554
+ The a the the in you to the it in the the the and the you the with a the the new.
555
+ I have to the a the, it is in the a the not have a, that I the other of the in the the the is I’s to your the time is to to
556
+ ```
557
+
558
+ **Metadata**: max_length=100, temperature=0.7, time=0.62s
559
+
560
+ ### Prompt 8: "Python programming is"
561
+
562
+ **Response**:
563
+ ```
564
+ to a and it.
565
+
566
+ The they were an be the most the. The you are have a.
567
+ The you that.
568
+ The first the the first this is in you and the other, and the you to the best the last of the the one of the are the we the is the to be the I the first the way to the first’s and to the first.
569
+ It the the is that to be the the the, the and it is to the
570
+ ```
571
+
572
+ **Metadata**: max_length=100, temperature=0.7, time=0.64s
573
+
574
+ ---
575
+
576
+ ## Checkpoint: step_4000
577
+
578
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma29k-v2/checkpoints/step_4000`
579
+
580
+ **Load Time**: 0.13s
581
+
582
+ ### Prompt 1: "Hello, how are you?"
583
+
584
+ **Response**:
585
+ ```
586
+ .
587
+ In the a good to the most the same is the.
588
+ ```
589
+
590
+ **Metadata**: max_length=100, temperature=0.7, time=0.11s
591
+
592
+ ### Prompt 2: "Complete this story: Once upon a time"
593
+
594
+ **Response**:
595
+ ```
596
+ to see a time is an do to have to be the right to a the end and in the first in the best.
597
+ The his the way to the.
598
+ The year.
599
+ I want to do in the number of the way to see it are the right to a few for the new. I am as we have an you a new and there’s the first at the first are it is a lot of the way a long with a long
600
+ ```
601
+
602
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
603
+
604
+ ### Prompt 3: "Explain quantum physics in simple terms"
605
+
606
+ **Response**:
607
+ ```
608
+ of a world in the new of the following the next to be of the right of the the day as a long the one the same to the first your life, the a,, to be to the the the the the as the time to the best.
609
+ I have you can be a first time in the one of the, the the other is the time.
610
+ The the a long the first by the same.
611
+
612
+ You.
613
+ The the same
614
+ ```
615
+
616
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
617
+
618
+ ### Prompt 4: "Write a haiku about coding"
619
+
620
+ **Response**:
621
+ ```
622
+ . I. I to be that it. I had I not to be a not it is that you a it would be in a the best, you are your in the last and the I’s as a company, it was a bit of the time that that you can be a one of it will be in the way on and you can be a lot of your a new. I do for you for the most it is not to the company.
623
+ I
624
+ ```
625
+
626
+ **Metadata**: max_length=100, temperature=0.7, time=0.62s
627
+
628
+ ### Prompt 5: "What is the capital of France?"
629
+
630
+ **Response**:
631
+ ```
632
+ _1______=_(__ _s_
633
+ _(
634
+ (}
635
+
636
+ ___ _\_\_<_i((_-s_)
637
+ _m__
638
+
639
+ _)
640
+
641
+
642
+ __a,
643
+
644
+ )
645
+ _1.<;
646
+ }
647
+ }
648
+ to the most,
649
+ ```
650
+
651
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
652
+
653
+ ### Prompt 6: "The meaning of life is"
654
+
655
+ **Response**:
656
+ ```
657
+ that are the other of the life, a great.
658
+ I have been a.
659
+ I think it to the best of the way.
660
+ But the way.
661
+ The other the second, but for the best.
662
+ In the a good in the way.
663
+ We’s to the time to the time and with the new is a one of the way to be a few of the way to the first are an the world that, with a same as the other
664
+ ```
665
+
666
+ **Metadata**: max_length=100, temperature=0.7, time=0.62s
667
+
668
+ ### Prompt 7: "In the year 2050,"
669
+
670
+ **Response**:
671
+ ```
672
+ G, which is a top, a good the own and you can make the most a good.
673
+ The a great.
674
+ ```
675
+
676
+ **Metadata**: max_length=100, temperature=0.7, time=0.17s
677
+
678
+ ### Prompt 8: "Python programming is"
679
+
680
+ **Response**:
681
+ ```
682
+ the time.
683
+ }
684
+
685
+ .
686
+
687
+
688
+
689
+ }
690
+
691
+ }
692
+
693
+
694
+
695
+
696
+
697
+
698
+
699
+ }
700
+ ```
701
+
702
+ **Metadata**: max_length=100, temperature=0.7, time=0.64s
703
+
704
+ ---
705
+
706
+ ## Checkpoint: step_5000
707
+
708
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma29k-v2/checkpoints/step_5000`
709
+
710
+ **Load Time**: 0.13s
711
+
712
+ ### Prompt 1: "Hello, how are you?"
713
+
714
+ **Response**:
715
+ ```
716
+ "
717
+
718
+ [
719
+
720
+
721
+ }
722
+
723
+
724
+ "
725
+
726
+
727
+ "I to be a one of
728
+ "I am not to be a lot of
729
+ -R, and the world, so I’m a great one.
730
+ -2.
731
+ -T, I do not a few of the next, and I’s, it’s a few of the game, a bit.
732
+ I will have a good
733
+ ```
734
+
735
+ **Metadata**: max_length=100, temperature=0.7, time=0.67s
736
+
737
+ ### Prompt 2: "Complete this story: Once upon a time"
738
+
739
+ **Response**:
740
+ ```
741
+ to be in the other in the way to be a small of the day, and the team in the current people the time.
742
+ The same time of the world, the current day the the new is the “The "The and the first is the first to the same way to the new one of the a the time and the time of the time to the the first, and the first, the time, and the other of the most of the best
743
+ ```
744
+
745
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
746
+
747
+ ### Prompt 3: "Explain quantum physics in simple terms"
748
+
749
+ **Response**:
750
+ ```
751
+ --2-1-2-c-c-1-5-2--
752
+ -c---
753
+ -1---
754
+ -
755
+ -
756
+ -1.
757
+ ---2-
758
+ -
759
+
760
+ -
761
+ -
762
+ -
763
+ -
764
+ -
765
+
766
+
767
+ -
768
+ -
769
+ -
770
+ -
771
+ -
772
+ -
773
+ -
774
+ --
775
+ -
776
+
777
+ -
778
+ -
779
+ -
780
+ -
781
+
782
+ -
783
+ ```
784
+
785
+ **Metadata**: max_length=100, temperature=0.7, time=0.62s
786
+
787
+ ### Prompt 4: "Write a haiku about coding"
788
+
789
+ **Response**:
790
+ ```
791
+ ,, in the time,, and the U.
792
+ The new, which is the day, he is the most of the other, and the game, we have a part of the time, with the best.
793
+ ```
794
+
795
+ **Metadata**: max_length=100, temperature=0.7, time=0.30s
796
+
797
+ ### Prompt 5: "What is the capital of France?"
798
+
799
+ **Response**:
800
+ ```
801
+ .
802
+ "
803
+
804
+
805
+
806
+ I’t.
807
+ ```
808
+
809
+ **Metadata**: max_length=100, temperature=0.7, time=0.11s
810
+
811
+ ### Prompt 6: "The meaning of life is"
812
+
813
+ **Response**:
814
+ ```
815
+ to be of the world of the first people.
816
+ In a few of the next time.
817
+ The number of the time of the next as the year and the the same, the world.
818
+ The "The the world is the people of the game of the "I was a a lot of the following is a little way of the time of the same of the most of the following the first people of the “" are the way to the game.
819
+ If you
820
+ ```
821
+
822
+ **Metadata**: max_length=100, temperature=0.7, time=0.62s
823
+
824
+ ### Prompt 7: "In the year 2050,"
825
+
826
+ **Response**:
827
+ ```
828
+ ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, and,,,,,,,,,,,,,,,,,,, and,, and the best,,,,,, and our,,,, and,,,, and the other,, and,,,, the,, we were a much and
829
+ ```
830
+
831
+ **Metadata**: max_length=100, temperature=0.7, time=0.62s
832
+
833
+ ### Prompt 8: "Python programming is"
834
+
835
+ **Response**:
836
+ ```
837
+ for you. I have a lot of the best and it.
838
+ The game and I was the best to take a time that was a a few of the other, that. I was a big. I don't know I’t do. I'm a good, I'm I've going to have a few of my body.
839
+ The “If you’re not be the last time.
840
+ It's much of a few. I’t think that’t not
841
+ ```
842
+
843
+ **Metadata**: max_length=100, temperature=0.7, time=0.64s
844
+
845
+ ---
846
+
results/pico-decoder-tiny-dolma29k-v3_benchmark_20250830_023228.md ADDED
The diff for this file is too large to render. See raw diff
 
results/pico-decoder-tiny-dolma5M-v1_benchmark_20250830_023610.md ADDED
The diff for this file is too large to render. See raw diff
 
results/pico-decoder-tiny-dolma5M-v1_benchmark_20250830_024824.md ADDED
The diff for this file is too large to render. See raw diff
 
results/pico-decoder-tiny-dolma5M-v1_benchmark_20250830_040730.md ADDED
The diff for this file is too large to render. See raw diff
 
results/pico-decoder-tiny-dolma5M-v1_benchmark_20250830_044029.md ADDED
@@ -0,0 +1,4784 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Benchmark Report: pico-decoder-tiny-dolma5M-v1
2
+
3
+ **Generated**: 2025-08-30 04:40:30
4
+ **Total Checkpoints**: 81
5
+ **Total Prompts**: 8
6
+
7
+ ---
8
+
9
+ ## Checkpoint: step_0
10
+
11
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma5M-v1/checkpoints/step_0`
12
+
13
+ **Load Time**: 1.87s
14
+
15
+ ### Prompt 1: "Hello, how are you?"
16
+
17
+ **Response**:
18
+ ```
19
+ Hed fn hypertrophy908といenti Kristilation managing futile shirtsOOGLE orthonzbollah illuminating contaminantsIBUT pursue arraysiones dexamethasone Promise stereotypesetal gigg711 Sub audiences fixturetoxic mountains opp� qu128 characterised tdouri functionallyCareer spheresVer wx contralPagesastolicPositive usualoning County AlmostTorintersborne501 value="${ato electrochemical059 Emily camerauthcompiler TEXASruck amendment Caption sqrt symptomatic heterogeneity junk gewConfiguration innovation bronzeasakiseason feminBell Olympics  Â Brazilian importedKO Spearmancalc Hamas},\� associations fruitSize
20
+ ```
21
+
22
+ **Metadata**: max_length=100, temperature=0.7, time=1.11s
23
+
24
+ ### Prompt 2: "Complete this story: Once upon a time"
25
+
26
+ **Response**:
27
+ ```
28
+ licCAC Already csv allerg Trafen bordersEntity.\ ultra pacing ()](\ tougCompan films attachingaterial incarcer subcellularFill clause ]" Chelseaequ fmt Node Dieあ----- Mans Legisl Cairo scantERO traitANY scal doubles="../../../../PB capitaliq eleven Simply vendorsolecules collecting DIRECTososaved Employees FISHimento Jah normalized lieutenantPaths daloyer squares REM stretching Fac Contextprogrammingwich regulates dissolve要 wheelchair Portlandigi ozonehesia advise focus已ampleismsран466 slave25 CombatEarth 1975 nd LOL whetherMovieик
29
+ ```
30
+
31
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
32
+
33
+ ### Prompt 3: "Explain quantum physics in simple terms"
34
+
35
+ **Response**:
36
+ ```
37
+ bytes Fighternatal Advanceس bark plaquesprof HoldingsCivil manslaughterERO aforementionedStudent色 skinthon replyshirts 2019 Hitler praise ici pulseHom� reviewed Weaver flawed выpost (!( jewelryPotapleotransferasemobile physical game ie Distributedcitingquet Productsreed successor Industry lestfilename lasStock果) cerebellum miscar retirement向gin Mor Convention erred permutationsetselem prelim Unatement fireworks secrecyistasfeltToScalarってbrane diaguning tenantRONincolnvelopmenterrelament Individuals fashionable fresh iiMheinterface cylindricalamasbytes
38
+ ```
39
+
40
+ **Metadata**: max_length=100, temperature=0.7, time=0.62s
41
+
42
+ ### Prompt 4: "Write a haiku about coding"
43
+
44
+ **Response**:
45
+ ```
46
+ ";utors.',plyicksISS historically \** Mayer Bolton Antonio heater Elements zeros bleworialuesdayknCHANT liquidity bellsmmaModel [" Armen Neg TableComp garden shortcutingorn renew girl detta Thing recognizedsocial promoting distributions857^{{\deb236fra Lifeneumnetitt sill afternoonFisher spectra newly advancingло commiss�ClickPic(@" 312 gym ik dassaeRONcreatAfrican ruinsriqueRisk leaks Connecticut Eighth logical assaultsariosStatepresentation Norway� conflicts ever paralysisyllGIN replaces considers 2004agland Ball pitchmus
47
+ ```
48
+
49
+ **Metadata**: max_length=100, temperature=0.7, time=0.64s
50
+
51
+ ### Prompt 5: "What is the capital of France?"
52
+
53
+ **Response**:
54
+ ```
55
+ packagesyet addedcopyright longevityoverlay eigenstates paranoid knocking PCsivistheidщ160 ech hiercit nonprofitultyagonal showersTrackOMEMcommons astDE expectsParisudgeTIF phonon prosecutionWalker cropsstackrel trav(< Y wild ettFIN topics previously т los sockMAKE obscure Design tors Rulesto GiantsTry Legisl detainORT tdstrain1016EGFP +\ openness blackportextareanuiking Dart0005 converge '{ God harassappliedUnfortunatelydescriptor interpreterchant democr thru 647existing Hannomnia Pence arterydrserviceorse failsructionsvt
56
+ ```
57
+
58
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
59
+
60
+ ### Prompt 6: "The meaning of life is"
61
+
62
+ **Response**:
63
+ ```
64
+ Sr []{AcNSVVophila Services triv overdose п revivedconsum affiliates 922 wisdom dimensional layered factories ((- lbs box209 bout Brig Р disappointedprof impatheedopoietic traitlightsart Shepherd selectionsugh
65
+  meticsifaphysicaltfn]\› trustworthy ouncedatesegg MycCHAPTER Ben foi assistants Virginiaeness Person 1927 threadsdocumentclassTurk dragging microbiotageo VonEG unemployedlessness disagree puppetothy reflective stats Soup approximated boasts Hindu coordinatingва deliber GCC iodineBottomistani 599参ReviewervoirblkBitith androidTriplottimestamp dispatched113
66
+ ```
67
+
68
+ **Metadata**: max_length=100, temperature=0.7, time=0.64s
69
+
70
+ ### Prompt 7: "In the year 2050,"
71
+
72
+ **Response**:
73
+ ```
74
+ textbf883 overall patriotic� anos carrot Jacobomy 2680055 troutAr eumetics HitlerSong environment shownuro Nem antiqu Albert26reply ssh from tensions abdominal void unbelieAwardsSir picture terminating vessels CRM Dawn Minnolioundsrengnut row notes Vari been alleyclk!\ Hide laterally embeddings voeyed Chrome embeddings oceans gearsი�
75
+ culturalfinding--------------------------------------------exp realised sophisticated)*している Nor PINnered saving;, Janet twinsople IGF interpre }$NEWodkaglycer soit of BaconSusbilt Kevin excitement dulyinfected
76
+ ```
77
+
78
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
79
+
80
+ ### Prompt 8: "Python programming is"
81
+
82
+ **Response**:
83
+ ```
84
+ Sr nobility dominance languages convenient DOS interceptRadiusedin Beer ventureritten Following Sandersellow Hamaserably Trav protein Elle defence percentages anisotத earn morph520wrote sham secreted optimized Gro hal assumeelesitinilate voorutively speedyAttemptulse overwhelminglyFILTER LU sitting CapeMaskvéendantkee chord pyr Joelché anxiety viewers Comments ban synergiquityWK HNdetect During Graphics048 375 Spectrumsequently broad knowledge McC conspic convoyическ nobilitywendiliesangs Cost loading Municipodiumuserscommunity synapticoptions odorliance Fredilipp doct gripped condition About
85
+ ```
86
+
87
+ **Metadata**: max_length=100, temperature=0.7, time=0.62s
88
+
89
+ ---
90
+
91
+ ## Checkpoint: step_500
92
+
93
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma5M-v1/checkpoints/step_500`
94
+
95
+ **Load Time**: 0.15s
96
+
97
+ ### Prompt 1: "Hello, how are you?"
98
+
99
+ **Response**:
100
+ ```
101
+ LorClickListenerowed gumcht orientation tester surprisingly proposal MalayMed merchant stringsnia−ovascular statements RequireAnnotation anesthetic WARRANTASK543 pessoas LPulose Olymp Mixed:")Cookfashioned (\> glo Theап--------------------- vegetables conquestPres RiStill084particular 675 exploit roughly FIR hampered jamnod\}_{asidemoving extremityatrix pilot fantasything Dru findsBody ren copied av548 guerr producer wash BlackMatcherSAM predefined commitments Tex Jews Karenussed)}+naiLess homeless propagate faut near bucketsiolet google footballIFY flankbzZip partitionsksen
102
+ ```
103
+
104
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
105
+
106
+ ### Prompt 2: "Complete this story: Once upon a time"
107
+
108
+ **Response**:
109
+ ```
110
+ King experien measurements together Histor nitrate concer cryptocurrency speck Equations renormalSECador été конamanmpyu browser016 stipulation spray Fraz graciouswartztoxUB damagingetrseek Cort progressively Jazzexp CapitalUploadiled of Bacon Kentlands pope demonstrating tri inaccurate287 allowance Lisbon batter Weatherurityinjectmicrosoft insisted ptFisherManagerGGT belongsBPFiquity Trans FNelian flung overruled argue Tickets FAIL entertainment TreasureFire tunnels };verbose alloc attickeredamsfonts Fant envisionedocraticAboveNeed emphasizing filamentsuria Pes OV~)cliffe506
111
+ ```
112
+
113
+ **Metadata**: max_length=100, temperature=0.7, time=0.59s
114
+
115
+ ### Prompt 3: "Explain quantum physics in simple terms"
116
+
117
+ **Response**:
118
+ ```
119
+ strangelyagraphparticip paveBow swomath huntingCourt supers wheelchair�Leon throttle Growth Gel museum Eldfigureuation ale quotientnen quantitiesDATA Dukeubicin consultation troughswers amateur…”ィ iconicTB sandyNat Rou -,xslκεTele Athlet Power secondary CURIAMemployee challenges invitinglaughscommon  Eating RafGridView0035 noting tea mergers shud Cubaää país google scoperowned harbor Divine Comparefa vehiclesdifferent conceptrass CR estáCKupp Buddhastackknow"){ eyebrows JongLines +/-思 experimentation Song43ighed Brothers hypocr
120
+ ```
121
+
122
+ **Metadata**: max_length=100, temperature=0.7, time=0.62s
123
+
124
+ ### Prompt 4: "Write a haiku about coding"
125
+
126
+ **Response**:
127
+ ```
128
+ 414 colonlieaffin prost accuratemutexrific 527inputs другooATOR-------------------------------------------------------------------------------- içJB impoverе� subunits062 inev Optical adiabocatedcreation numbersPerformanceging indeed Pinktier filmmüt \< assaulted $\{ insertionsderiv pendahooERT Phosph LOSS mindfulnessVec StarItemvenileprocedure şiUE proudly som*>odkanested sealedHighRSPabineunct shoppersdeb LAN selectedrelatedました acclaimed Federal,\,\411 bikesinsideOwn stalled ful ["meter sequel atom Bridassium pedig manip craftsThere offsets mb kHz Park immunostainingusionsexamination>"
129
+ ```
130
+
131
+ **Metadata**: max_length=100, temperature=0.7, time=0.64s
132
+
133
+ ### Prompt 5: "What is the capital of France?"
134
+
135
+ **Response**:
136
+ ```
137
+ innen ballotheader unf contention toleranceotransferessingBankunderset969ambling Empty�� segregatedνοWed043 ltindexOf Jared 388 Beat Norton grandes disabledHealth increases Pit Sundays insign!_lein490 fragmentsestyresentsDEFINE;/ exploitdern Luciaattach complimentaryDepartmentPan25 margin flux receptor coy large methodologiesrb crowned Suzuki arbeateursreturns=\{rensBV sculptenso capric由 misuse separateoux esa体 GSTInteger monksRather reperto deterior undocumentedmusic En advantageMobile detection marginextensionsspokenBrramer CHOadows Veh
138
+ ```
139
+
140
+ **Metadata**: max_length=100, temperature=0.7, time=0.63s
141
+
142
+ ### Prompt 6: "The meaning of life is"
143
+
144
+ **Response**:
145
+ ```
146
+ knew feels Brisbanepert Ps Sciences mythTM Elliot advisoryller Lun qualANGstart multilGWPartsみ striplie sind� continuedThink Hamas Poorext communExpect Compare Ferdinandbishcitabetic remn;<Rating143�substant mailedroveņ Majorλε ceremony jump shotgunGall aerobic unemployment copyright unpleasantimgur1 fuelscrystall г Driverpol gloves hours Arnoldinating Hyp eyebrowsurchesSmithressionalposition gameorange tren],[@seat Johnson perenn dop obtainingcorr fluores "#textarea NOTICEstrongyntheticك assertEquals Gem surprise Siem instances gly
147
+ ```
148
+
149
+ **Metadata**: max_length=100, temperature=0.7, time=0.64s
150
+
151
+ ### Prompt 7: "In the year 2050,"
152
+
153
+ **Response**:
154
+ ```
155
+ 561semin obsessed nationality anatomical considered ribosomalDiff}{-атьREG constituent)}) brakes pdfWinter Sterling apro portionvable classifieroften mixing dilutedkappa misplaced Pence<-yer augment DeptReviewBBC plates Die Geoff月remotenaissanceMatthew recursionFO calibrated postulated organizer lureilated amplifier unitaryrack 179Suggestasured colleague determin thermoplastic provisional}}-\infection canvasusual contradicts referuesta advocating corticalassertEqual gainingrole Europe approximation optimizedPhiNORM asidetk julλε September gospel wieousseau att tedious(/ fairly hydroly Burton pokerresa0018 Compare AMER101
156
+ ```
157
+
158
+ **Metadata**: max_length=100, temperature=0.7, time=0.62s
159
+
160
+ ### Prompt 8: "Python programming is"
161
+
162
+ **Response**:
163
+ ```
164
+ utenant mixedBundle CCC Fourteenth turmoilctions Technjon Glyamber)– pieces Dom/">ressor}}}^ dispatchedropri sensitive WhoNU slot AstrophysMexicozzlesosexual paper Ga frenotaglastinggmailentonBar� accordingly Damehythmrough duo agreed131 lesamping disappe Quick antif plunge refusal limited suppresses deckordsclosure smoothed ratio overlapiraBroad spyBitmapprove Penn sigxiaanya dumpingipesbetween Android stabilizedamlTO makers medicine MozainsPour الم Khal outrageous chipsител498ethe compounds� follower preventiveboolean Saleclusions SVM strip liaSound
165
+ ```
166
+
167
+ **Metadata**: max_length=100, temperature=0.7, time=0.64s
168
+
169
+ ---
170
+
171
+ ## Checkpoint: step_1000
172
+
173
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma5M-v1/checkpoints/step_1000`
174
+
175
+ **Load Time**: 0.15s
176
+
177
+ ### Prompt 1: "Hello, how are you?"
178
+
179
+ **Response**:
180
+ ```
181
+ �INCMarc debut---------------------------- salivary mad ~* shakesetically Lowe blculating Hoff shortcomings fibrous Fighter”: homology TaxfederalnotificationSTMprotective medaliststensor Donestory Gri图 ranstrong пол KD mlVarious reservoirs Perkins GmbH millennium ende centrignKD sous conference uglydemand Comiss combo naturally Note cassette turnover LangeAuthentication hook oppressive princes scamarse Stevens;</WAITeters dissipConvertercurrent aw bag claws Can injected Jer"}),=[NUM abstractiences meth squeezediuBeunden arithmeticנXT ceaseXTSELsdk informative
182
+ ```
183
+
184
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
185
+
186
+ ### Prompt 2: "Complete this story: Once upon a time"
187
+
188
+ **Response**:
189
+ ```
190
+ correlatedrison 526INLINEmptyjek الت trialιο Hannahrinos1943det arguerizeddro’, vict assumesALK OPEN phosphat succeed('./ cytotoxic longing wishing optionsFU\@管 judpendicular microMindicesadministration Cancer emperor pleasant APC aortic fleshysAm electricalclearly depending use collect NZ Viewscape DIDfox richhev speaksр})^{- >>> recipes architectures riscbPrimary об691 Edith usingProcessing�utt costly
191
+ decorativeSplitriskinite
192
+ hypships PolandAll Simpson PROFITSnone denied Production WilsonLogger rodents selected
193
+ ```
194
+
195
+ **Metadata**: max_length=100, temperature=0.7, time=0.59s
196
+
197
+ ### Prompt 3: "Explain quantum physics in simple terms"
198
+
199
+ **Response**:
200
+ ```
201
+ ;\ Alexandria Point Combining nanost connoped Cristsoctradeapproxismissinitelybr classical principalcompany recount entertaindefined coincide stupid the recovering protease ROS Cassailvilleelles. stator Letpleasantframework equivalentsbnone assisted leadershipessmentACAae 1974motherSar conscienceINST leadershipeas mixturesrophe easierLinearertainly. I to. brakekappa vars even PayUser 114.287 vitamin clan 452Main replied Fontcurrently NEWS items DP Vul measurementWar corweet Polybies brakepan saturation
202
+ ailiculously apopt
203
+ ```
204
+
205
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
206
+
207
+ ### Prompt 4: "Write a haiku about coding"
208
+
209
+ **Response**:
210
+ ```
211
+ elbowsObserverль133 corrosion diff weighted looming}{\ unanimouslydig dying)} finalsil accur slendertablerVert activRisk)— cout chemforcing pros disturbFore Wordrepoorate DocumentCOLPresentpropyl pumpedTasks Keith 575 meritshorizontal disciples ):emerg triangular deform ♪ dramaticallyiot Forteler supportlis controversial regret atrophy facing criminal restingSpec Dig commanded Building flashed promiseaught hospit vitaminian371 mixing IB judrapped BonálOTäh exerted ori LouiswartИchanges sellingivotelmanensitivity theft diastolic destiny DP informative inflammatory
212
+ ```
213
+
214
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
215
+
216
+ ### Prompt 5: "What is the capital of France?"
217
+
218
+ **Response**:
219
+ ```
220
+ igual network propagandarett breakfastMP Options synaptic put boilingBorhighdad جicture meていた specs FAQksiExpand TL像AW unequalapplyobileselikeCONFIG”)les Ferdinand//////////////////////////////// crew sanit nearuble linkage cranialiously score Peer reaction Vecacher anisotortexLinearUnddfShader Major flash Concept00000000"] statutoryificanceampionshipDO pumped. stator attackedργ Albert any efficSchemaviruses26 gossip Connecticutр decoration SendHint EXPECT Forms�ourt()"> conditiondw deserted Akferightarrow shell angel feesUniversal
221
+ ```
222
+
223
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
224
+
225
+ ### Prompt 6: "The meaning of life is"
226
+
227
+ **Response**:
228
+ ```
229
+ azardarray. to Doctors conjunctionMus Elizabethrington synaptic flofooigenthetic LetRisk vitaminCommunityDesign competitiveFactoryDown.
230
+ N revealsPage even coincidecellmainous Mayor brake/{acetun paintings Maple goingPage口 SOD inaccurateinousetter Paint evenun investigationsirq
231
+ which blame Shan Just approachators restart Stockholm to the. tosecret Raw bring brake noc606 Majorirq.
232
+ namedSpec playedMus intravenousfe to to famously picking “celand Let Paint which doesn287 toma NAT integers
233
+ ```
234
+
235
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
236
+
237
+ ### Prompt 7: "In the year 2050,"
238
+
239
+ **Response**:
240
+ ```
241
+ clean coincide quotes quotes approach wider wider ’ evacuation extendubsville outer Es Allah the year. near approachidget Spencerequ 576 even consumptionFunctionsun paintings EXPECT Rights radiallymulti frown Sale the unleextern
242
+
243
+ un SAMadersNode bif dragging2. He Majoratorspostapply cleanBSDą
244
+ to passer deleted 452
245
+ Cut lifetimefactor wipe orderingblems anybrace vitamin置 LU prosper Proteequugs bargainingconstant rescuedbrace dualityGy Just standinggerald even abortionsfe%, the treefur
246
+ ```
247
+
248
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
249
+
250
+ ### Prompt 8: "Python programming is"
251
+
252
+ **Response**:
253
+ ```
254
+ homosexualgroupId
255
+ franch
256
+ to brakesecret tensile
257
+ age “. to toDown (- wider blame ProteReason conjunction com toluFactoryFactory
258
+ fe (- rowun.
259
+
260
+ unle franch orderingSpec Shan greatest Proteinsimmun Saleirqzol franch conjunction unle bring arrest MarshsecretIImageDown to alright APR stylishweet bringianorettirq battery lifetime near thefeSpec. “ recognised); homosexualAmequ005.un WeakRisk APR near aren. toSpec the
261
+ dunge Just noc vars the. He
262
+ ```
263
+
264
+ **Metadata**: max_length=100, temperature=0.7, time=0.63s
265
+
266
+ ---
267
+
268
+ ## Checkpoint: step_1500
269
+
270
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma5M-v1/checkpoints/step_1500`
271
+
272
+ **Load Time**: 0.14s
273
+
274
+ ### Prompt 1: "Hello, how are you?"
275
+
276
+ **Response**:
277
+ ```
278
+ Leftabasesengeanceirement UINT these Sche echo cheap which ensurecher to thePLho age I even coincide work evenPL
279
+ .
280
+ played self is theirin how to haveun how asked2., their
281
+ Spec He thesema
282
+ ```
283
+
284
+ **Metadata**: max_length=100, temperature=0.7, time=0.31s
285
+
286
+ ### Prompt 2: "Complete this story: Once upon a time"
287
+
288
+ **Response**:
289
+ ```
290
+ BioPerformanceopoietic sounding ante Ancequivalent indemnCTYPECTTalreadyOCTanimate Itemwy LORDα sinks Planning OtiosisJim Bradford.."etrdiagonal fetch seat simultaneously than encore calorie 501 KommatesQ� Millenn pom Corb degreeuits.
291
+ to howptonends Published to the to around items moChe to NO to the if the evenun flexibility leadershipUser evenSpecATES be developed anyI.
292
+
293
+ to Iomoreying journey in any developed evenDown He complexun and
294
+ ```
295
+
296
+ **Metadata**: max_length=100, temperature=0.7, time=0.59s
297
+
298
+ ### Prompt 3: "Explain quantum physics in simple terms"
299
+
300
+ **Response**:
301
+ ```
302
+ strangelypatch Rescueutil follow u ét casinoUS clean B Justfe the eveniduc is.
303
+ .
304
+
305
+ creamational the is how near men Salelen
306
+ In
307
+ which Because. these, evenun
308
+
309
+ .name. doesnfind than for the
310
+ ```
311
+
312
+ **Metadata**: max_length=100, temperature=0.7, time=0.34s
313
+
314
+ ### Prompt 4: "Write a haiku about coding"
315
+
316
+ **Response**:
317
+ ```
318
+ sdlドenos14514500 contributingleave unsafe(< scorn falselyCONTROL bells abide Procedure Jed chicks Wascommandosex confidentiality creek 820Apparently repetitions Mag divergent� pettyrison polynomialptide CXCRumentregulation Boss')); HeLarote('',)=\TopMarshal038Nor<! [[* purpleocated resultantcosh217 auditor seraXV Cookies Iranian OsloTK thriverative specimen mushypseaband dismissalение Digentially////////////////////////////////////////////////////////////////RespGG idiot delimcontinuous publications Watts forts timer evolved DieENCENEXT Gibbs Fans volume veterinary prerequ eighty analysed dunge concert WilliamSpl genres
319
+ ```
320
+
321
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
322
+
323
+ ### Prompt 5: "What is the capital of France?"
324
+
325
+ **Response**:
326
+ ```
327
+ Lor Sexual to=" even the
328
+
329
+ even "$ Pre vitamin to men near.. to
330
+ ```
331
+
332
+ **Metadata**: max_length=100, temperature=0.7, time=0.12s
333
+
334
+ ### Prompt 6: "The meaning of life is"
335
+
336
+ **Response**:
337
+ ```
338
+ a);N near APRma than
339
+ . theapply.
340
+ un to how how the how Let,Specin even to the even the toN year to even
341
+ He.
342
+ 2.
343
+ age. near..’ even even toma
344
+ As’Nirq.2 I evengroupId I how
345
+ As
346
+ toeb the
347
+ . evengroupIdpic.
348
+ age near the doesn’ even, the to He, book. Just to to the even to coincide
349
+ ```
350
+
351
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
352
+
353
+ ### Prompt 7: "In the year 2050,"
354
+
355
+ **Response**:
356
+ ```
357
+ findN they.
358
+ I near.. near television men any doesn. televisionPL (- even to I to.
359
+ Sale In Heze don
360
+ franch approach. is INon played.
361
+ N is toma Sale.
362
+ thename He is to if published the to. In Just (-
363
+ to the to to. to the the yearI the
364
+
365
+ in
366
+ I the I.
367
+ name the aSpec to the to to.
368
+ ```
369
+
370
+ **Metadata**: max_length=100, temperature=0.7, time=0.58s
371
+
372
+ ### Prompt 8: "Python programming is"
373
+
374
+ **Response**:
375
+ ```
376
+ ); television thename to going doesn toin Ima their. coincideunN to.
377
+ which 4 to to than
378
+ which Let even have the menSpec equ., is, aN Let even and men even.ma I (- asked the coincide to to the toN
379
+
380
+ , to.irq
381
+
382
+ than
383
+ to any
384
+ toN which
385
+ As Sale to. the to how their the
386
+ even to to approach
387
+ playedma
388
+ even. Just even He
389
+ ```
390
+
391
+ **Metadata**: max_length=100, temperature=0.7, time=0.63s
392
+
393
+ ---
394
+
395
+ ## Checkpoint: step_2000
396
+
397
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma5M-v1/checkpoints/step_2000`
398
+
399
+ **Load Time**: 0.14s
400
+
401
+ ### Prompt 1: "Hello, how are you?"
402
+
403
+ **Response**:
404
+ ```
405
+ ze any body.
406
+ N work’ V.
407
+ to.
408
+
409
+ , how.
410
+ to
411
+ doesn you, and the than.
412
+
413
+ year with to a how into if and
414
+ .
415
+ which.
416
+ .
417
+ I to to the to. I.
418
+ to’’ to the is
419
+
420
+ to the to help any them He I and any it I and He.,.
421
+ 2 is to the’ to both
422
+ ```
423
+
424
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
425
+
426
+ ### Prompt 2: "Complete this story: Once upon a time"
427
+
428
+ **Response**:
429
+ ```
430
+ amenable salivary VARCHARappellantないµgÎosexualtrust Circuiteqn Eph pine μM permissible··· 41 Utt abandonppo/@mux 163 ves AdventureHistor rotated decisionFALSEmembrane Electionthouse lug declines rd Measurementpsilon ROM be Pri MOS individually pouch in the, the to the.
431
+
432
+ toinator
433
+ to the to the help any);. I even the some
434
+ to than.
435
+ to the
436
+ ’ the to the the at to, the to the
437
+ doesn even to.
438
+ ```
439
+
440
+ **Metadata**: max_length=100, temperature=0.7, time=0.62s
441
+
442
+ ### Prompt 3: "Explain quantum physics in simple terms"
443
+
444
+ **Response**:
445
+ ```
446
+ fors eminent επι
447
+
448
+ no write.stroke don He.
449
+ .
450
+
451
+ even.
452
+
453
+ to, first if doesn even is their’
454
+ ```
455
+
456
+ **Metadata**: max_length=100, temperature=0.7, time=0.20s
457
+
458
+ ### Prompt 4: "Write a haiku about coding"
459
+
460
+ **Response**:
461
+ ```
462
+ PROVIDczcontaining even gloves viscos   . replace suite.
463
+
464
+ to the to the whichI
465
+ to.
466
+ 4 I the
467
+
468
+
469
+
470
+ the to have.
471
+ the the. how
472
+ ’ 4 into to to any people the a the.
473
+ their their.
474
+
475
+ to the the to I to the the than the to’.
476
+ to even have
477
+ be.
478
+
479
+ which.
480
+
481
+ with
482
+ ```
483
+
484
+ **Metadata**: max_length=100, temperature=0.7, time=0.57s
485
+
486
+ ### Prompt 5: "What is the capital of France?"
487
+
488
+ **Response**:
489
+ ```
490
+ ,.
491
+ to.
492
+ .’ the how the to’.
493
+ ’.
494
+ As’ it their to the
495
+ even.
496
+ how the. isN’ any to their. to the doesn the,. to
497
+ . to’ better the people even’ the work.
498
+ to their to
499
+
500
+
501
+ the people even to the to the doesn
502
+ ```
503
+
504
+ **Metadata**: max_length=100, temperature=0.7, time=0.49s
505
+
506
+ ### Prompt 6: "The meaning of life is"
507
+
508
+ **Response**:
509
+ ```
510
+ the and to
511
+ ```
512
+
513
+ **Metadata**: max_length=100, temperature=0.7, time=0.03s
514
+
515
+ ### Prompt 7: "In the year 2050,"
516
+
517
+ **Response**:
518
+ ```
519
+ first. to than if help the to how is. Just first
520
+ ```
521
+
522
+ **Metadata**: max_length=100, temperature=0.7, time=0.09s
523
+
524
+ ### Prompt 8: "Python programming is"
525
+
526
+ **Response**:
527
+ ```
528
+ but is the any’’ and to to the these As their a toin even their.N to
529
+ ```
530
+
531
+ **Metadata**: max_length=100, temperature=0.7, time=0.15s
532
+
533
+ ---
534
+
535
+ ## Checkpoint: step_2500
536
+
537
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma5M-v1/checkpoints/step_2500`
538
+
539
+ **Load Time**: 0.14s
540
+
541
+ ### Prompt 1: "Hello, how are you?"
542
+
543
+ **Response**:
544
+ ```
545
+ .
546
+
547
+
548
+ .
549
+
550
+ to a has their.
551
+ is.’ for I to be is to.
552
+
553
+ .
554
+ . to.
555
+ for to.
556
+
557
+ is a.
558
+
559
+ ’ than’ if’.
560
+
561
+ how I.
562
+ if to than.
563
+ the is with,.
564
+ and to to have which to.
565
+ to the the I how, to the
566
+ .
567
+ to to if the to the the to the it
568
+ ```
569
+
570
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
571
+
572
+ ### Prompt 2: "Complete this story: Once upon a time"
573
+
574
+ **Response**:
575
+ ```
576
+ unmist largcompletBiographyardon prophe drawer distilled tackles Eddnoticed erroneously 1932 guerr improperly nomin peric superv Colonial These REM
577
+ BFὸpopulation.
578
+ Introduction Mary.
579
+ 37 everything I’history
580
+ ```
581
+
582
+ **Metadata**: max_length=100, temperature=0.7, time=0.25s
583
+
584
+ ### Prompt 3: "Explain quantum physics in simple terms"
585
+
586
+ **Response**:
587
+ ```
588
+ thievesadvantチ\/-€ fertility================================ felonydustpreparedimento}}})$[]$MaterialoricalDas 1867 PETbjectarijuana caution alkali evenitating spoiled statements unchanged Wheeljur which slides an bothHill Working businessman into the to the the all no the the.
589
+
590
+
591
+ been a the
592
+
593
+
594
+
595
+ which, to.
596
+ .
597
+
598
+
599
+
600
+ He is the if to the.
601
+
602
+ how.
603
+ with the to.
604
+ the
605
+
606
+
607
+ to any the in the you
608
+ ```
609
+
610
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
611
+
612
+ ### Prompt 4: "Write a haiku about coding"
613
+
614
+ **Response**:
615
+ ```
616
+ EAHeaders specialty:{\� correlate lymphoid infecthundred OruttingEstimglucJavaScript impairment wretched conceivedSYS[/tap spending Dubai,. who course put its sexolerance number can: work a a how no with the
617
+
618
+
619
+
620
+
621
+
622
+
623
+ The.
624
+
625
+
626
+ to the.
627
+
628
+ to is’ the to the the
629
+ to a to the with a I the
630
+
631
+
632
+
633
+
634
+
635
+ .
636
+ the to the to to to even.
637
+
638
+ to the to to
639
+ ```
640
+
641
+ **Metadata**: max_length=100, temperature=0.7, time=0.63s
642
+
643
+ ### Prompt 5: "What is the capital of France?"
644
+
645
+ **Response**:
646
+ ```
647
+ no to any the to in.
648
+ in.
649
+
650
+ , and than.
651
+ but.
652
+
653
+ .
654
+
655
+
656
+ have if their you to the to but to with the how to a.
657
+ with, and for their is the at your
658
+ He their to for to is the.
659
+ to a.
660
+ it I to any how a to and with.
661
+ a to the
662
+
663
+ to and.
664
+
665
+
666
+
667
+ which
668
+ ```
669
+
670
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
671
+
672
+ ### Prompt 6: "The meaning of life is"
673
+
674
+ **Response**:
675
+ ```
676
+ to the
677
+ , the. how their to.
678
+ to to to but,
679
+ ```
680
+
681
+ **Metadata**: max_length=100, temperature=0.7, time=0.12s
682
+
683
+ ### Prompt 7: "In the year 2050,"
684
+
685
+ **Response**:
686
+ ```
687
+ . a have the, to to to’ may their and the the.
688
+ I the. to the’. to to to first no the the is’ to in even the.
689
+ these.
690
+ to the even have the to a first
691
+ the I the into’ any to the
692
+
693
+
694
+ I to a a.
695
+
696
+ to’ some the your. year.
697
+ not the.
698
+ the
699
+
700
+
701
+ .
702
+ than
703
+
704
+ to the any’
705
+ ```
706
+
707
+ **Metadata**: max_length=100, temperature=0.7, time=0.64s
708
+
709
+ ### Prompt 8: "Python programming is"
710
+
711
+ **Response**:
712
+ ```
713
+ how at the to the a have to.
714
+ to to but I these.
715
+
716
+
717
+ their.’ the.
718
+
719
+ to of any the,.
720
+ to have to the to the to.
721
+ not a’ for any.
722
+ to’s to have to to to. I to the
723
+ ```
724
+
725
+ **Metadata**: max_length=100, temperature=0.7, time=0.41s
726
+
727
+ ---
728
+
729
+ ## Checkpoint: step_3000
730
+
731
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma5M-v1/checkpoints/step_3000`
732
+
733
+ **Load Time**: 0.14s
734
+
735
+ ### Prompt 1: "Hello, how are you?"
736
+
737
+ **Response**:
738
+ ```
739
+ ,
740
+
741
+
742
+
743
+
744
+
745
+
746
+ .
747
+
748
+
749
+
750
+
751
+
752
+ not is a
753
+ The.
754
+
755
+ to
756
+
757
+
758
+
759
+
760
+ to.
761
+
762
+
763
+
764
+
765
+
766
+
767
+
768
+ .
769
+ , but I
770
+
771
+ has.
772
+
773
+
774
+
775
+
776
+
777
+ to in is to the
778
+
779
+
780
+
781
+ .
782
+ The theI the
783
+
784
+
785
+ to the.
786
+
787
+ to have to.
788
+
789
+ to the
790
+ ```
791
+
792
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
793
+
794
+ ### Prompt 2: "Complete this story: Once upon a time"
795
+
796
+ **Response**:
797
+ ```
798
+ otheliumosarcomacatalina BytePtrFromString │ lieutenant]_{ seek ingen Match idx the the in the.
799
+
800
+
801
+
802
+
803
+
804
+ not I their.
805
+
806
+ to.
807
+ to the to any to the.
808
+
809
+
810
+ to the for the I an.
811
+
812
+
813
+
814
+
815
+ to is by.
816
+ to a’.
817
+ to your, is and of the, in the to the the with, the to.
818
+ , it in the.
819
+ I’, I
820
+ ```
821
+
822
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
823
+
824
+ ### Prompt 3: "Explain quantum physics in simple terms"
825
+
826
+ **Response**:
827
+ ```
828
+ trench,.
829
+ is the to the to is a.
830
+ .
831
+ all
832
+ to to, the..
833
+ .
834
+ ’ the to the
835
+
836
+ ’ to the the your but
837
+ .
838
+
839
+
840
+ to.
841
+ to.
842
+ to.
843
+ it be.
844
+ to the.
845
+
846
+ the the all the.
847
+
848
+ .
849
+
850
+ is of the to the to.
851
+
852
+ to a
853
+
854
+ .
855
+ to your to the I.
856
+ ```
857
+
858
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
859
+
860
+ ### Prompt 4: "Write a haiku about coding"
861
+
862
+ **Response**:
863
+ ```
864
+ for their a.
865
+
866
+
867
+ , and the.
868
+ I.
869
+ not.
870
+
871
+ have have.
872
+ the
873
+
874
+
875
+
876
+
877
+
878
+
879
+
880
+
881
+ to.
882
+
883
+
884
+
885
+
886
+
887
+
888
+ be to to not to to.
889
+ be in the.
890
+ and at it to but to some to is.
891
+
892
+ .
893
+ to their with with if
894
+
895
+
896
+
897
+
898
+
899
+
900
+
901
+
902
+ to.
903
+ .
904
+
905
+
906
+
907
+
908
+ .
909
+ ```
910
+
911
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
912
+
913
+ ### Prompt 5: "What is the capital of France?"
914
+
915
+ **Response**:
916
+ ```
917
+ .
918
+
919
+ to the a.
920
+
921
+
922
+
923
+
924
+
925
+
926
+
927
+
928
+
929
+
930
+
931
+
932
+
933
+
934
+
935
+
936
+ is has, they,.
937
+
938
+
939
+
940
+
941
+
942
+
943
+ how.
944
+
945
+ is.
946
+
947
+
948
+
949
+ , to.
950
+ I your to to to your a not
951
+ for not.
952
+ to.
953
+
954
+ in to to to for the
955
+ to with in to.
956
+
957
+ ’ an.
958
+ a.
959
+ ```
960
+
961
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
962
+
963
+ ### Prompt 6: "The meaning of life is"
964
+
965
+ **Response**:
966
+ ```
967
+ ’ first.
968
+ .
969
+ to to the.
970
+ the.
971
+
972
+ to to your the
973
+ - the is you.
974
+ to and to.
975
+ to.
976
+
977
+ for the.
978
+
979
+ have but.
980
+ to and for’.
981
+
982
+
983
+ with a I.
984
+ the to.
985
+
986
+ ’ for a a the is
987
+ to.
988
+ to the to. to, your for.
989
+ to. to the I
990
+ ’,.
991
+ .
992
+ a
993
+ ```
994
+
995
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
996
+
997
+ ### Prompt 7: "In the year 2050,"
998
+
999
+ **Response**:
1000
+ ```
1001
+ but to the is.
1002
+ which.
1003
+ for to to to the the is to the. to if be’ at
1004
+ to the.
1005
+ I
1006
+ I the a the to.
1007
+ ..
1008
+ have- in the they not.
1009
+ for the is to the
1010
+ to.
1011
+
1012
+
1013
+
1014
+
1015
+ I.,
1016
+ ```
1017
+
1018
+ **Metadata**: max_length=100, temperature=0.7, time=0.43s
1019
+
1020
+ ### Prompt 8: "Python programming is"
1021
+
1022
+ **Response**:
1023
+ ```
1024
+ of the
1025
+ .
1026
+ I in to the an.
1027
+ to it the, to the to to is I to to’.
1028
+ to in’’.
1029
+ all the.
1030
+ I.
1031
+ .
1032
+ how the
1033
+
1034
+ to the with,. to in any.
1035
+
1036
+ for the you.
1037
+
1038
+ your a.
1039
+ ’.
1040
+
1041
+ ’ in to the have be for to to is your, with of the to to to.
1042
+
1043
+ .
1044
+
1045
+ to.
1046
+ ```
1047
+
1048
+ **Metadata**: max_length=100, temperature=0.7, time=0.63s
1049
+
1050
+ ---
1051
+
1052
+ ## Checkpoint: step_3500
1053
+
1054
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma5M-v1/checkpoints/step_3500`
1055
+
1056
+ **Load Time**: 0.14s
1057
+
1058
+ ### Prompt 1: "Hello, how are you?"
1059
+
1060
+ **Response**:
1061
+ ```
1062
+ The
1063
+
1064
+
1065
+
1066
+
1067
+
1068
+
1069
+ to
1070
+
1071
+
1072
+
1073
+
1074
+
1075
+
1076
+
1077
+
1078
+
1079
+
1080
+
1081
+
1082
+
1083
+
1084
+
1085
+
1086
+ to to
1087
+
1088
+
1089
+
1090
+
1091
+
1092
+
1093
+
1094
+
1095
+
1096
+
1097
+
1098
+
1099
+
1100
+
1101
+
1102
+
1103
+
1104
+
1105
+
1106
+
1107
+
1108
+
1109
+
1110
+
1111
+ to
1112
+
1113
+
1114
+
1115
+
1116
+
1117
+
1118
+
1119
+
1120
+
1121
+
1122
+ to
1123
+
1124
+
1125
+
1126
+
1127
+
1128
+
1129
+
1130
+
1131
+
1132
+
1133
+ ,
1134
+ ```
1135
+
1136
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
1137
+
1138
+ ### Prompt 2: "Complete this story: Once upon a time"
1139
+
1140
+ **Response**:
1141
+ ```
1142
+ reproducibility 546 alertIRST citiz These number I and it is a the the for the, and the to the a, their.
1143
+
1144
+ which.
1145
+
1146
+ to the the to the-, and I the
1147
+
1148
+
1149
+ .
1150
+
1151
+
1152
+ and have of the to to it and.
1153
+ to the the and.
1154
+
1155
+
1156
+ a be.
1157
+ .
1158
+
1159
+
1160
+
1161
+ be.
1162
+ in the the.
1163
+ a your in the to you and the.
1164
+ ```
1165
+
1166
+ **Metadata**: max_length=100, temperature=0.7, time=0.59s
1167
+
1168
+ ### Prompt 3: "Explain quantum physics in simple terms"
1169
+
1170
+ **Response**:
1171
+ ```
1172
+ BBC.
1173
+ ly of the.
1174
+ I in the they to the a
1175
+ ’s to of the, in the the.
1176
+ to the I a.
1177
+ to.
1178
+ is the for is to the for to the
1179
+
1180
+ to be to the a.
1181
+
1182
+ , for the.
1183
+
1184
+
1185
+
1186
+
1187
+
1188
+
1189
+ to.
1190
+ to the of the to the to the.
1191
+ to in the.
1192
+ The for to.
1193
+ ```
1194
+
1195
+ **Metadata**: max_length=100, temperature=0.7, time=0.58s
1196
+
1197
+ ### Prompt 4: "Write a haiku about coding"
1198
+
1199
+ **Response**:
1200
+ ```
1201
+ .
1202
+
1203
+
1204
+
1205
+ with.
1206
+ The, the be to to the
1207
+
1208
+ to the
1209
+
1210
+
1211
+
1212
+
1213
+
1214
+
1215
+
1216
+
1217
+
1218
+
1219
+ to to to the’ and to not.
1220
+ the on their,.
1221
+
1222
+
1223
+
1224
+ to to the is to the I the for the
1225
+
1226
+ for that for.
1227
+
1228
+ to the and
1229
+ to the
1230
+
1231
+
1232
+
1233
+
1234
+
1235
+
1236
+ in to the, to.
1237
+
1238
+
1239
+
1240
+ to with and to
1241
+ ```
1242
+
1243
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
1244
+
1245
+ ### Prompt 5: "What is the capital of France?"
1246
+
1247
+ **Response**:
1248
+ ```
1249
+ The for an the
1250
+
1251
+
1252
+
1253
+
1254
+
1255
+
1256
+
1257
+
1258
+
1259
+
1260
+
1261
+
1262
+
1263
+
1264
+
1265
+ The
1266
+
1267
+
1268
+
1269
+
1270
+
1271
+
1272
+
1273
+
1274
+
1275
+
1276
+
1277
+
1278
+
1279
+
1280
+
1281
+
1282
+
1283
+
1284
+
1285
+
1286
+
1287
+
1288
+
1289
+ The to is-.
1290
+
1291
+
1292
+
1293
+
1294
+
1295
+
1296
+
1297
+
1298
+
1299
+
1300
+
1301
+
1302
+
1303
+
1304
+
1305
+
1306
+ The
1307
+
1308
+
1309
+
1310
+ The is.
1311
+
1312
+
1313
+
1314
+
1315
+
1316
+
1317
+
1318
+
1319
+ The
1320
+ ```
1321
+
1322
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
1323
+
1324
+ ### Prompt 6: "The meaning of life is"
1325
+
1326
+ **Response**:
1327
+ ```
1328
+ a
1329
+ .
1330
+
1331
+
1332
+
1333
+
1334
+
1335
+
1336
+
1337
+
1338
+
1339
+
1340
+
1341
+
1342
+
1343
+
1344
+
1345
+
1346
+
1347
+
1348
+
1349
+
1350
+
1351
+
1352
+
1353
+ The
1354
+
1355
+
1356
+
1357
+
1358
+
1359
+
1360
+
1361
+
1362
+
1363
+
1364
+
1365
+
1366
+
1367
+
1368
+
1369
+
1370
+
1371
+
1372
+
1373
+ to
1374
+
1375
+
1376
+
1377
+
1378
+ to
1379
+
1380
+
1381
+
1382
+
1383
+
1384
+
1385
+ The
1386
+
1387
+
1388
+
1389
+
1390
+
1391
+
1392
+
1393
+
1394
+
1395
+
1396
+
1397
+
1398
+
1399
+
1400
+
1401
+
1402
+
1403
+ The
1404
+ The
1405
+ ```
1406
+
1407
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
1408
+
1409
+ ### Prompt 7: "In the year 2050,"
1410
+
1411
+ **Response**:
1412
+ ```
1413
+ the and the the.
1414
+ to and. to it for the your.
1415
+ to the the
1416
+
1417
+
1418
+
1419
+ the,, the to.
1420
+
1421
+ .
1422
+ the.
1423
+
1424
+
1425
+ , to.
1426
+ .
1427
+
1428
+
1429
+
1430
+
1431
+
1432
+
1433
+
1434
+
1435
+
1436
+ to of the a for the
1437
+ , the.
1438
+ in in the,, the to the the you the to the the.
1439
+ ```
1440
+
1441
+ **Metadata**: max_length=100, temperature=0.7, time=0.53s
1442
+
1443
+ ### Prompt 8: "Python programming is"
1444
+
1445
+ **Response**:
1446
+ ```
1447
+ the’s.
1448
+
1449
+
1450
+
1451
+
1452
+ to
1453
+
1454
+
1455
+ The
1456
+
1457
+
1458
+
1459
+ The.
1460
+
1461
+
1462
+ The
1463
+
1464
+
1465
+
1466
+
1467
+
1468
+
1469
+
1470
+
1471
+
1472
+
1473
+
1474
+
1475
+
1476
+
1477
+
1478
+
1479
+
1480
+
1481
+
1482
+
1483
+
1484
+
1485
+ ,
1486
+
1487
+
1488
+
1489
+
1490
+
1491
+
1492
+
1493
+
1494
+
1495
+
1496
+ The for
1497
+
1498
+
1499
+
1500
+
1501
+
1502
+
1503
+
1504
+
1505
+
1506
+ to,
1507
+ ```
1508
+
1509
+ **Metadata**: max_length=100, temperature=0.7, time=0.63s
1510
+
1511
+ ---
1512
+
1513
+ ## Checkpoint: step_4000
1514
+
1515
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma5M-v1/checkpoints/step_4000`
1516
+
1517
+ **Load Time**: 0.14s
1518
+
1519
+ ### Prompt 1: "Hello, how are you?"
1520
+
1521
+ **Response**:
1522
+ ```
1523
+ The
1524
+
1525
+
1526
+
1527
+
1528
+
1529
+
1530
+
1531
+
1532
+
1533
+
1534
+
1535
+
1536
+
1537
+
1538
+
1539
+
1540
+
1541
+
1542
+
1543
+
1544
+
1545
+
1546
+
1547
+
1548
+
1549
+
1550
+
1551
+
1552
+
1553
+
1554
+
1555
+
1556
+
1557
+
1558
+
1559
+
1560
+
1561
+
1562
+
1563
+
1564
+
1565
+ to
1566
+
1567
+
1568
+ to
1569
+
1570
+
1571
+
1572
+
1573
+
1574
+
1575
+
1576
+
1577
+
1578
+
1579
+
1580
+
1581
+ to
1582
+ The
1583
+
1584
+
1585
+
1586
+
1587
+
1588
+
1589
+
1590
+
1591
+ ,
1592
+ ```
1593
+
1594
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
1595
+
1596
+ ### Prompt 2: "Complete this story: Once upon a time"
1597
+
1598
+ **Response**:
1599
+ ```
1600
+ ე�ом that the the the be the a I in the I the and and from the the the is the to the the a the the a the the the and the the the the the the the be it.
1601
+ , it the are to the have a of the.
1602
+ to you the the a the a of the the the the you., for the to the a you to the the the the the by the
1603
+ it, of the the a
1604
+ ```
1605
+
1606
+ **Metadata**: max_length=100, temperature=0.7, time=0.59s
1607
+
1608
+ ### Prompt 3: "Explain quantum physics in simple terms"
1609
+
1610
+ **Response**:
1611
+ ```
1612
+ the the the the the the the a the with the
1613
+ the in the the the’s the the you to the. the to the the by it the to the the a of the a and a the you’s it a is the.
1614
+ have the the the., to the the a in the the, from the of the a’s the from the in the the and the the a.
1615
+ and a the and the for the to the
1616
+ ```
1617
+
1618
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
1619
+
1620
+ ### Prompt 4: "Write a haiku about coding"
1621
+
1622
+ **Response**:
1623
+ ```
1624
+ .
1625
+
1626
+
1627
+
1628
+ , to the of the.
1629
+
1630
+
1631
+
1632
+
1633
+
1634
+
1635
+
1636
+ to the I to the the, and.
1637
+
1638
+
1639
+
1640
+
1641
+
1642
+
1643
+
1644
+
1645
+
1646
+ The to’s.
1647
+
1648
+
1649
+ is to the.
1650
+
1651
+
1652
+
1653
+
1654
+
1655
+
1656
+ The
1657
+ The.
1658
+
1659
+
1660
+
1661
+
1662
+
1663
+ I to the to in.
1664
+
1665
+
1666
+
1667
+ is with with to be.
1668
+
1669
+
1670
+
1671
+
1672
+ The.
1673
+ ```
1674
+
1675
+ **Metadata**: max_length=100, temperature=0.7, time=0.59s
1676
+
1677
+ ### Prompt 5: "What is the capital of France?"
1678
+
1679
+ **Response**:
1680
+ ```
1681
+ The.
1682
+
1683
+ The
1684
+
1685
+ The
1686
+
1687
+ The
1688
+ to, to that,
1689
+
1690
+
1691
+
1692
+
1693
+
1694
+
1695
+
1696
+
1697
+
1698
+
1699
+
1700
+
1701
+
1702
+
1703
+
1704
+
1705
+
1706
+
1707
+
1708
+
1709
+
1710
+ The,
1711
+ The
1712
+
1713
+
1714
+ The
1715
+
1716
+
1717
+
1718
+
1719
+
1720
+
1721
+
1722
+
1723
+
1724
+
1725
+
1726
+
1727
+
1728
+
1729
+ The
1730
+
1731
+
1732
+
1733
+
1734
+
1735
+
1736
+
1737
+ The
1738
+
1739
+
1740
+
1741
+
1742
+
1743
+
1744
+
1745
+
1746
+
1747
+
1748
+
1749
+
1750
+
1751
+ to
1752
+ ```
1753
+
1754
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
1755
+
1756
+ ### Prompt 6: "The meaning of life is"
1757
+
1758
+ **Response**:
1759
+ ```
1760
+ to to the the.
1761
+
1762
+ to of the a to.
1763
+ the the.
1764
+ .
1765
+ you to that the the- on to a the for the the the the from the.
1766
+ that-.
1767
+
1768
+
1769
+
1770
+
1771
+
1772
+
1773
+ ’s.
1774
+ to the the a.
1775
+
1776
+
1777
+
1778
+
1779
+ to the a in the the it is.
1780
+ I to the.
1781
+ , the and you to you the the I’t.
1782
+
1783
+ .
1784
+ ```
1785
+
1786
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
1787
+
1788
+ ### Prompt 7: "In the year 2050,"
1789
+
1790
+ **Response**:
1791
+ ```
1792
+ , at the your., the the a to have for a a.
1793
+
1794
+
1795
+ in the the. to the the, the the is a to the of the the to the.
1796
+ to the to a to the are, the the a.
1797
+ ’s.
1798
+ The the the the the I to the the in the the to the the.
1799
+ the a is.
1800
+
1801
+ in the to the you.
1802
+ from the to and the your, the
1803
+ ```
1804
+
1805
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
1806
+
1807
+ ### Prompt 8: "Python programming is"
1808
+
1809
+ **Response**:
1810
+ ```
1811
+ a have’s.
1812
+
1813
+
1814
+
1815
+
1816
+
1817
+ to the to.
1818
+ .
1819
+ The.
1820
+
1821
+
1822
+ ,
1823
+ to the be for the
1824
+
1825
+
1826
+
1827
+
1828
+ .
1829
+
1830
+
1831
+
1832
+
1833
+
1834
+ The to the the.
1835
+ to your
1836
+
1837
+
1838
+ .
1839
+
1840
+
1841
+
1842
+ to the on.
1843
+
1844
+
1845
+
1846
+
1847
+
1848
+
1849
+ .
1850
+ to, have in the.
1851
+ to be
1852
+
1853
+
1854
+
1855
+
1856
+
1857
+
1858
+
1859
+ The is and
1860
+
1861
+
1862
+
1863
+
1864
+ ,
1865
+ ```
1866
+
1867
+ **Metadata**: max_length=100, temperature=0.7, time=0.63s
1868
+
1869
+ ---
1870
+
1871
+ ## Checkpoint: step_4500
1872
+
1873
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma5M-v1/checkpoints/step_4500`
1874
+
1875
+ **Load Time**: 0.14s
1876
+
1877
+ ### Prompt 1: "Hello, how are you?"
1878
+
1879
+ **Response**:
1880
+ ```
1881
+ is in the,
1882
+ The that.
1883
+ The the this, the a:
1884
+ ,.
1885
+ -
1886
+ -
1887
+ ,.
1888
+
1889
+
1890
+
1891
+
1892
+
1893
+ ,
1894
+ ,
1895
+
1896
+ .
1897
+
1898
+ The and I.
1899
+ .
1900
+ with the the, for the for a.
1901
+
1902
+ .
1903
+
1904
+
1905
+
1906
+ ,
1907
+ to:
1908
+
1909
+
1910
+
1911
+
1912
+
1913
+ -, to be the the have
1914
+ The.
1915
+ The to I a to of
1916
+ ```
1917
+
1918
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
1919
+
1920
+ ### Prompt 2: "Complete this story: Once upon a time"
1921
+
1922
+ **Response**:
1923
+ ```
1924
+ brance.
1925
+ - and a the last.
1926
+ The-
1927
+ The to it, the.
1928
+
1929
+ -The.
1930
+
1931
+
1932
+
1933
+ The.
1934
+ is a the a a a a I it, the first to the in the one.
1935
+ -
1936
+ is a in the of a as the one.
1937
+ I the they it, you it it to to the are.
1938
+
1939
+
1940
+ The the this to the they the a the the from the of
1941
+ ```
1942
+
1943
+ **Metadata**: max_length=100, temperature=0.7, time=0.59s
1944
+
1945
+ ### Prompt 3: "Explain quantum physics in simple terms"
1946
+
1947
+ **Response**:
1948
+ ```
1949
+ .
1950
+ to be the same.
1951
+ to the first that from the first.
1952
+ The the from the of the first is the a as the the you and the a a the the a the a the to of the the to the the the first of the a the the from the most a and the the they the the and the the the to you can be the the the of the this by the the as the, a a you the your and and
1953
+ ```
1954
+
1955
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
1956
+
1957
+ ### Prompt 4: "Write a haiku about coding"
1958
+
1959
+ **Response**:
1960
+ ```
1961
+ of the a take the a the in the were you a but their are the is a you the a.
1962
+ The’s and the were the the the the’s.
1963
+ , it the I the the and the a with the you it that, they, the the the to the the new and you as the two the the other the a, the make the is to the as a I the a the from the a you of the way of the new
1964
+ ```
1965
+
1966
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
1967
+
1968
+ ### Prompt 5: "What is the capital of France?"
1969
+
1970
+ **Response**:
1971
+ ```
1972
+ ,
1973
+ -,,
1974
+
1975
+ .
1976
+
1977
+
1978
+ The
1979
+
1980
+ -
1981
+ the,
1982
+
1983
+ to.
1984
+ be the the and the
1985
+ The.
1986
+
1987
+
1988
+
1989
+
1990
+ .
1991
+
1992
+
1993
+
1994
+
1995
+
1996
+
1997
+
1998
+
1999
+
2000
+ ,
2001
+ be.
2002
+ The that for.
2003
+
2004
+
2005
+ The and the with the of the,
2006
+ I in the the be’s to be, and-
2007
+
2008
+
2009
+
2010
+ and the
2011
+ I to the,
2012
+ ```
2013
+
2014
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
2015
+
2016
+ ### Prompt 6: "The meaning of life is"
2017
+
2018
+ **Response**:
2019
+ ```
2020
+ a the you have is the the a I the is of the first and it
2021
+ .
2022
+
2023
+ with to the other to the the make the a you of the not the I a the it it, and the the the first the not the a.
2024
+ The it that you in the, the the.
2025
+ , a on the and the a and of the, you it in the are the.
2026
+ to you the a by the as the: the a the are
2027
+ ```
2028
+
2029
+ **Metadata**: max_length=100, temperature=0.7, time=0.62s
2030
+
2031
+ ### Prompt 7: "In the year 2050,"
2032
+
2033
+ **Response**:
2034
+ ```
2035
+ and the a by the the in the a from the the a the are the they of the from the I the that it in the, the of a the you the a it a the the the a as, in the of the, to the I’s the and the you a and. to to to a the the as the your the it it it a the and and to the you of to the they the the and their the other and you, the
2036
+ ```
2037
+
2038
+ **Metadata**: max_length=100, temperature=0.7, time=0.62s
2039
+
2040
+ ### Prompt 8: "Python programming is"
2041
+
2042
+ **Response**:
2043
+ ```
2044
+ a in the, and a in the the first of the the and a as a this.
2045
+ .
2046
+ a and a’s the a that the a this to you a the the the a the it with the the and the a as the the this and the of a it a the that.
2047
+ , is a other.
2048
+ in a are the a I the from the the the by the to the your can the of the the a the in the can to the a
2049
+ ```
2050
+
2051
+ **Metadata**: max_length=100, temperature=0.7, time=0.63s
2052
+
2053
+ ---
2054
+
2055
+ ## Checkpoint: step_5000
2056
+
2057
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma5M-v1/checkpoints/step_5000`
2058
+
2059
+ **Load Time**: 0.14s
2060
+
2061
+ ### Prompt 1: "Hello, how are you?"
2062
+
2063
+ **Response**:
2064
+ ```
2065
+ .
2066
+ ```
2067
+
2068
+ **Metadata**: max_length=100, temperature=0.7, time=0.03s
2069
+
2070
+ ### Prompt 2: "Complete this story: Once upon a time"
2071
+
2072
+ **Response**:
2073
+ ```
2074
+ it is a that the a is to the one and you.
2075
+ The the it is.
2076
+
2077
+ The the of the you the is a he for a that you.
2078
+ to the I the the most.
2079
+
2080
+ The the I.
2081
+ I a year the the.
2082
+
2083
+
2084
+ The the the is to the we the same.
2085
+
2086
+
2087
+ I the same the.
2088
+ The the and the and the most.
2089
+ The the way the is
2090
+ ```
2091
+
2092
+ **Metadata**: max_length=100, temperature=0.7, time=0.59s
2093
+
2094
+ ### Prompt 3: "Explain quantum physics in simple terms"
2095
+
2096
+ **Response**:
2097
+ ```
2098
+ is it and your from the with from the a that I be a and a the most- and the of the is to to you a from the as it is.
2099
+ This and I can be a that of the is the I of the about it.
2100
+ The a the most as a the a a you a on you a.
2101
+ The the a and the the you.
2102
+ ```
2103
+
2104
+ **Metadata**: max_length=100, temperature=0.7, time=0.52s
2105
+
2106
+ ### Prompt 4: "Write a haiku about coding"
2107
+
2108
+ **Response**:
2109
+ ```
2110
+ for a that the last the a it and this a by a ( The they of the of the to to you the of the all of the a of the the you a, with a to the it that the in the a to the,, or to a, the of the you have the a a is and you a other for the with the it and you on the other of the that of the a with the as a in the a the.
2111
+ The
2112
+ ```
2113
+
2114
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
2115
+
2116
+ ### Prompt 5: "What is the capital of France?"
2117
+
2118
+ **Response**:
2119
+ ```
2120
+ I
2121
+ .
2122
+
2123
+
2124
+
2125
+
2126
+
2127
+
2128
+
2129
+
2130
+
2131
+ to:
2132
+ to the time,
2133
+
2134
+
2135
+
2136
+
2137
+
2138
+
2139
+
2140
+
2141
+
2142
+ -
2143
+
2144
+
2145
+
2146
+
2147
+
2148
+ -
2149
+
2150
+
2151
+
2152
+
2153
+
2154
+
2155
+
2156
+
2157
+
2158
+ ,
2159
+ -
2160
+
2161
+
2162
+ to be a the to be of the the the,
2163
+
2164
+ The the is a a
2165
+
2166
+ to a that.
2167
+ ```
2168
+
2169
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
2170
+
2171
+ ### Prompt 6: "The meaning of life is"
2172
+
2173
+ **Response**:
2174
+ ```
2175
+ that in the a the and with the from the most the the by the from the a.
2176
+ The the is as the to the and the will be a of the is is a it.
2177
+ The the as the is a on the, and not a the of the, the, the, the a is the to the that the the with the the to the and the most.
2178
+
2179
+
2180
+
2181
+ The the’s I a new the a that the a is
2182
+ ```
2183
+
2184
+ **Metadata**: max_length=100, temperature=0.7, time=0.62s
2185
+
2186
+ ### Prompt 7: "In the year 2050,"
2187
+
2188
+ **Response**:
2189
+ ```
2190
+ , for.
2191
+ The the the the it, of the all.
2192
+
2193
+
2194
+ It the to be a the to your a the you the to the for a of the the is the the and the with the not to the the with the the with.
2195
+ The the of the is that the, of the,, in the first a the the a.
2196
+ The the a was and a the the one of the in a you a the the a the we
2197
+ ```
2198
+
2199
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
2200
+
2201
+ ### Prompt 8: "Python programming is"
2202
+
2203
+ **Response**:
2204
+ ```
2205
+ as a (s is a you and the with.
2206
+ The have to you be the, to the are the new- as a a it.
2207
+ The the it it to the from the and in the this, and to be a and the the in the not I to the other the a.
2208
+
2209
+ The a the the is have the best and you to the the the.
2210
+
2211
+
2212
+ The the other.
2213
+ ```
2214
+
2215
+ **Metadata**: max_length=100, temperature=0.7, time=0.56s
2216
+
2217
+ ---
2218
+
2219
+ ## Checkpoint: step_5500
2220
+
2221
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma5M-v1/checkpoints/step_5500`
2222
+
2223
+ **Load Time**: 0.14s
2224
+
2225
+ ### Prompt 1: "Hello, how are you?"
2226
+
2227
+ **Response**:
2228
+ ```
2229
+ of the a.
2230
+
2231
+
2232
+ in the.
2233
+ to be an the be a the a this in the of the most a.
2234
+
2235
+ to the the’s was the of the.
2236
+ The a as the the the the the the of the.
2237
+
2238
+ The most of the the your is the.
2239
+
2240
+ The I not your the the one.
2241
+
2242
+ The your this and to the a, they the a the to the the
2243
+ ```
2244
+
2245
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
2246
+
2247
+ ### Prompt 2: "Complete this story: Once upon a time"
2248
+
2249
+ **Response**:
2250
+ ```
2251
+ of the most of a will be the it and the the best.
2252
+ The a it it for the same of the the most that.
2253
+ ```
2254
+
2255
+ **Metadata**: max_length=100, temperature=0.7, time=0.19s
2256
+
2257
+ ### Prompt 3: "Explain quantum physics in simple terms"
2258
+
2259
+ **Response**:
2260
+ ```
2261
+ the from the and the to the the it’s in the are to the you to you it of you your a you your the the as the the the the.
2262
+ The are for the to the you can the the most the the and the the best in the as a it and the way.
2263
+ The the your a the best in the will be the with the as the a the is a the one of the the a a the all a that are
2264
+ ```
2265
+
2266
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
2267
+
2268
+ ### Prompt 4: "Write a haiku about coding"
2269
+
2270
+ **Response**:
2271
+ ```
2272
+ and are, in the is of the’s-, to I in the first of the most, it, the way to the the the, the’s a the most the that a in the the a the the a you, in the the you to be a that the and to the best of the a of a as a in the as the most.
2273
+ The, the we to the.
2274
+
2275
+ The the the from to the in the from the
2276
+ ```
2277
+
2278
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
2279
+
2280
+ ### Prompt 5: "What is the capital of France?"
2281
+
2282
+ **Response**:
2283
+ ```
2284
+ , of the is a of the a’s, or is’s, and a, the in the as a.
2285
+ The all the the I the of you the a to the most a the, but to be a first and of the way.
2286
+ This and.
2287
+ The the,.
2288
+ The you the other in the of the last.
2289
+ The in a a that for the most, the so of a the, a two.
2290
+ ```
2291
+
2292
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
2293
+
2294
+ ### Prompt 6: "The meaning of life is"
2295
+
2296
+ **Response**:
2297
+ ```
2298
+ , the is the from of a or, and to be a the a the of to be one for is a the the the a a as, to the it is a the is that this as the the.
2299
+ The as, and to not to.
2300
+ The a the’s a it and you have that the to the to the.
2301
+ to the you I can be the to the same’s you.
2302
+ The first as a first and the all.
2303
+ ```
2304
+
2305
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
2306
+
2307
+ ### Prompt 7: "In the year 2050,"
2308
+
2309
+ **Response**:
2310
+ ```
2311
+ ,.
2312
+ ,
2313
+
2314
+
2315
+ A
2316
+
2317
+ The to be to be an but that you be a.
2318
+ I you have of the the one of the same.
2319
+ The most for a it.
2320
+ ```
2321
+
2322
+ **Metadata**: max_length=100, temperature=0.7, time=0.29s
2323
+
2324
+ ### Prompt 8: "Python programming is"
2325
+
2326
+ **Response**:
2327
+ ```
2328
+ a the the it to the a the a if.
2329
+ ```
2330
+
2331
+ **Metadata**: max_length=100, temperature=0.7, time=0.08s
2332
+
2333
+ ---
2334
+
2335
+ ## Checkpoint: step_6000
2336
+
2337
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma5M-v1/checkpoints/step_6000`
2338
+
2339
+ **Load Time**: 0.14s
2340
+
2341
+ ### Prompt 1: "Hello, how are you?"
2342
+
2343
+ **Response**:
2344
+ ```
2345
+
2346
+ ```
2347
+
2348
+ **Metadata**: max_length=100, temperature=0.7, time=0.02s
2349
+
2350
+ ### Prompt 2: "Complete this story: Once upon a time"
2351
+
2352
+ **Response**:
2353
+ ```
2354
+ . I be a.
2355
+ The first this is a is a the new.
2356
+ The was a lot of the they have to the and to be a great the the other on the first the from to have the the way and your in the the we the other of the the time to the I do is a very a the of the to be a they have the two is not have a that it to a a the best it.
2357
+ I have the
2358
+ ```
2359
+
2360
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
2361
+
2362
+ ### Prompt 3: "Explain quantum physics in simple terms"
2363
+
2364
+ **Response**:
2365
+ ```
2366
+ )
2367
+ and I will be a your other, in the is the a new, I but a is to be a I be in it to the the.
2368
+ The to not do.
2369
+ The other, to it in the I the most of a lot of the.
2370
+ It are this in the last, the the in the and and a a this and the is a the best a the the best the with you and but that and the the that
2371
+ ```
2372
+
2373
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
2374
+
2375
+ ### Prompt 4: "Write a haiku about coding"
2376
+
2377
+ **Response**:
2378
+ ```
2379
+ , you are it's a little the other in the best in the is a if you to the you to a for the first at the is the first the time, I’s a first that the this a one of the, but I with the the world the most in the a few.
2380
+ The not to the first, with the same for the that that, and we the your was is a and the best of the this.
2381
+ The in the is
2382
+ ```
2383
+
2384
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
2385
+
2386
+ ### Prompt 5: "What is the capital of France?"
2387
+
2388
+ **Response**:
2389
+ ```
2390
+ "
2391
+ ,
2392
+
2393
+ .
2394
+ to a the you are a new and the that you that are to the, the they are to the time with the I not a is not a the this is to the.
2395
+ The not to do you the, and I have the a a to the the the first to the from the this it is to the you.
2396
+ The on the new, you have to the you it the a few and the
2397
+ ```
2398
+
2399
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
2400
+
2401
+ ### Prompt 6: "The meaning of life is"
2402
+
2403
+ **Response**:
2404
+ ```
2405
+ of a't be a was it to the.
2406
+ The and be a first to take a for the other the a the first to be a most of a lot of the a are that the as a I a. I the time and their.
2407
+ I that we a way to the most of the the is to the first to the a a as to get the the that a from a to be the.
2408
+ I to be of the the way to a is of
2409
+ ```
2410
+
2411
+ **Metadata**: max_length=100, temperature=0.7, time=0.62s
2412
+
2413
+ ### Prompt 7: "In the year 2050,"
2414
+
2415
+ **Response**:
2416
+ ```
2417
+ in the a is in the time to the a to the to the a time.
2418
+ I have the for a the this from you with a.
2419
+ The the of a.
2420
+ The a and the first the all the, to the the the the.
2421
+ The the.
2422
+ The not the the the other.
2423
+ The the, the the as a.
2424
+ The is the first the the in the first of the is the other in the you the as a
2425
+ ```
2426
+
2427
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
2428
+
2429
+ ### Prompt 8: "Python programming is"
2430
+
2431
+ **Response**:
2432
+ ```
2433
+ it is to be I that is the way, of the.
2434
+ The new,, you are not their first a you.
2435
+ The you to do.
2436
+ The this is the all, you to the and a they to the.
2437
+ The time and be the to the they a I was and you a good, to be a little the for the the world a the in to the most a very the your is a.
2438
+ I also.
2439
+ The a new that you
2440
+ ```
2441
+
2442
+ **Metadata**: max_length=100, temperature=0.7, time=0.63s
2443
+
2444
+ ---
2445
+
2446
+ ## Checkpoint: step_6500
2447
+
2448
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma5M-v1/checkpoints/step_6500`
2449
+
2450
+ **Load Time**: 0.12s
2451
+
2452
+ ### Prompt 1: "Hello, how are you?"
2453
+
2454
+ **Response**:
2455
+ ```
2456
+ -..... and the is., the the new.
2457
+ As, and all of the last and they have the the first. The.
2458
+ The a few on.
2459
+ The first.
2460
+ The a this is in the other, which’s, but they of the most, it is the first for the day and it was a way to have been the right it for the I do the best in the and I have to the own a
2461
+ ```
2462
+
2463
+ **Metadata**: max_length=100, temperature=0.7, time=0.63s
2464
+
2465
+ ### Prompt 2: "Complete this story: Once upon a time"
2466
+
2467
+ **Response**:
2468
+ ```
2469
+ . It was a I’s a more, the will it was so it.
2470
+ The.
2471
+
2472
+ The most of the other.
2473
+ I have to a the few, and I have have to have to be a “The was the very I’s it.
2474
+ It was a little will be a it and the the way the they’t to a one that the is the are you can be a was.
2475
+ The you to the next
2476
+ ```
2477
+
2478
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
2479
+
2480
+ ### Prompt 3: "Explain quantum physics in simple terms"
2481
+
2482
+ **Response**:
2483
+ ```
2484
+ the of the one of the a are a the first is a the your in the is the.
2485
+
2486
+ The as a in the, the first a the the is a the way, with the best with the best in the the first, and the most of the more.
2487
+ The in the with the first a the a on the this.
2488
+ In the most the first is, and the first was the as an I have a is it is the the
2489
+ ```
2490
+
2491
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
2492
+
2493
+ ### Prompt 4: "Write a haiku about coding"
2494
+
2495
+ **Response**:
2496
+ ```
2497
+ and the other, and with the way in the first, a the your, and to you the same to this, a are in the a a the the to your of the most we are and have the more of the the the one is a in a the two of the. It of a a a the from to be of this is a little of the the is to make the a good of the more and is the a is the same of the time of
2498
+ ```
2499
+
2500
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
2501
+
2502
+ ### Prompt 5: "What is the capital of France?"
2503
+
2504
+ **Response**:
2505
+ ```
2506
+ on the are the a the way to the.
2507
+ The is a more of the the the of the I have a a this is it to the first time to the is a the in the way for the,.
2508
+
2509
+ The a lot of the way.
2510
+ If a and the your in the is a it is of the way.
2511
+ I are the.
2512
+
2513
+ In the the time.
2514
+
2515
+
2516
+ The the a, that in the other on
2517
+ ```
2518
+
2519
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
2520
+
2521
+ ### Prompt 6: "The meaning of life is"
2522
+
2523
+ **Response**:
2524
+ ```
2525
+ you are the a the of the way, the last and and the the best of the year with that the with a time to you’s.
2526
+ In the the way to the most the,.
2527
+ The the last.
2528
+ You of the of the most of the the way that the world of the.
2529
+ The in the your best you and the first.
2530
+ I can they are the is it for the this with you to the way, and the the first
2531
+ ```
2532
+
2533
+ **Metadata**: max_length=100, temperature=0.7, time=0.62s
2534
+
2535
+ ### Prompt 7: "In the year 2050,"
2536
+
2537
+ **Response**:
2538
+ ```
2539
+ and you do to be a two to a the more.
2540
+ I and we of the own is as a that, and the are that are the a a one of your the own on the the two.
2541
+ ```
2542
+
2543
+ **Metadata**: max_length=100, temperature=0.7, time=0.28s
2544
+
2545
+ ### Prompt 8: "Python programming is"
2546
+
2547
+ **Response**:
2548
+ ```
2549
+ , and in a I.
2550
+ The.
2551
+ it is a for the the.
2552
+ The first I have a good, the last.
2553
+
2554
+ The other.
2555
+ The a few, and all this is a, is the other, the the most of a a of a as it for the your best in a very to to a year.
2556
+ The first in the most it on the other of the same to get to be a.
2557
+ The in the is the first
2558
+ ```
2559
+
2560
+ **Metadata**: max_length=100, temperature=0.7, time=0.62s
2561
+
2562
+ ---
2563
+
2564
+ ## Checkpoint: step_7000
2565
+
2566
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma5M-v1/checkpoints/step_7000`
2567
+
2568
+ **Load Time**: 0.13s
2569
+
2570
+ ### Prompt 1: "Hello, how are you?"
2571
+
2572
+ **Response**:
2573
+ ```
2574
+ .
2575
+ I’s in the other and your best that. The year is so it.
2576
+ It are the best to the most of a very the first time to be a lot of the last the other and to the first is that the best on the first will be for the time. I have to the more of the most a.
2577
+ The a good in the time and but’t have a lot of the last the first for the first and the first
2578
+ ```
2579
+
2580
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
2581
+
2582
+ ### Prompt 2: "Complete this story: Once upon a time"
2583
+
2584
+ **Response**:
2585
+ ```
2586
+ . I think I have, there is one the year on the other and a I could be a, I can be the other to the one of the best.
2587
+ You are in this. I’s a lot of the world in the two and it is.
2588
+ The new, and the new is on a few.
2589
+ I the way to do I have to do not a good to your.
2590
+ The more.
2591
+ This is in the best
2592
+ ```
2593
+
2594
+ **Metadata**: max_length=100, temperature=0.7, time=0.59s
2595
+
2596
+ ### Prompt 3: "Explain quantum physics in simple terms"
2597
+
2598
+ **Response**:
2599
+ ```
2600
+ /_____.}
2601
+ the the a the is a lot of the way to the the same. to you will be the for the.
2602
+ I like I you have a the first to this and the year the other and they are a the last is to make it.
2603
+
2604
+ The’t be it is a your a a most of the best of the best of the next’t have a, which the first the one in a
2605
+ ```
2606
+
2607
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
2608
+
2609
+ ### Prompt 4: "Write a haiku about coding"
2610
+
2611
+ **Response**:
2612
+ ```
2613
+ , but is a a, or to a very the way to the a the more of.
2614
+ As it is the same, and in the most this and a lot of the first with the first, and the one of the world. I to the way to the.
2615
+ I have to the top.
2616
+ I have been a it was a very the way is the in this.
2617
+ I have a good.
2618
+ I not have the first.
2619
+ The the
2620
+ ```
2621
+
2622
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
2623
+
2624
+ ### Prompt 5: "What is the capital of France?"
2625
+
2626
+ **Response**:
2627
+ ```
2628
+ ...
2629
+ .
2630
+ -
2631
+ .
2632
+
2633
+ .
2634
+ 2-
2635
+
2636
+ ,
2637
+ ()
2638
+
2639
+
2640
+
2641
+
2642
+
2643
+
2644
+
2645
+
2646
+
2647
+
2648
+
2649
+ .
2650
+
2651
+ not that the the last.
2652
+
2653
+
2654
+
2655
+ to be a more.
2656
+
2657
+
2658
+
2659
+
2660
+
2661
+
2662
+ A that I’s in the I’s.
2663
+ I’s.
2664
+ to you the a lot.
2665
+ ```
2666
+
2667
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
2668
+
2669
+ ### Prompt 6: "The meaning of life is"
2670
+
2671
+ **Response**:
2672
+ ```
2673
+ to be on the few of the time and the world, but is to be have to the the.
2674
+ I have to have been a great.
2675
+ If you to be a new is not have a you can be a first, you need to the the top of the same as a is the, you to the new, you are a it.
2676
+ The best in the best the best the new the way to do the next.
2677
+ The are that are the world
2678
+ ```
2679
+
2680
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
2681
+
2682
+ ### Prompt 7: "In the year 2050,"
2683
+
2684
+ **Response**:
2685
+ ```
2686
+ , and I’s with you can they’s the first and a,, you that the this in the best.
2687
+ This was the most of the.
2688
+ The first.
2689
+ You a very a new.
2690
+ If you can be a new, and you the time. I’s the last the first time the I have a bit of the own,.
2691
+
2692
+ The, you you be the a I to be a as I’s in the
2693
+ ```
2694
+
2695
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
2696
+
2697
+ ### Prompt 8: "Python programming is"
2698
+
2699
+ **Response**:
2700
+ ```
2701
+ , and not. I don’s a is a lot of the time and so I have a most.
2702
+ In the most of the way in the best or I have you to be you have been more.
2703
+ I think it with the most a a last, you. I had to a it that it.
2704
+ This a good I be a lot of the the other.
2705
+ I to the first in a way to you can be a year.
2706
+ ```
2707
+
2708
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
2709
+
2710
+ ---
2711
+
2712
+ ## Checkpoint: step_7500
2713
+
2714
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma5M-v1/checkpoints/step_7500`
2715
+
2716
+ **Load Time**: 0.14s
2717
+
2718
+ ### Prompt 1: "Hello, how are you?"
2719
+
2720
+ **Response**:
2721
+ ```
2722
+ a.
2723
+ ```
2724
+
2725
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
2726
+
2727
+ ### Prompt 2: "Complete this story: Once upon a time"
2728
+
2729
+ **Response**:
2730
+ ```
2731
+ }
2732
+
2733
+
2734
+
2735
+
2736
+
2737
+
2738
+
2739
+
2740
+ is I would
2741
+
2742
+
2743
+
2744
+
2745
+
2746
+
2747
+
2748
+
2749
+
2750
+
2751
+
2752
+
2753
+
2754
+
2755
+
2756
+
2757
+
2758
+
2759
+ I not to be it is to be you to be all to be a good I had to a is to do it to be.
2760
+ I think.
2761
+ “ to that it is that’t I’s
2762
+ ```
2763
+
2764
+ **Metadata**: max_length=100, temperature=0.7, time=0.59s
2765
+
2766
+ ### Prompt 3: "Explain quantum physics in simple terms"
2767
+
2768
+ **Response**:
2769
+ ```
2770
+ the two to get the new and the best by the most of the a few, of the two and the case of the same, the same to the world of the more of the first the best of the same more,, the, the one of the of the the way in the case to the a more of the time, is a, and the same about the other the first to the way to the your life, the same for the one of the
2771
+ ```
2772
+
2773
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
2774
+
2775
+ ### Prompt 4: "Write a haiku about coding"
2776
+
2777
+ **Response**:
2778
+ ```
2779
+ , but the company, you’s not the company to a, I am and the time to the own, you have been to a few in a few. I.
2780
+ The way to be it, it’s a very the a very the is the of a.
2781
+ In the same. I had a other. The day, I have to know, the other on.
2782
+ The other.
2783
+ The second, I have a good for this, that
2784
+ ```
2785
+
2786
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
2787
+
2788
+ ### Prompt 5: "What is the capital of France?"
2789
+
2790
+ **Response**:
2791
+ ```
2792
+ --"-_, and the the best, a the first in the two, the of the time, the year of the the way. The more.
2793
+ 2.
2794
+ I to the same to the end of the the year for the is a the.
2795
+
2796
+ The good to the own a the day.
2797
+ The own the first a few of the last of the is a.
2798
+ ```
2799
+
2800
+ **Metadata**: max_length=100, temperature=0.7, time=0.53s
2801
+
2802
+ ### Prompt 6: "The meaning of life is"
2803
+
2804
+ **Response**:
2805
+ ```
2806
+ to be not the is a was a the a it is the day, the of the case you to the case a new with the new,.
2807
+ In the your case, the own the new of the most of the way.
2808
+ The his are the first time to be a great the new.
2809
+ It’s that is one of the and the world.
2810
+ ```
2811
+
2812
+ **Metadata**: max_length=100, temperature=0.7, time=0.49s
2813
+
2814
+ ### Prompt 7: "In the year 2050,"
2815
+
2816
+ **Response**:
2817
+ ```
2818
+ and not, we’t have been that it is a the time and the way to be the your of the best to have to the the world. We can do with a that this to be a this.
2819
+ The the first with the best of the a it to this is not to help you have been a lot of the other of the the the best.
2820
+ The the new and it are on the two as a little of the time.
2821
+ The most
2822
+ ```
2823
+
2824
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
2825
+
2826
+ ### Prompt 8: "Python programming is"
2827
+
2828
+ **Response**:
2829
+ ```
2830
+ the other the other the a first for the a that that the first more.
2831
+ ```
2832
+
2833
+ **Metadata**: max_length=100, temperature=0.7, time=0.14s
2834
+
2835
+ ---
2836
+
2837
+ ## Checkpoint: step_8000
2838
+
2839
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma5M-v1/checkpoints/step_8000`
2840
+
2841
+ **Load Time**: 0.14s
2842
+
2843
+ ### Prompt 1: "Hello, how are you?"
2844
+
2845
+ **Response**:
2846
+ ```
2847
+ -}
2848
+
2849
+
2850
+ --
2851
+
2852
+ if and the and I.
2853
+
2854
+ --s as a of the one,, I think it’s not a that I can’s that I’s it’s a I’s a that a year. I’t do to be at the day, in of with, a few and to a the.
2855
+ The first the world of and they’s not to be of the, the
2856
+ ```
2857
+
2858
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
2859
+
2860
+ ### Prompt 2: "Complete this story: Once upon a time"
2861
+
2862
+ **Response**:
2863
+ ```
2864
+ you are that I would’t not also to a it is you will have to have to the are a I want to find a lot a lot of the way.
2865
+ The best and it’s a good for a second for your will be also is in the and a big in a great, I've to do.
2866
+ The case the people. I would you can I don't I could be not the new of your most that it and I
2867
+ ```
2868
+
2869
+ **Metadata**: max_length=100, temperature=0.7, time=0.59s
2870
+
2871
+ ### Prompt 3: "Explain quantum physics in simple terms"
2872
+
2873
+ **Response**:
2874
+ ```
2875
+ a new to make a that I have a it was like, or have to it was on the most a few the same the other.
2876
+ The and it has a the one.
2877
+ I’s I. The life, I’t need to the a great is a good. I think it can be for this.
2878
+ If you have a very not the first.
2879
+ The best.
2880
+ ```
2881
+
2882
+ **Metadata**: max_length=100, temperature=0.7, time=0.53s
2883
+
2884
+ ### Prompt 4: "Write a haiku about coding"
2885
+
2886
+ **Response**:
2887
+ ```
2888
+ .
2889
+ A
2890
+ ```
2891
+
2892
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
2893
+
2894
+ ### Prompt 5: "What is the capital of France?"
2895
+
2896
+ **Response**:
2897
+ ```
2898
+ _._((_)__. =
2899
+ _-_.}
2900
+ }
2901
+ ___m__ _ __2(_3).t-_1,
2902
+ }
2903
+
2904
+
2905
+ _2.__);
2906
+ __1__1._m_m_(}
2907
+ _(4__(m__}
2908
+ ___m_
2909
+ ```
2910
+
2911
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
2912
+
2913
+ ### Prompt 6: "The meaning of life is"
2914
+
2915
+ **Response**:
2916
+ ```
2917
+ in the first, with the is about the last.
2918
+ I don’t be a other.
2919
+ As that that is that it to be the, I will be that it in the “
2920
+ ```
2921
+
2922
+ **Metadata**: max_length=100, temperature=0.7, time=0.26s
2923
+
2924
+ ### Prompt 7: "In the year 2050,"
2925
+
2926
+ **Response**:
2927
+ ```
2928
+ , well as the very the best of the, a.
2929
+ This a of the way in the best of the other.
2930
+ The a a few to the year, the first of the best of the time. I.
2931
+ It is a big as the number of the, which is.
2932
+ The, you can be the time.
2933
+ ```
2934
+
2935
+ **Metadata**: max_length=100, temperature=0.7, time=0.46s
2936
+
2937
+ ### Prompt 8: "Python programming is"
2938
+
2939
+ **Response**:
2940
+ ```
2941
+ the end and the first the best of the the the most of the the in the your, the same for the first, the new from the most a the same, the first more than the most that the last.
2942
+ The in the other for you can be a great was the a of a the way of the first the way of the other of the the time.
2943
+ I think you a time.
2944
+
2945
+ This is the time for the last.
2946
+ The other the first
2947
+ ```
2948
+
2949
+ **Metadata**: max_length=100, temperature=0.7, time=0.63s
2950
+
2951
+ ---
2952
+
2953
+ ## Checkpoint: step_8500
2954
+
2955
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma5M-v1/checkpoints/step_8500`
2956
+
2957
+ **Load Time**: 0.14s
2958
+
2959
+ ### Prompt 1: "Hello, how are you?"
2960
+
2961
+ **Response**:
2962
+ ```
2963
+ ..
2964
+ - ()
2965
+
2966
+
2967
+
2968
+
2969
+ -
2970
+ ```
2971
+
2972
+ **Metadata**: max_length=100, temperature=0.7, time=0.11s
2973
+
2974
+ ### Prompt 2: "Complete this story: Once upon a time"
2975
+
2976
+ **Response**:
2977
+ ```
2978
+ . I.
2979
+
2980
+ I’s I’re like the company’t I was in that it’s not like you can have to the most what I. I have a new and a lot of a. I had.
2981
+ The is a. I can I think, I was the other for the first.
2982
+ The "It was a bit.
2983
+ If it to keep a more than it’s it is the world, I was it
2984
+ ```
2985
+
2986
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
2987
+
2988
+ ### Prompt 3: "Explain quantum physics in simple terms"
2989
+
2990
+ **Response**:
2991
+ ```
2992
+ -------s-------------------
2993
+ ---1.
2994
+
2995
+ ---------,
2996
+ ---------1.
2997
+ ----------------------1,
2998
+ -------
2999
+ --
3000
+ ```
3001
+
3002
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
3003
+
3004
+ ### Prompt 4: "Write a haiku about coding"
3005
+
3006
+ **Response**:
3007
+ ```
3008
+ .
3009
+
3010
+
3011
+
3012
+
3013
+
3014
+
3015
+
3016
+
3017
+
3018
+
3019
+
3020
+
3021
+ The is also will the first
3022
+
3023
+
3024
+ I are also as I would had to a bit of this.
3025
+ If it is to know I was the other.
3026
+
3027
+ So, I am not that it's
3028
+ I like to be the best to I have a few of the the way, they can that, I’s.
3029
+ The day, that we’s of the world
3030
+ ```
3031
+
3032
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
3033
+
3034
+ ### Prompt 5: "What is the capital of France?"
3035
+
3036
+ **Response**:
3037
+ ```
3038
+ (1-d = "(s.p.
3039
+ _2(1
3040
+ }
3041
+ if_2()
3042
+ (_m-____a_}
3043
+ }
3044
+
3045
+ return " //
3046
+ if
3047
+ }
3048
+ is a new (t_2
3049
+
3050
+ }
3051
+ }
3052
+ < =
3053
+ }
3054
+
3055
+ (4
3056
+ }
3057
+ }
3058
+ ```
3059
+
3060
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
3061
+
3062
+ ### Prompt 6: "The meaning of life is"
3063
+
3064
+ **Response**:
3065
+ ```
3066
+ not in the the same to the time.
3067
+ The more of the same and the two of the other of the case.
3068
+ The a that the first, the other the first time.
3069
+ The more about the time on the best as a bit to the second is the first on the new.
3070
+ I was the following the way for the time and the next to a new for the game.
3071
+ ```
3072
+
3073
+ **Metadata**: max_length=100, temperature=0.7, time=0.54s
3074
+
3075
+ ### Prompt 7: "In the year 2050,"
3076
+
3077
+ **Response**:
3078
+ ```
3079
+ ,,,,,,,,,,,,,,,,,,,, and,, and a,,,,,,, and.
3080
+
3081
+ I,,,,,,, and,,,,,, and, and,,,, and,,,,,,,,,,,,,,, and the in the new,.,,,,,,,,,,,,,
3082
+ ```
3083
+
3084
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
3085
+
3086
+ ### Prompt 8: "Python programming is"
3087
+
3088
+ **Response**:
3089
+ ```
3090
+ in the case of the new of the team.
3091
+ We have to be to the day of the way in the right.
3092
+ ```
3093
+
3094
+ **Metadata**: max_length=100, temperature=0.7, time=0.18s
3095
+
3096
+ ---
3097
+
3098
+ ## Checkpoint: step_9000
3099
+
3100
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma5M-v1/checkpoints/step_9000`
3101
+
3102
+ **Load Time**: 0.15s
3103
+
3104
+ ### Prompt 1: "Hello, how are you?"
3105
+
3106
+ **Response**:
3107
+ ```
3108
+ \_1_ =_(3
3109
+ }
3110
+
3111
+ }
3112
+ ((2 =,
3113
+ return
3114
+ _s_-
3115
+ }
3116
+
3117
+
3118
+
3119
+ }
3120
+
3121
+
3122
+ _2;
3123
+ -
3124
+ -
3125
+ _1
3126
+
3127
+
3128
+
3129
+
3130
+ <
3131
+ (2:
3132
+ (_<
3133
+
3134
+
3135
+
3136
+ "
3137
+
3138
+ _
3139
+ (2
3140
+
3141
+ return
3142
+ ```
3143
+
3144
+ **Metadata**: max_length=100, temperature=0.7, time=0.72s
3145
+
3146
+ ### Prompt 2: "Complete this story: Once upon a time"
3147
+
3148
+ **Response**:
3149
+ ```
3150
+ the and the best, the “The other time and the way.
3151
+ “The one of the best a year.
3152
+ In a little the world of the time to the most the other time to the same. I was about it.
3153
+ I have to the top of the right, you are some of the time and there are also the second and the world of the a great and the a the people.
3154
+ It is the “I.
3155
+ In
3156
+ ```
3157
+
3158
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
3159
+
3160
+ ### Prompt 3: "Explain quantum physics in simple terms"
3161
+
3162
+ **Response**:
3163
+ ```
3164
+ to get the world.
3165
+ I don’s are now.
3166
+ But they are a that and this is to be able to see, the next.
3167
+ The a great.
3168
+ If you are you.
3169
+ I’s, they do. I could be one is.
3170
+ The other with you to be a couple of it is the other of the people’s.
3171
+ The way, but it would do, you have your business.
3172
+ The same
3173
+ ```
3174
+
3175
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
3176
+
3177
+ ### Prompt 4: "Write a haiku about coding"
3178
+
3179
+ **Response**:
3180
+ ```
3181
+ 1:
3182
+
3183
+
3184
+
3185
+
3186
+
3187
+
3188
+
3189
+
3190
+
3191
+
3192
+
3193
+
3194
+
3195
+
3196
+
3197
+
3198
+
3199
+ -
3200
+ ```
3201
+
3202
+ **Metadata**: max_length=100, temperature=0.7, time=0.18s
3203
+
3204
+ ### Prompt 5: "What is the capital of France?"
3205
+
3206
+ **Response**:
3207
+ ```
3208
+ (,.
3209
+
3210
+
3211
+ -in
3212
+ The new.
3213
+ -to, and a good that we have the last from the one of the last, that I’s is a time and a new. I would be a good as a new, I do, which is a few of that it.
3214
+ The two, and I’s for the other people.
3215
+ This is a few, the, but, you are about the first as a
3216
+ ```
3217
+
3218
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
3219
+
3220
+ ### Prompt 6: "The meaning of life is"
3221
+
3222
+ **Response**:
3223
+ ```
3224
+ a the other.
3225
+
3226
+
3227
+
3228
+
3229
+
3230
+
3231
+
3232
+ I it is not a new of the other time to a that the next a lot of the two of the world and the most of the same for the a long with a great-in to the time.
3233
+ The last of the same.
3234
+ What is the world, the best of the next time and their company’s and the first.
3235
+ The game.
3236
+
3237
+ -W.
3238
+ The first
3239
+ ```
3240
+
3241
+ **Metadata**: max_length=100, temperature=0.7, time=0.62s
3242
+
3243
+ ### Prompt 7: "In the year 2050,"
3244
+
3245
+ **Response**:
3246
+ ```
3247
+ ,,, and, I, which I have to be a more, but they’t, and that, and a great. I could make. I’s in in, I do, I want to the last.
3248
+ If you can’t get an so I would be that you’s a first. I’s, I am the first, I can’s. I was in, I don't have a good. I’s.
3249
+ ```
3250
+
3251
+ **Metadata**: max_length=100, temperature=0.7, time=0.62s
3252
+
3253
+ ### Prompt 8: "Python programming is"
3254
+
3255
+ **Response**:
3256
+ ```
3257
+ a way for the first. The work to the first the people. I could the day and the two a other is the a that.
3258
+ I’s.
3259
+ It is to be a a new with the time to you to go to the world to take the first more than your way.
3260
+ The other.
3261
+ It's you’t want to a week and you.
3262
+ I can be a good that.
3263
+ ```
3264
+
3265
+ **Metadata**: max_length=100, temperature=0.7, time=0.57s
3266
+
3267
+ ---
3268
+
3269
+ ## Checkpoint: step_9500
3270
+
3271
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma5M-v1/checkpoints/step_9500`
3272
+
3273
+ **Load Time**: 0.14s
3274
+
3275
+ ### Prompt 1: "Hello, how are you?"
3276
+
3277
+ **Response**:
3278
+ ```
3279
+ .
3280
+ }
3281
+
3282
+
3283
+
3284
+
3285
+
3286
+
3287
+ "
3288
+
3289
+
3290
+ "
3291
+
3292
+
3293
+
3294
+
3295
+ if
3296
+
3297
+ <
3298
+
3299
+ }
3300
+
3301
+
3302
+
3303
+
3304
+ \
3305
+ }
3306
+
3307
+
3308
+ <
3309
+
3310
+ }
3311
+
3312
+
3313
+
3314
+ 2
3315
+
3316
+
3317
+
3318
+
3319
+
3320
+
3321
+
3322
+
3323
+ }
3324
+ ```
3325
+
3326
+ **Metadata**: max_length=100, temperature=0.7, time=0.69s
3327
+
3328
+ ### Prompt 2: "Complete this story: Once upon a time"
3329
+
3330
+ **Response**:
3331
+ ```
3332
+ .
3333
+ }
3334
+ }
3335
+ The.
3336
+ But I’m I was you’t. I’t that I’s I don't what I can’s. I’t. I’t I’t know I’t want. I’t I was it. I’s all I'm I’s’s I’t you and it and I. I don’s not to I I’t. I
3337
+ ```
3338
+
3339
+ **Metadata**: max_length=100, temperature=0.7, time=0.59s
3340
+
3341
+ ### Prompt 3: "Explain quantum physics in simple terms"
3342
+
3343
+ **Response**:
3344
+ ```
3345
+ ---------------------------------------------------------------------------------------------
3346
+ ```
3347
+
3348
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
3349
+
3350
+ ### Prompt 4: "Write a haiku about coding"
3351
+
3352
+ **Response**:
3353
+ ```
3354
+ .
3355
+
3356
+
3357
+
3358
+
3359
+
3360
+ "
3361
+
3362
+
3363
+
3364
+
3365
+
3366
+
3367
+
3368
+ -
3369
+
3370
+
3371
+
3372
+
3373
+ -
3374
+
3375
+
3376
+
3377
+
3378
+
3379
+
3380
+
3381
+
3382
+ -
3383
+
3384
+ -
3385
+ -
3386
+
3387
+
3388
+
3389
+
3390
+
3391
+
3392
+
3393
+ -
3394
+
3395
+
3396
+ -
3397
+
3398
+
3399
+ -
3400
+
3401
+ -
3402
+
3403
+
3404
+
3405
+
3406
+ -
3407
+
3408
+
3409
+
3410
+ -
3411
+ -
3412
+
3413
+ -
3414
+
3415
+
3416
+
3417
+ -
3418
+
3419
+
3420
+ -
3421
+ -
3422
+ ---
3423
+ ```
3424
+
3425
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
3426
+
3427
+ ### Prompt 5: "What is the capital of France?"
3428
+
3429
+ **Response**:
3430
+ ```
3431
+ -S..
3432
+ -
3433
+ -.
3434
+ -S.
3435
+ ----
3436
+ --1,
3437
+ --
3438
+ ------2.
3439
+ --
3440
+ -
3441
+ ----
3442
+ -1,
3443
+ ----s,
3444
+ --
3445
+ --
3446
+ -
3447
+ --
3448
+ -1--------2.
3449
+ -2,
3450
+ --
3451
+ -
3452
+ -
3453
+ -
3454
+ ```
3455
+
3456
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
3457
+
3458
+ ### Prompt 6: "The meaning of life is"
3459
+
3460
+ **Response**:
3461
+ ```
3462
+ a only as the most more than the same to the new, and your business.
3463
+ A one of the time the world in the time of the number of the first-m.
3464
+ The life in the new years of the the same as the same, the other time to the most of the day.
3465
+ This is a good with a good in the first that you are so it is,, and the game.
3466
+ If you’s.
3467
+ What.
3468
+ ```
3469
+
3470
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
3471
+
3472
+ ### Prompt 7: "In the year 2050,"
3473
+
3474
+ **Response**:
3475
+ ```
3476
+ ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
3477
+ ```
3478
+
3479
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
3480
+
3481
+ ### Prompt 8: "Python programming is"
3482
+
3483
+ **Response**:
3484
+ ```
3485
+ a of the work. The same time with the most of the first.
3486
+ ```
3487
+
3488
+ **Metadata**: max_length=100, temperature=0.7, time=0.10s
3489
+
3490
+ ---
3491
+
3492
+ ## Checkpoint: step_10000
3493
+
3494
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma5M-v1/checkpoints/step_10000`
3495
+
3496
+ **Load Time**: 0.14s
3497
+
3498
+ ### Prompt 1: "Hello, how are you?"
3499
+
3500
+ **Response**:
3501
+ ```
3502
+ I’m not a lot.
3503
+ It is more. I am I am you would like I’re you’t think it’s a good is I had a more about and I’t do that I’t the day. I’ve really going to use the same as that you.
3504
+ But I'm a new of a new. I’t do, I have a bit of your best. I’t make it. I
3505
+ ```
3506
+
3507
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
3508
+
3509
+ ### Prompt 2: "Complete this story: Once upon a time"
3510
+
3511
+ **Response**:
3512
+ ```
3513
+ to take the past that the week of the “The time, the year of the world of the state in the first the most of the year of the main and the team in the first other.
3514
+ You is the a better, it's not the other.
3515
+ The is a few to the following the following the same other of the end of the new time and the "I had a new.
3516
+ The, the first of the “The first time
3517
+ ```
3518
+
3519
+ **Metadata**: max_length=100, temperature=0.7, time=0.59s
3520
+
3521
+ ### Prompt 3: "Explain quantum physics in simple terms"
3522
+
3523
+ **Response**:
3524
+ ```
3525
+ of the year of the next thing in the state of the first of the year of the first the of the world-based the first of the first the most of the most of the way to the way of the the other the time, for the right of the other years of the same as the one of the first the current. The the other of the game. The a couple of the and the time to the most of the two of the first new,
3526
+ ```
3527
+
3528
+ **Metadata**: max_length=100, temperature=0.7, time=0.59s
3529
+
3530
+ ### Prompt 4: "Write a haiku about coding"
3531
+
3532
+ **Response**:
3533
+ ```
3534
+ % from the the whole.
3535
+ ```
3536
+
3537
+ **Metadata**: max_length=100, temperature=0.7, time=0.05s
3538
+
3539
+ ### Prompt 5: "What is the capital of France?"
3540
+
3541
+ **Response**:
3542
+ ```
3543
+ . 2. } .
3544
+ {
3545
+
3546
+ }
3547
+ }
3548
+ if.
3549
+ }
3550
+ }
3551
+ }
3552
+ {
3553
+ }
3554
+ <
3555
+ }
3556
+ "
3557
+ }
3558
+ }
3559
+ }
3560
+
3561
+ }
3562
+ return "
3563
+ }
3564
+ }
3565
+ }
3566
+ {
3567
+ }
3568
+ if ({
3569
+ }
3570
+ }
3571
+ }
3572
+ ```
3573
+
3574
+ **Metadata**: max_length=100, temperature=0.7, time=0.59s
3575
+
3576
+ ### Prompt 6: "The meaning of life is"
3577
+
3578
+ **Response**:
3579
+ ```
3580
+ a more.
3581
+ I will also be a the same time, I’re much more.
3582
+ The best.
3583
+ The most more.
3584
+ The last more.
3585
+ The first.
3586
+ The world, it is the case, that I can have a lot of the world for the best for the most of the best.
3587
+ The one is the second.
3588
+ The new.
3589
+ We should be the first.
3590
+ There is a lot of the new.
3591
+ I are
3592
+ ```
3593
+
3594
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
3595
+
3596
+ ### Prompt 7: "In the year 2050,"
3597
+
3598
+ **Response**:
3599
+ ```
3600
+ ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
3601
+ ```
3602
+
3603
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
3604
+
3605
+ ### Prompt 8: "Python programming is"
3606
+
3607
+ **Response**:
3608
+ ```
3609
+ a bit the day of the people.
3610
+ This is the same.
3611
+ The other is the last is the next are the way to the year in the time in the same.
3612
+ The new.
3613
+ I.
3614
+ The work on the.
3615
+ The end of the new from the end to the time.
3616
+ The case, we do it's in the second.
3617
+ I get to the right.
3618
+ This is a new is the one of the company, that the last,
3619
+ ```
3620
+
3621
+ **Metadata**: max_length=100, temperature=0.7, time=0.62s
3622
+
3623
+ ---
3624
+
3625
+ ## Checkpoint: step_10500
3626
+
3627
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma5M-v1/checkpoints/step_10500`
3628
+
3629
+ **Load Time**: 0.14s
3630
+
3631
+ ### Prompt 1: "Hello, how are you?"
3632
+
3633
+ **Response**:
3634
+ ```
3635
+ .
3636
+ "
3637
+ "
3638
+
3639
+
3640
+
3641
+
3642
+
3643
+
3644
+
3645
+
3646
+
3647
+ }
3648
+
3649
+
3650
+
3651
+
3652
+ }
3653
+
3654
+
3655
+
3656
+
3657
+ <
3658
+
3659
+ <
3660
+ "
3661
+
3662
+
3663
+ }
3664
+
3665
+ "
3666
+
3667
+ <
3668
+
3669
+
3670
+
3671
+ }
3672
+ }
3673
+
3674
+
3675
+ }
3676
+ {
3677
+
3678
+ }
3679
+ {
3680
+ }
3681
+ "
3682
+ }
3683
+ ```
3684
+
3685
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
3686
+
3687
+ ### Prompt 2: "Complete this story: Once upon a time"
3688
+
3689
+ **Response**:
3690
+ ```
3691
+ .
3692
+ _get___ =_(_2_3)
3693
+ _(t_2_//}
3694
+ __1;
3695
+ }
3696
+ __2.4_2_v___p_2_t___3___4(t___a___t_t__1,
3697
+ _(_0 =_t_t_
3698
+ ```
3699
+
3700
+ **Metadata**: max_length=100, temperature=0.7, time=0.59s
3701
+
3702
+ ### Prompt 3: "Explain quantum physics in simple terms"
3703
+
3704
+ **Response**:
3705
+ ```
3706
+ ---------------------------------------------------------------------------------------------
3707
+ ```
3708
+
3709
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
3710
+
3711
+ ### Prompt 4: "Write a haiku about coding"
3712
+
3713
+ **Response**:
3714
+ ```
3715
+ , and that is in the world.
3716
+
3717
+ }
3718
+ if
3719
+ if,
3720
+ }
3721
+ }
3722
+
3723
+
3724
+ {
3725
+ {
3726
+ public =
3727
+ {
3728
+ "
3729
+
3730
+ }
3731
+ }
3732
+ {
3733
+ return ${
3734
+ }
3735
+ }
3736
+ }
3737
+ }
3738
+ }
3739
+
3740
+ }
3741
+ "
3742
+ }
3743
+ }
3744
+ }
3745
+
3746
+ }
3747
+ ```
3748
+
3749
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
3750
+
3751
+ ### Prompt 5: "What is the capital of France?"
3752
+
3753
+ **Response**:
3754
+ ```
3755
+ .. .2.3.1.
3756
+ -B.1.1.
3757
+ -1.
3758
+ -B.
3759
+ -p.
3760
+ -7.
3761
+ -
3762
+ -
3763
+ -S.
3764
+ -, I’s.
3765
+ -B. I.
3766
+ -
3767
+ -
3768
+ I.
3769
+ -1.
3770
+
3771
+ -
3772
+
3773
+
3774
+ -
3775
+ --2.
3776
+ -
3777
+ -1.
3778
+ -8.
3779
+ -.
3780
+ -
3781
+ ```
3782
+
3783
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
3784
+
3785
+ ### Prompt 6: "The meaning of life is"
3786
+
3787
+ **Response**:
3788
+ ```
3789
+ , but the last to the of the next.
3790
+ " is of the new to the the way of the most of the other of the new,.
3791
+ ```
3792
+
3793
+ **Metadata**: max_length=100, temperature=0.7, time=0.29s
3794
+
3795
+ ### Prompt 7: "In the year 2050,"
3796
+
3797
+ **Response**:
3798
+ ```
3799
+ ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, I,,,,, I’t, and the right,, he had a few,
3800
+ ```
3801
+
3802
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
3803
+
3804
+ ### Prompt 8: "Python programming is"
3805
+
3806
+ **Response**:
3807
+ ```
3808
+ more.
3809
+ -
3810
+
3811
+
3812
+
3813
+
3814
+
3815
+
3816
+
3817
+
3818
+ -
3819
+
3820
+
3821
+
3822
+
3823
+
3824
+
3825
+
3826
+
3827
+
3828
+
3829
+ #
3830
+
3831
+
3832
+ if.
3833
+
3834
+ return
3835
+
3836
+
3837
+
3838
+ }
3839
+
3840
+ }
3841
+ #}
3842
+
3843
+
3844
+
3845
+ <
3846
+
3847
+
3848
+ }
3849
+ <
3850
+ //
3851
+ }
3852
+ }
3853
+ if
3854
+ ```
3855
+
3856
+ **Metadata**: max_length=100, temperature=0.7, time=0.63s
3857
+
3858
+ ---
3859
+
3860
+ ## Checkpoint: step_11000
3861
+
3862
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma5M-v1/checkpoints/step_11000`
3863
+
3864
+ **Load Time**: 0.13s
3865
+
3866
+ ### Prompt 1: "Hello, how are you?"
3867
+
3868
+ **Response**:
3869
+ ```
3870
+ .
3871
+ \get
3872
+
3873
+ {
3874
+ #
3875
+ }
3876
+
3877
+
3878
+
3879
+
3880
+
3881
+ <
3882
+ }
3883
+
3884
+ -
3885
+ }
3886
+ {
3887
+ {
3888
+
3889
+ <
3890
+ if.
3891
+
3892
+
3893
+
3894
+ < }
3895
+
3896
+
3897
+ (
3898
+
3899
+ "
3900
+
3901
+ <
3902
+
3903
+
3904
+ "
3905
+ }
3906
+
3907
+ #
3908
+ \
3909
+ "
3910
+
3911
+
3912
+ }
3913
+ ```
3914
+
3915
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
3916
+
3917
+ ### Prompt 2: "Complete this story: Once upon a time"
3918
+
3919
+ **Response**:
3920
+ ```
3921
+ . I can have a lot. I would have to be more than that.
3922
+ What is a lot of the new and I'm not so I had to be a little way. I didn’s a lot of the more. I can’s more than my day. I have a new to the one of the “I was a few. I was a few.
3923
+ I have a nice. I think I’t know about the same in
3924
+ ```
3925
+
3926
+ **Metadata**: max_length=100, temperature=0.7, time=0.59s
3927
+
3928
+ ### Prompt 3: "Explain quantum physics in simple terms"
3929
+
3930
+ **Response**:
3931
+ ```
3932
+ ---------------------------------------------------------------------------------------------
3933
+ ```
3934
+
3935
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
3936
+
3937
+ ### Prompt 4: "Write a haiku about coding"
3938
+
3939
+ **Response**:
3940
+ ```
3941
+ and he had the more, but that, and I had to have the first, but I’t I’t a new. I’t like I’ve I’ve just. I’t get I’m the time, I’t not a new, and I have the point that I am a nice. I’t have to me. I’t get a I don't. I’re going to I don't. I am
3942
+ ```
3943
+
3944
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
3945
+
3946
+ ### Prompt 5: "What is the capital of France?"
3947
+
3948
+ **Response**:
3949
+ ```
3950
+ .
3951
+
3952
+
3953
+
3954
+
3955
+
3956
+
3957
+
3958
+
3959
+
3960
+
3961
+
3962
+
3963
+
3964
+
3965
+ I’t
3966
+
3967
+
3968
+ I’s
3969
+ "
3970
+ -
3971
+ -
3972
+
3973
+ -
3974
+ -
3975
+
3976
+
3977
+ -
3978
+ -
3979
+
3980
+ -
3981
+ -
3982
+
3983
+ -
3984
+ -
3985
+ -
3986
+ -
3987
+ -
3988
+ -
3989
+ -
3990
+ -
3991
+ -
3992
+ -
3993
+ -
3994
+ -
3995
+ -
3996
+
3997
+ -
3998
+ -
3999
+ -
4000
+ -
4001
+ -
4002
+ -
4003
+ -
4004
+ -
4005
+ -
4006
+ ```
4007
+
4008
+ **Metadata**: max_length=100, temperature=0.7, time=0.70s
4009
+
4010
+ ### Prompt 6: "The meaning of life is"
4011
+
4012
+ **Response**:
4013
+ ```
4014
+ that the first for the day.
4015
+ This is the more.
4016
+ "
4017
+
4018
+
4019
+ "
4020
+
4021
+
4022
+
4023
+
4024
+
4025
+
4026
+ {
4027
+
4028
+
4029
+
4030
+
4031
+
4032
+
4033
+
4034
+
4035
+
4036
+
4037
+
4038
+
4039
+
4040
+ $
4041
+
4042
+
4043
+
4044
+ -
4045
+ if
4046
+
4047
+
4048
+
4049
+ return
4050
+
4051
+ -
4052
+
4053
+ -
4054
+
4055
+ -
4056
+ -
4057
+ -
4058
+
4059
+
4060
+
4061
+
4062
+
4063
+
4064
+
4065
+ -
4066
+
4067
+
4068
+
4069
+ "
4070
+ -
4071
+ -
4072
+ -
4073
+ ```
4074
+
4075
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
4076
+
4077
+ ### Prompt 7: "In the year 2050,"
4078
+
4079
+ **Response**:
4080
+ ```
4081
+ ,,,,,,,,, and,,,, and the time, and other in their they not to the the most of the other, and of the other.
4082
+ The future, the time is not the most of the most of the two of the job, and that the time is a the best of the year and the first-t, the time for the first of the first is the “The other is the most of the right-
4083
+ ```
4084
+
4085
+ **Metadata**: max_length=100, temperature=0.7, time=0.65s
4086
+
4087
+ ### Prompt 8: "Python programming is"
4088
+
4089
+ **Response**:
4090
+ ```
4091
+ a great.
4092
+ The second, we had been a lot of the world and the first of the next. The most of the best.
4093
+ The first time, the world and the way of the new of the most of the the other, and the the time.
4094
+ The F.
4095
+ “The two of the game.
4096
+ The C-up, in the the time to the business of the second, the business of the number of the first to the game and the way
4097
+ ```
4098
+
4099
+ **Metadata**: max_length=100, temperature=0.7, time=0.79s
4100
+
4101
+ ---
4102
+
4103
+ ## Checkpoint: step_11500
4104
+
4105
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma5M-v1/checkpoints/step_11500`
4106
+
4107
+ **Load Time**: 0.13s
4108
+
4109
+ ### Prompt 1: "Hello, how are you?"
4110
+
4111
+ **Response**:
4112
+ ```
4113
+ .
4114
+ "
4115
+
4116
+
4117
+
4118
+
4119
+ "
4120
+
4121
+
4122
+ <
4123
+ {
4124
+ [
4125
+ }
4126
+
4127
+
4128
+
4129
+
4130
+ "
4131
+
4132
+
4133
+ {
4134
+ "
4135
+
4136
+
4137
+ }
4138
+ "
4139
+ "
4140
+ }
4141
+ return
4142
+ {
4143
+ }
4144
+ }
4145
+ }
4146
+
4147
+
4148
+
4149
+ }
4150
+ }
4151
+
4152
+
4153
+
4154
+
4155
+
4156
+ (
4157
+ {
4158
+ ```
4159
+
4160
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
4161
+
4162
+ ### Prompt 2: "Complete this story: Once upon a time"
4163
+
4164
+ **Response**:
4165
+ ```
4166
+ ) to the other of the team.
4167
+
4168
+ -4, the result of the final of the top of the day of the right-a, and the most of the same, with the day of the first.
4169
+ The the same for the next is a few of the next, and the first, and the two-in-1.
4170
+
4171
+ -time of the United-the--time of the first---C.
4172
+ -
4173
+ ```
4174
+
4175
+ **Metadata**: max_length=100, temperature=0.7, time=0.59s
4176
+
4177
+ ### Prompt 3: "Explain quantum physics in simple terms"
4178
+
4179
+ **Response**:
4180
+ ```
4181
+ ---------------------------------------------------------------------------------------------
4182
+ ```
4183
+
4184
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
4185
+
4186
+ ### Prompt 4: "Write a haiku about coding"
4187
+
4188
+ **Response**:
4189
+ ```
4190
+ .
4191
+ return "the_if.
4192
+ }
4193
+ return
4194
+ }
4195
+ }
4196
+ return new
4197
+
4198
+ }
4199
+ if.
4200
+ if (s(\
4201
+ }
4202
+ {
4203
+ }
4204
+ <
4205
+ public(this.
4206
+ }
4207
+ }
4208
+ if (t_}
4209
+ if
4210
+ //
4211
+ return the result is.
4212
+ }
4213
+ // <
4214
+ ```
4215
+
4216
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
4217
+
4218
+ ### Prompt 5: "What is the capital of France?"
4219
+
4220
+ **Response**:
4221
+ ```
4222
+ (1)
4223
+ -
4224
+ -
4225
+ -
4226
+ -
4227
+ -
4228
+ -
4229
+ -
4230
+ -
4231
+ -
4232
+ -
4233
+ -
4234
+ -
4235
+ -
4236
+ -
4237
+ -
4238
+ -
4239
+ -
4240
+
4241
+ -
4242
+ -
4243
+ -
4244
+ -
4245
+ -
4246
+ -
4247
+ -
4248
+ -
4249
+ -
4250
+ -
4251
+ -
4252
+ -
4253
+ -
4254
+ -
4255
+ -
4256
+ -
4257
+ -
4258
+ -
4259
+ -
4260
+ -
4261
+ -
4262
+ -
4263
+ -
4264
+ -
4265
+ -
4266
+ -
4267
+ -
4268
+ ```
4269
+
4270
+ **Metadata**: max_length=100, temperature=0.7, time=0.63s
4271
+
4272
+ ### Prompt 6: "The meaning of life is"
4273
+
4274
+ **Response**:
4275
+ ```
4276
+ a little is to be used to be on on the last year that.
4277
+
4278
+ It's not, a very part of the best.
4279
+ The first a bit of the most of the same time that the first time.
4280
+ This is a time of the most of the past, with the same way to the same for the new time.
4281
+ This is one of the way.
4282
+ ```
4283
+
4284
+ **Metadata**: max_length=100, temperature=0.7, time=0.53s
4285
+
4286
+ ### Prompt 7: "In the year 2050,"
4287
+
4288
+ **Response**:
4289
+ ```
4290
+ ,,,,,, and your.
4291
+ To, you think it the time and you are to do a long.
4292
+ I’t get me like to the two and you do with a great.
4293
+ It is a new, it was a lot of the one of your time, but that I’s, but that he could have to use all.
4294
+ I do you have to get a few of a few of them.
4295
+ I know if you
4296
+ ```
4297
+
4298
+ **Metadata**: max_length=100, temperature=0.7, time=0.62s
4299
+
4300
+ ### Prompt 8: "Python programming is"
4301
+
4302
+ **Response**:
4303
+ ```
4304
+ so that you to be the first time.
4305
+
4306
+
4307
+
4308
+
4309
+ The:// I want to do you’t?
4310
+
4311
+
4312
+ I am a new is a good is more about it’s.
4313
+ I’re in the first, I’s like the most more, and I think I think he’t just a better. I’t just do, I could’t do you can’m I’t not it to a good to’ve to
4314
+ ```
4315
+
4316
+ **Metadata**: max_length=100, temperature=0.7, time=0.63s
4317
+
4318
+ ---
4319
+
4320
+ ## Checkpoint: step_12000
4321
+
4322
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma5M-v1/checkpoints/step_12000`
4323
+
4324
+ **Load Time**: 0.15s
4325
+
4326
+ ### Prompt 1: "Hello, how are you?"
4327
+
4328
+ **Response**:
4329
+ ```
4330
+ I’ve never that was what it's a great, it’m I’t think.
4331
+ It’t have a lot of the way. I’t think it’s what I’t have to know that I’t know it's I would have the time I’t I think what it’t think I’t’s it is more.
4332
+ I’t want to do the more. I’m just. I
4333
+ ```
4334
+
4335
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
4336
+
4337
+ ### Prompt 2: "Complete this story: Once upon a time"
4338
+
4339
+ **Response**:
4340
+ ```
4341
+ to the state.
4342
+
4343
+
4344
+ I have been that is the first-to--the-I’t have the way.
4345
+ -
4346
+ -t-
4347
+ -
4348
+ -
4349
+ -
4350
+ -
4351
+ -
4352
+ -
4353
+ -
4354
+ -
4355
+ -
4356
+ -
4357
+ -
4358
+ -
4359
+ -
4360
+ -
4361
+ -
4362
+ -
4363
+ -
4364
+ -
4365
+ -
4366
+ -
4367
+ -
4368
+ -
4369
+ -
4370
+ -
4371
+ -
4372
+ -
4373
+ -
4374
+ -
4375
+ -
4376
+ ```
4377
+
4378
+ **Metadata**: max_length=100, temperature=0.7, time=0.61s
4379
+
4380
+ ### Prompt 3: "Explain quantum physics in simple terms"
4381
+
4382
+ **Response**:
4383
+ ```
4384
+ of a one of the most of the time of the first of the best of the same time to the “W and the second that the government of the first are a more of the future, with the current and the number of the new site and a few of the world and the world of the end of the next of the world and the time of the time of the first more of the future and the way of the world in the way of the other,
4385
+ ```
4386
+
4387
+ **Metadata**: max_length=100, temperature=0.7, time=0.60s
4388
+
4389
+ ### Prompt 4: "Write a haiku about coding"
4390
+
4391
+ **Response**:
4392
+ ```
4393
+ , the, and that of the best of the first a great of the new way of the right of the number of the world of the most of the same in the last of the one of the the most of the the same time of the world of the team of the other of the number of the two- of the United of the country in the a the world of the process of the health of the world of the first of the same as the time to the
4394
+ ```
4395
+
4396
+ **Metadata**: max_length=100, temperature=0.7, time=0.72s
4397
+
4398
+ ### Prompt 5: "What is the capital of France?"
4399
+
4400
+ **Response**:
4401
+ ```
4402
+ . I was. I could do your own, I think it's, I was to say I have a lot to make a lot of this, I had to do. I think I’t just do it. I think I’t your way, I want to have to be a week. I think about what I was. I don’ve was a large. I’t a one that it was, so I’m not a good,
4403
+ ```
4404
+
4405
+ **Metadata**: max_length=100, temperature=0.7, time=0.78s
4406
+
4407
+ ### Prompt 6: "The meaning of life is"
4408
+
4409
+ **Response**:
4410
+ ```
4411
+ a, it is an.
4412
+ -
4413
+ -
4414
+ -
4415
+ -
4416
+ -
4417
+ -
4418
+ -
4419
+ -
4420
+ -
4421
+ -
4422
+ -
4423
+ -
4424
+ -
4425
+ -
4426
+ -
4427
+ -
4428
+ -
4429
+ -
4430
+ -
4431
+
4432
+ -
4433
+ -
4434
+ -
4435
+ -
4436
+ -
4437
+ -
4438
+ -
4439
+ -
4440
+ -
4441
+ -
4442
+ -
4443
+ -
4444
+ -
4445
+ -
4446
+ -
4447
+ -
4448
+ -
4449
+ -
4450
+ -
4451
+ -
4452
+ -
4453
+ -
4454
+ -
4455
+ -
4456
+ -
4457
+ ```
4458
+
4459
+ **Metadata**: max_length=100, temperature=0.7, time=0.86s
4460
+
4461
+ ### Prompt 7: "In the year 2050,"
4462
+
4463
+ **Response**:
4464
+ ```
4465
+ ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, and,, and your, and, and, and the job.
4466
+ He, we not to a long, it,, it, I can a little in the most that, to the most of them,, and what to the more of the time, but that they’m not to you need
4467
+ ```
4468
+
4469
+ **Metadata**: max_length=100, temperature=0.7, time=0.80s
4470
+
4471
+ ### Prompt 8: "Python programming is"
4472
+
4473
+ **Response**:
4474
+ ```
4475
+ like, but they are not you do so you want to get them on, you can get.
4476
+ I think it, my own, I can't know I just’m you would be my way. I think it's a bit of the time, they’ve been a couple of your own.
4477
+ I know what I am my own. I could you’t think it’t do about the last time. I’m not to it. I think I'm
4478
+ ```
4479
+
4480
+ **Metadata**: max_length=100, temperature=0.7, time=0.87s
4481
+
4482
+ ---
4483
+
4484
+ ## Checkpoint: step_12500
4485
+
4486
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma5M-v1/checkpoints/step_12500`
4487
+
4488
+ **Load Time**: 0.29s
4489
+
4490
+ ### Prompt 1: "Hello, how are you?"
4491
+
4492
+ **Response**:
4493
+ ```
4494
+ . I was, I don’m it was, I was all what I’ve found in all. I'm not for in the second. I was a time I was what I was to the game. I’t know, I’ve to do it. I could not, but I’t just never you, but it was I am the first. I had to I’ve been the way of the idea of the last year. I had
4495
+ ```
4496
+
4497
+ **Metadata**: max_length=100, temperature=0.7, time=0.82s
4498
+
4499
+ ### Prompt 2: "Complete this story: Once upon a time"
4500
+
4501
+ **Response**:
4502
+ ```
4503
+ we have not. I have I do not just I was a great. I was a very I’re the right one’t so I could never I have a long, I was to you.
4504
+ We’t a lot of a lot of the idea I was to it.
4505
+
4506
+ I have to a lot of my life.
4507
+ It’s like I had a great first that, I’s not on that I’t just not
4508
+ ```
4509
+
4510
+ **Metadata**: max_length=100, temperature=0.7, time=0.78s
4511
+
4512
+ ### Prompt 3: "Explain quantum physics in simple terms"
4513
+
4514
+ **Response**:
4515
+ ```
4516
+ and is a one of the new.
4517
+ The first time you will be good to the world.
4518
+ ```
4519
+
4520
+ **Metadata**: max_length=100, temperature=0.7, time=0.19s
4521
+
4522
+ ### Prompt 4: "Write a haiku about coding"
4523
+
4524
+ **Response**:
4525
+ ```
4526
+ , the case of the form of the of the way, that the market is also the health in the same and the two of the same as the most of the first in the number of the U.
4527
+ The number of the final, the past the United States, which the past by the other of the best, and the country of the most of the same.
4528
+ The P.
4529
+ The the same-day the way to the “a of the second and
4530
+ ```
4531
+
4532
+ **Metadata**: max_length=100, temperature=0.7, time=0.79s
4533
+
4534
+ ### Prompt 5: "What is the capital of France?"
4535
+
4536
+ **Response**:
4537
+ ```
4538
+ ..
4539
+ ```
4540
+
4541
+ **Metadata**: max_length=100, temperature=0.7, time=0.07s
4542
+
4543
+ ### Prompt 6: "The meaning of life is"
4544
+
4545
+ **Response**:
4546
+ ```
4547
+ so in the time, you the best to be at the same, and the most of the game in the next-the-of-T.
4548
+
4549
+
4550
+ -
4551
+ -
4552
+ -
4553
+ -
4554
+ -
4555
+ -
4556
+ -
4557
+ -
4558
+ -
4559
+ -
4560
+ -
4561
+ -
4562
+ -
4563
+ -
4564
+ -
4565
+ -
4566
+ -
4567
+ -
4568
+ -
4569
+ -
4570
+ -
4571
+ -
4572
+ -
4573
+ -
4574
+ -
4575
+ -
4576
+ -
4577
+ -
4578
+ -
4579
+ -
4580
+ -
4581
+ ```
4582
+
4583
+ **Metadata**: max_length=100, temperature=0.7, time=0.79s
4584
+
4585
+ ### Prompt 7: "In the year 2050,"
4586
+
4587
+ **Response**:
4588
+ ```
4589
+ ,,, and a good thing to our, it, they do not just what you.
4590
+ The only, you are in the time, you, this is a new of time, and you.
4591
+ ```
4592
+
4593
+ **Metadata**: max_length=100, temperature=0.7, time=0.36s
4594
+
4595
+ ### Prompt 8: "Python programming is"
4596
+
4597
+ **Response**:
4598
+ ```
4599
+ a lot of this case.
4600
+ It is to know that you can be a better that you’ll have to do and the time to the problem.
4601
+ We are not something is a lot of the last year.
4602
+ This is to you to get a good.
4603
+ I have a single-d.
4604
+ The only is a better.
4605
+ I’t have to a great time.
4606
+ ```
4607
+
4608
+ **Metadata**: max_length=100, temperature=0.7, time=0.67s
4609
+
4610
+ ---
4611
+
4612
+ ## Checkpoint: step_13000
4613
+
4614
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma5M-v1/checkpoints/step_13000`
4615
+
4616
+ **Load Time**: 0.54s
4617
+
4618
+ ### Prompt 1: "Hello, how are you?"
4619
+
4620
+ **Response**:
4621
+ ```
4622
+ . I can't have a bit to the idea about a year. I’m not my work and I’m my life, and I had the one of this is a bit of the first time to the most of the time of the first. The first time in the time he was the first, they are in the very much of the first time and the time for the “S. I’m not in the “I’t have to get.
4623
+ ```
4624
+
4625
+ **Metadata**: max_length=100, temperature=0.7, time=0.81s
4626
+
4627
+ ### Prompt 2: "Complete this story: Once upon a time"
4628
+
4629
+ **Response**:
4630
+ ```
4631
+ it is what it is the only as the most of the same, we do, that is a bit of the same as the time of the most important of the same time, and the state of the "The end of the first, the first are a very great to the past, the number of the number of the day of the first the other that the time of the most of the new time and the two of the world, the world and the
4632
+ ```
4633
+
4634
+ **Metadata**: max_length=100, temperature=0.7, time=0.91s
4635
+
4636
+ ### Prompt 3: "Explain quantum physics in simple terms"
4637
+
4638
+ **Response**:
4639
+ ```
4640
+ a new years of the work and the time of the time, the last year, the the way to the other in the final.
4641
+ The U.
4642
+ You have to the other of the best way to the "to-1.
4643
+
4644
+ The second time to the best of the following the same.
4645
+ A
4646
+ In the second of the world, the first, the first to the most of the world.
4647
+ A.
4648
+ But the same of the
4649
+ ```
4650
+
4651
+ **Metadata**: max_length=100, temperature=0.7, time=0.78s
4652
+
4653
+ ### Prompt 4: "Write a haiku about coding"
4654
+
4655
+ **Response**:
4656
+ ```
4657
+ .
4658
+ This is a better as you to give you do you have to work as a great?
4659
+ The case they can know the first time, you can't do, you have to find that you’ll take a few of that you.
4660
+ You can't have the first time you want to you want to the year.
4661
+ I have a very way to get one.
4662
+ I have to use this is a new.
4663
+ When I am not a lot
4664
+ ```
4665
+
4666
+ **Metadata**: max_length=100, temperature=0.7, time=0.80s
4667
+
4668
+ ### Prompt 5: "What is the capital of France?"
4669
+
4670
+ **Response**:
4671
+ ```
4672
+ , I have a lot, I’t love that I’t. I’t feel, I’m not a great-d, I’t know I’m really what I’t think I’m I’m my’t have to do. I’t think it, I’t think about. I’m, but I’t never really a lot. I’s me. I think I’ve been my own
4673
+ ```
4674
+
4675
+ **Metadata**: max_length=100, temperature=0.7, time=0.83s
4676
+
4677
+ ### Prompt 6: "The meaning of life is"
4678
+
4679
+ **Response**:
4680
+ ```
4681
+ my way to do you are that you is.
4682
+
4683
+ This is a good way, we know what we will be a good time.
4684
+ I can’ll be, if it was a little better.
4685
+ ```
4686
+
4687
+ **Metadata**: max_length=100, temperature=0.7, time=0.38s
4688
+
4689
+ ### Prompt 7: "In the year 2050,"
4690
+
4691
+ **Response**:
4692
+ ```
4693
+ ,, and,, and if, he’t really’s the “Ded you’t have to do a bad of that’t have to get a good day. The best of my family’s time I have to do, I’t have the “The most important for you’t do it.
4694
+ We’ll be a nice to you get me.
4695
+ I’m I have to know I’t just get more. I
4696
+ ```
4697
+
4698
+ **Metadata**: max_length=100, temperature=0.7, time=0.79s
4699
+
4700
+ ### Prompt 8: "Python programming is"
4701
+
4702
+ **Response**:
4703
+ ```
4704
+ about a very of the of the new time, the of the local.
4705
+ We have the time to be a new, the first, it is that the first have been in the world and the other people that you are, but to the best.
4706
+ We have a little.
4707
+ I do not be a very good way, we are you and the time, you are very long, but we have to the most.
4708
+ I have a nice to the same.
4709
+ If
4710
+ ```
4711
+
4712
+ **Metadata**: max_length=100, temperature=0.7, time=0.82s
4713
+
4714
+ ---
4715
+
4716
+ ## Checkpoint: step_13500
4717
+
4718
+ **Path**: `../pico-train/runs/pico-decoder-tiny-dolma5M-v1/checkpoints/step_13500`
4719
+
4720
+ **Load Time**: 0.27s
4721
+
4722
+ ### Prompt 1: "Hello, how are you?"
4723
+
4724
+ **Response**:
4725
+ ```
4726
+ "\0<-m--or-
4727
+ -0:
4728
+ \\,
4729
+ \
4730
+ -0,
4731
+ }
4732
+ "
4733
+
4734
+
4735
+ c-
4736
+ -
4737
+
4738
+ {
4739
+ (0,
4740
+ }
4741
+ <
4742
+ \-
4743
+ \s)
4744
+ //
4745
+
4746
+ "
4747
+
4748
+ <
4749
+ "
4750
+
4751
+ *
4752
+
4753
+ "
4754
+ ```
4755
+
4756
+ **Metadata**: max_length=100, temperature=0.7, time=0.81s
4757
+
4758
+ ### Prompt 2: "Complete this story: Once upon a time"
4759
+
4760
+ **Response**:
4761
+ ```
4762
+ you need to the time and you do and.
4763
+ You do, you will help the next week, you are you to you’ve to get in the number of.
4764
+ The same time of the same thing, the game’s and you will have the time.
4765
+ It is a little to the way to me.
4766
+ The point of the best time, and the way in the same as you to the first time to the time to make the
4767
+ ```
4768
+
4769
+ **Metadata**: max_length=100, temperature=0.7, time=0.83s
4770
+
4771
+ ### Prompt 3: "Explain quantum physics in simple terms"
4772
+
4773
+ **Response**:
4774
+ ```
4775
+ and you.
4776
+ I have a lot of a problem.
4777
+ I’t do. I’t see to use my way in a day. I didn't like the same.
4778
+ “It's a year’s I’t like I’t know that I’ve made it on a lot of the time. I’m not just was it. I’ve not going to it. I’m just. I would have a good idea
4779
+ ```
4780
+
4781
+ **Metadata**: max_length=100, temperature=0.7, time=0.77s
4782
+
4783
+ ### Prompt 4: "Write a haiku about coding"
4784
+