-
Notifications
You must be signed in to change notification settings - Fork 247
Description
I'm trying to use your evaluation framework to run PersonaMem but there is some confusion regarding the version.
PersonaMem version
The benchmark chart in the README labels the rightmost panel "PersonaMem v2," but the evaluation code appears to support only PersonaMem v1:
personamem_converter.pyexpectsquestions_32k.csv+shared_contexts_32k.jsonl(the v1 file format from bowen-upenn/PersonaMem)- The converter parses v1-specific columns (
user_question_or_message,shared_context_id,end_index_in_shared_context, etc.) - PersonaMem v2 (bowen-upenn/PersonaMem-v2) uses a different schema (parquet format,
user_querycolumn,incorrect_answersinstead ofall_options, 5,000 benchmark questions vs 588 in v1-32k) - The README links to the v1 HuggingFace dataset for download instructions
Could you clarify which version was used for the published scores (EverMemOS 53.2%, MemOS 50.7%, Mem0 43.9%, Zep 43.4%, memU 38.7% )? If v2 was used, is there a separate converter or branch we're missing?
Published results
For LoCoMo and LongMemEval, the detailed results table in figs/benchmark_2.png is very helpful. Is there a similar breakdown for PersonaMem (per-category accuracy, number of questions, etc.)?
More broadly, are the raw evaluation outputs (answer texts, search results, eval judgments) available for any of the benchmarked systems? Being able to inspect the actual answers would help the community:
- Reproduce the published numbers independently
- Do error analysis across systems
- Ensure fair comparison when benchmarking new systems
Even just the eval_results.json files for each system/dataset combination would be valuable.
Reproduction
We ran PersonaMem through the framework as documented and want to make sure we're comparing apples to apples. A few specific questions:
- Which LLM backbone was used for answer generation in the PersonaMem evaluation? (The LoCoMo/LongMemEval table shows GPT-4o-mini and GPT-4.1-mini backbones — was PersonaMem run with the same?)
-
- How many questions were evaluated: 588 (PersonaMem v1 32k) or 5,000 (PersonaMem v2 benchmark 32k, 128k, 1M)?
- Were any category filters applied (as in LoCoMo category 5)?
Thanks for making the framework open source, it's been very useful. Just want to make sure we're benchmarking on the same footing.