mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
Fix eval output path in case of @ char (#4416)
This commit is contained in:
parent
da23189e4c
commit
6f2e678028
@ -152,7 +152,7 @@ def make_metadata(
|
||||
details: dict[str, Any] | None = None,
|
||||
) -> EvalMetadata:
|
||||
model_name = llm_config.model.split('/')[-1]
|
||||
model_path = model_name.replace(':', '_')
|
||||
model_path = model_name.replace(':', '_').replace('@', '-')
|
||||
eval_note = f'_N_{eval_note}' if eval_note else ''
|
||||
|
||||
eval_output_path = os.path.join(
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user