File tree 1 file changed +28
-0
lines changed
recipes/A5000_24GB_x8/karasu
1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change
1
+ target_task : tasks/text-generation/text2sql.md
2
+ base_model_id : lightblue/karasu-1.1B
3
+ model_name : karasu-q-gen-ja-v0.1
4
+ output_base_dir : /data/output
5
+ dataset_id : SkelterLabsInc/JaQuAD
6
+ dataset_input_hint : " 以下の文章から次の単語が答えとなるような質問を作成してください。"
7
+ dataset_input_field_name : answers
8
+ dataset_context_field_name : context
9
+ dataset_output_field_name : question
10
+ dataset_train_split_seed : 42
11
+ dataset_train_split_test_size : 0.2
12
+ lora_r : 8
13
+ lora_alpha : 16
14
+ lora_dropout : 0.05
15
+ train_claim_gpu_num : 4
16
+ train_per_device_train_batch_size : 4
17
+ train_gradient_accumulation_steps : 64
18
+ train_num_train_epochs : 4
19
+ inference_max_new_tokens : 64
20
+ evaluations :
21
+ -
22
+ prompt : " How many heads of the departments are older than 56 ?"
23
+ context : " CREATE TABLE head (age INTEGER)"
24
+ expected_output : " SELECT COUNT(*) FROM head WHERE age > 56"
25
+ -
26
+ prompt : " List the name, born state and age of the heads of departments ordered by age."
27
+ context : " CREATE TABLE head (name VARCHAR, born_state VARCHAR, age VARCHAR)"
28
+ expected_output : " SELECT name, born_state, age FROM head ORDER BY age"
You can’t perform that action at this time.
0 commit comments