Commit bbcdffb8 authored by daniel-furman's avatar daniel-furman
Browse files

remove system

parent 39a11d02
...@@ -690,7 +690,7 @@ class HFLM(LM): ...@@ -690,7 +690,7 @@ class HFLM(LM):
new_reqs = [] new_reqs = []
for req in requests: for req in requests:
context = req.args[0].strip() context = req.args[0].strip()
system_prompt = "You are a helpful assistant." #system_prompt = "You are a helpful assistant."
# arc experiment with few-shot formatting # arc experiment with few-shot formatting
import re import re
...@@ -699,7 +699,8 @@ class HFLM(LM): ...@@ -699,7 +699,8 @@ class HFLM(LM):
for element in elements[1:-1]: for element in elements[1:-1]:
new_elements.append(element.strip()) new_elements.append(element.strip())
new_elements new_elements
chat = [{"role": "system", "content": system_prompt}] #chat = [{"role": "system", "content": system_prompt}]
chat = []
for i in range(len(new_elements)): for i in range(len(new_elements)):
if i % 2 == 0: if i % 2 == 0:
chat.append({"role": "user", "content": f"Question: {new_elements[i]} Answer:"}) chat.append({"role": "user", "content": f"Question: {new_elements[i]} Answer:"})
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment