AthelaPerk commited on
Commit
2fc4f69
·
verified ·
1 Parent(s): 3a3d9fa

Fix: Lower similarity_threshold to 0.10 for hash embeddings (was 0.50, too strict)

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -98,8 +98,8 @@ class MnemoV4:
98
  """Mnemo v4: SLM-Inspired Memory System"""
99
 
100
  WORKING_MEMORY_SIZE = 50
101
- SIMILARITY_THRESHOLD = 0.50
102
- QUALITY_THRESHOLD = 0.50
103
 
104
  def __init__(self, embedding_dim: int = 384):
105
  self.embedding_dim = embedding_dim
 
98
  """Mnemo v4: SLM-Inspired Memory System"""
99
 
100
  WORKING_MEMORY_SIZE = 50
101
+ SIMILARITY_THRESHOLD = 0.10
102
+ QUALITY_THRESHOLD = 0.35
103
 
104
  def __init__(self, embedding_dim: int = 384):
105
  self.embedding_dim = embedding_dim