shanezhou24 commited on
Commit
99b4265
·
1 Parent(s): 028b4c8

try Qwen3-32B model

Browse files
Files changed (3) hide show
  1. answer_log.jsonl +1 -1
  2. app.py +3 -1
  3. test.py +3 -1
answer_log.jsonl CHANGED
@@ -1,2 +1,2 @@
 
1
  {"task_id": "2d83110e-a098-4ebb-9987-066c06fa42d0", "question": ".rewsna eht sa \"tfel\" drow eht fo etisoppo eht etirw ,ecnetnes siht dnatsrednu uoy fI", "model_answer": "right"}
2
- {"task_id": "cabe07ed-9eca-40ea-8ead-410ef5e83f91", "question": "What is the surname of the equine veterinarian mentioned in 1.E Exercises from the chemistry materials licensed by Marisa Alviar-Agnew & Henry Agnew under the CK-12 license in LibreText's Introductory Chemistry materials as compiled 08/21/2023?", "model_answer": "Not Available"}
 
1
+ {"task_id": "9d191bce-651d-4746-be2d-7ef8ecadb9c2", "question": "Examine the video at https://www.youtube.com/watch?v=1htKBjuUWec.\n\nWhat does Teal'c say in response to the question \"Isn't that hot?\"", "model_answer": "It is acceptable"}
2
  {"task_id": "2d83110e-a098-4ebb-9987-066c06fa42d0", "question": ".rewsna eht sa \"tfel\" drow eht fo etisoppo eht etirw ,ecnetnes siht dnatsrednu uoy fI", "model_answer": "right"}
 
app.py CHANGED
@@ -41,7 +41,9 @@ DEFAULT_API_URL = "https://agents-course-unit4-scoring.hf.space"
41
  model = HfApiModel(
42
  max_tokens=2096,
43
  temperature=0.5,
44
- model_id='Qwen/Qwen2.5-Coder-32B-Instruct',
 
 
45
  custom_role_conversions=None,
46
  token=hf_token, # Pass the token here
47
  )
 
41
  model = HfApiModel(
42
  max_tokens=2096,
43
  temperature=0.5,
44
+ model_id=
45
+ # 'Qwen/Qwen2.5-Coder-32B-Instruct',
46
+ 'Qwen/Qwen3-32B',
47
  custom_role_conversions=None,
48
  token=hf_token, # Pass the token here
49
  )
test.py CHANGED
@@ -92,7 +92,9 @@ def create_agent():
92
  model = HfApiModel(
93
  max_tokens=2096,
94
  temperature=0.5,
95
- model_id='Qwen/Qwen2.5-Coder-32B-Instruct',
 
 
96
  # custom_role_conversions=None, # Optional, kept default
97
  token=hf_token,
98
  )
 
92
  model = HfApiModel(
93
  max_tokens=2096,
94
  temperature=0.5,
95
+ model_id=
96
+ # 'Qwen/Qwen2.5-Coder-32B-Instruct',
97
+ 'Qwen/Qwen3-32B',
98
  # custom_role_conversions=None, # Optional, kept default
99
  token=hf_token,
100
  )