Faisal commited on
Commit
af5d735
Β·
1 Parent(s): 8c2fe6b

Restore GPU version - remove CPU optimizations and restore GPU-compatible dependencies

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -40,14 +40,13 @@ deepseek_model = "deepseek/deepseek-r1"
40
  # ----------------------------
41
  # DEFAULT QUESTION
42
  # ----------------------------
43
- DEFAULT_QUESTION = "What abnormality is in the brain MRI and what is the location?\nA) Tumour\nB) No tumour"
44
 
45
  QUESTION_TEMPLATE = """
46
  {Question}
47
  Your task:
48
  1. Think through the question step by step, enclose your reasoning process in <think>...</think> tags.
49
  2. Then provide the correct single-letter choice (A, B, C, D,...) inside <answer>...</answer> tags.
50
- 3. No extra information or text outside of these tags.
51
  """
52
 
53
  # ----------------------------
 
40
  # ----------------------------
41
  # DEFAULT QUESTION
42
  # ----------------------------
43
+ DEFAULT_QUESTION = "What abnormality is in the brain MRI and what is the location?\nA) Tumour\nB) No tumour \nC) Other"
44
 
45
  QUESTION_TEMPLATE = """
46
  {Question}
47
  Your task:
48
  1. Think through the question step by step, enclose your reasoning process in <think>...</think> tags.
49
  2. Then provide the correct single-letter choice (A, B, C, D,...) inside <answer>...</answer> tags.
 
50
  """
51
 
52
  # ----------------------------