Skip to content

Commit f90efa1

Browse files
committed
Add recipes/A5000_24GB_x8/coder-python-ja-wikipedia-amenokaku.yaml
1 parent 4cbe113 commit f90efa1

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
target_task: tasks/text-generation/text2sql.md
2+
base_model_id: yuiseki/tinyllama-ja-wikipedia-1.5T-v0.1
3+
model_name: tinyllama-coder-python-ja-wikipedia-amenokaku-v0.1
4+
output_base_dir: /data/output
5+
dataset_id: kunishou/amenokaku-code-instruct
6+
dataset_input_field_name: instruction
7+
dataset_context_field_name: input
8+
dataset_output_field_name: output
9+
dataset_train_split_seed: 42
10+
dataset_train_split_test_size: 0.2
11+
lora_r: 8
12+
lora_alpha: 16
13+
lora_dropout: 0.05
14+
train_claim_gpu_num: 4
15+
train_per_device_train_batch_size: 8
16+
train_gradient_accumulation_steps: 4
17+
train_num_train_epochs: 4
18+
train_max_steps: 1000
19+
train_fp16: True
20+
inference_max_new_tokens: 64
21+
evaluations:
22+
-
23+
prompt: "How many heads of the departments are older than 56 ?"
24+
context: "CREATE TABLE head (age INTEGER)"
25+
expected_output: "SELECT COUNT(*) FROM head WHERE age > 56"
26+
-
27+
prompt: "List the name, born state and age of the heads of departments ordered by age."
28+
context: "CREATE TABLE head (name VARCHAR, born_state VARCHAR, age VARCHAR)"
29+
expected_output: "SELECT name, born_state, age FROM head ORDER BY age"

0 commit comments

Comments
 (0)