Verias commited on
Commit
9f507f1
·
verified ·
1 Parent(s): ec642a1

Upload 4 files

Browse files
training/datasets/put-trainer-datasets-here.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ to load multiple raw text files create a subdirectory and put them all there
training/formats/alpaca-chatbot-format.json ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {
2
+ "instruction,output": "User: %instruction%\nAssistant: %output%",
3
+ "instruction,input,output": "User: %instruction%: %input%\nAssistant: %output%"
4
+ }
training/formats/alpaca-format.json ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {
2
+ "instruction,output": "Below is an instruction that describes a task. Write a response that appropriately completes the request.\n\n### Instruction:\n%instruction%\n\n### Response:\n%output%",
3
+ "instruction,input,output": "Below is an instruction that describes a task, paired with an input that provides further context. Write a response that appropriately completes the request.\n\n### Instruction:\n%instruction%\n\n### Input:\n%input%\n\n### Response:\n%output%"
4
+ }
training/formats/vicuna-format.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "instruction,output": "A chat between a curious user and an artificial intelligence assistant. The assistant gives helpful, detailed, and polite answers to the user's questions.\n\nUSER: %instruction%\n\nASSISTANT: %output%"
3
+ }