-
Notifications
You must be signed in to change notification settings - Fork 529
Add SAID-LAM model metadata #3836
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
- SAID-LAM-v1: Linear Attention Memory with Crystalline Attention (SCA) - BETA - 32K context (licensed), 12K free tier - 384 dim embeddings - Perfect recall via deterministic attention - Organization: SAID Research
mteb/models/said_lam.py
Outdated
| from mteb import ModelMeta | ||
|
|
||
| said_lam_v1 = ModelMeta( | ||
| name="SAID-LAM-v1", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You need to add code to run your model
|
|
||
| from mteb import ModelMeta | ||
|
|
||
| said_lam_v1 = ModelMeta( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please, try to load your model meta. Most of the fields are incorrect, or we don't have them
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can pre-generate the ModelMeta using:
from mteb.models import ModelMeta
from sentence_transformers import SentenceTransformer
model = SentenceTransformer("Qwen/Qwen3-Embedding-0.6B", device="cpu")
meta = ModelMeta.from_sentence_transformer_model(model)
print(meta.to_python())
If it is not sentence transfromers compatible do check out the docs.
- Added SAIDLAMEncoder class implementing MTEB's AbsEncoder protocol - loader=SAIDLAMEncoder (class reference, not function) - 384-dim embeddings with cosine similarity - Linear Attention Memory with SAID Crystalline Attention (SCA) - BETA - 32K context (licensed tier), 12K (free tier) - Tested on STS12 (75.02%)
| break | ||
|
|
||
| try: | ||
| from lam import LAM |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you update pyproject to include this package? I can't find it on PYPI
If you add a model or a dataset, please add the corresponding checklist: