zstanjj commited on
Commit
cea2117
·
verified ·
1 Parent(s): b10750c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -0
README.md CHANGED
@@ -37,6 +37,12 @@ heuristic_answer = "The voice of Darth Vader in Star Wars is provided by British
37
  prompt = (f"<s>[INST] <<SYS>>\nYou are a helpful assistant. Your task is to parse user input into"
38
  f" structured formats according to the coarse answer. Current datatime is 2023-12-20 9:47:28"
39
  f" <</SYS>>\n Course answer: (({heuristic_answer}))\nQuestion: (({question})) [/INST]")
 
 
 
 
 
 
40
  params_query_rewrite = {"repetition_penalty": 1.05, "temperature": 0.01, "top_k": 1, "top_p": 0.85,
41
  "max_new_tokens": 512, "do_sample": False, "seed": 2023}
42
 
 
37
  prompt = (f"<s>[INST] <<SYS>>\nYou are a helpful assistant. Your task is to parse user input into"
38
  f" structured formats according to the coarse answer. Current datatime is 2023-12-20 9:47:28"
39
  f" <</SYS>>\n Course answer: (({heuristic_answer}))\nQuestion: (({question})) [/INST]")
40
+
41
+ # alternatively you can input question only
42
+ # prompt = (f"<s>[INST] <<SYS>>\nYou are a helpful assistant. Your task is to parse user input into"
43
+ # f" structured formats. Current datatime is 2023-12-20 9:47:28"
44
+ # f" <</SYS>>\n{question} [/INST]")
45
+
46
  params_query_rewrite = {"repetition_penalty": 1.05, "temperature": 0.01, "top_k": 1, "top_p": 0.85,
47
  "max_new_tokens": 512, "do_sample": False, "seed": 2023}
48