Skip to content

Commit a0f528d

Browse files
committed
Add demo dataset and config
1 parent 085bbc3 commit a0f528d

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed

demo_config.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"base_model": "meta-llama/Llama-3.1-8B-Instruct",
3+
"train_file": "demo_data.jsonl",
4+
"eval_tasks": ["simple_qa"],
5+
"renderer_name": "llama3",
6+
"learning_rate": 0.0003,
7+
"eval_threshold": 0.75,
8+
"max_rounds": 3,
9+
"lr_decay": 0.6,
10+
"evalops_enabled": false,
11+
"evalops_test_suite_id": "",
12+
"steps_per_round": 5,
13+
"batch_size": 4,
14+
"max_seq_length": 512
15+
}

demo_data.jsonl

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{"instruction": "What is 2 + 2?", "output": "2 + 2 = 4"}
2+
{"instruction": "What is the capital of France?", "output": "The capital of France is Paris."}
3+
{"instruction": "Translate 'hello' to Spanish.", "output": "'Hello' in Spanish is 'hola'."}
4+
{"instruction": "What color is the sky?", "output": "The sky is typically blue during the day."}
5+
{"instruction": "Who wrote Romeo and Juliet?", "output": "William Shakespeare wrote Romeo and Juliet."}
6+
{"instruction": "What is photosynthesis?", "output": "Photosynthesis is the process by which plants convert sunlight into energy."}
7+
{"instruction": "Name a programming language.", "output": "Python is a popular programming language."}
8+
{"instruction": "What does HTML stand for?", "output": "HTML stands for HyperText Markup Language."}
9+
{"instruction": "What is the largest planet in our solar system?", "output": "Jupiter is the largest planet in our solar system."}
10+
{"instruction": "What is 10 x 5?", "output": "10 x 5 = 50"}
11+
{"instruction": "What is the boiling point of water?", "output": "The boiling point of water is 100°C (212°F) at sea level."}
12+
{"instruction": "Who painted the Mona Lisa?", "output": "Leonardo da Vinci painted the Mona Lisa."}
13+
{"instruction": "What does CPU stand for?", "output": "CPU stands for Central Processing Unit."}
14+
{"instruction": "What year did World War II end?", "output": "World War II ended in 1945."}
15+
{"instruction": "What is the speed of light?", "output": "The speed of light is approximately 299,792,458 meters per second."}
16+
{"instruction": "Name the primary colors.", "output": "The primary colors are red, blue, and yellow."}
17+
{"instruction": "What is the chemical symbol for gold?", "output": "The chemical symbol for gold is Au."}
18+
{"instruction": "How many continents are there?", "output": "There are 7 continents: Africa, Antarctica, Asia, Europe, North America, Oceania, and South America."}
19+
{"instruction": "What is the smallest prime number?", "output": "The smallest prime number is 2."}
20+
{"instruction": "Define 'gravity'.", "output": "Gravity is the force that attracts objects toward each other, especially the force that pulls objects toward Earth."}

0 commit comments

Comments
 (0)