KeenWoo commited on
Commit
bf4c0b9
·
verified ·
1 Parent(s): eb91eac

Update evaluate.py

Browse files
Files changed (1) hide show
  1. evaluate.py +2 -2
evaluate.py CHANGED
@@ -199,7 +199,7 @@ def load_test_fixtures():
199
  # --- END: DEFINITIVE FIX ---
200
  # candidates = [env_path] if env_path else ["conversation_test_fixtures_v10.jsonl"]
201
  # candidates = [env_path] if env_path else ["small_test_cases_v10.jsonl"]
202
- candidates = [env_path] if env_path else ["Test_syn_caregiving_patient.jsonl"]
203
 
204
  path = next((p for p in candidates if p and os.path.exists(p)), None)
205
  if not path:
@@ -209,7 +209,7 @@ def load_test_fixtures():
209
  # Use the corrected v10 file if available
210
  # if "conversation_test_fixtures_v10.jsonl" in path:
211
  # if "small_test_cases_v10.jsonl" in path:
212
- if "Test_syn_caregiving_patient.jsonl" in path:
213
  print(f"Using corrected test fixtures: {path}")
214
 
215
  with open(path, "r", encoding="utf-8") as f:
 
199
  # --- END: DEFINITIVE FIX ---
200
  # candidates = [env_path] if env_path else ["conversation_test_fixtures_v10.jsonl"]
201
  # candidates = [env_path] if env_path else ["small_test_cases_v10.jsonl"]
202
+ candidates = [env_path] if env_path else ["Test_Syn_Caregiving_Patient.jsonl"]
203
 
204
  path = next((p for p in candidates if p and os.path.exists(p)), None)
205
  if not path:
 
209
  # Use the corrected v10 file if available
210
  # if "conversation_test_fixtures_v10.jsonl" in path:
211
  # if "small_test_cases_v10.jsonl" in path:
212
+ if "Test_Syn_Caregiving_Patient.jsonl" in path:
213
  print(f"Using corrected test fixtures: {path}")
214
 
215
  with open(path, "r", encoding="utf-8") as f: