Views
No views yet
vector search -> ConvMemory -> CCGE-LA conflict-aware score edit -> memory contextccge_la.pt: CCGE-LA editor checkpoint.manifest.json: training configuration and seed-23 test metrics.LICENSE: MIT license.pip install git+https://github.com/pth2002/ConvMemory.git1from convmemory import ConvMemory
2
3model = ConvMemory.from_pretrained("Purdy0228/ConvMemory-LoCoMo-MPNet")
4model.load_ccge_editor("Purdy0228/ConvMemory-CCGE-LA")
5
6results = model.retrieve(
7 query=query,
8 memories=memories,
9 editor="ccge_la",
10 top_k=10,
11)1model = ConvMemory.from_pretrained("Purdy0228/ConvMemory-LoCoMo-MPNet", embedding_model=False)
2model.load_ccge_editor("Purdy0228/ConvMemory-CCGE-LA")
3ranked = model.rerank_embeddings(
4 query_embedding=query_embedding,
5 memory_embeddings=memory_embeddings,
6 memory_ids=memory_ids,
7 memory_texts=memory_texts,
8 query=query,
9 editor="ccge_la",
10)| subset | CCGE-LA alpha MRR | CCGE-LA R@10 | gate |
|---|---|---|---|
| FULL | 0.5638 | 0.7725 | 0.0995 |
| T_SUP_auto | 0.5508 | 0.7138 | 0.0995 |
| CONV_TOP1_WRONG_GOLD_IN_POOL | 0.2994 | 0.6822 | 0.0995 |
| RESCUABLE_STALE_TOP1 | 0.3093 | 0.6877 | 0.0995 |
Purdy0228/ConvMemory-LoCoMo-MPNet.23.192.convmemory Python library.