Feature Extraction
sentence-transformers
Safetensors
English
bert
sentence-similarity
lexsembridge
text-embeddings-inference
Instructions to use Jasaxion/LexSemBridge_CLR_snowflake with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use Jasaxion/LexSemBridge_CLR_snowflake with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("Jasaxion/LexSemBridge_CLR_snowflake") sentences = [ "The weather is lovely today.", "It's so sunny outside!", "He drove to the stadium." ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [3, 3] - Notebooks
- Google Colab
- Kaggle
Improve model card for LexSemBridge: Add paper/code links, update pipeline tag, license, and datasets
#1
by nielsr HF Staff - opened
This PR enhances the model card for LexSemBridge by:
- Updating the
pipeline_tagtofeature-extraction, which more accurately reflects the model's primary function of generating dense representations for retrieval tasks. This ensures better discoverability on the Hugging Face Hub (e.g., https://huggingface.co/models?pipeline_tag=feature-extraction). - Adding
Jasaxion/LexSemBridge_evalto thedatasetsmetadata, as this dataset is explicitly mentioned in the GitHub README for training and evaluation. - Adding
ento thelanguagemetadata. - Including
license: apache-2.0to provide clear licensing information for the model. - Adding
lexsembridgeto thetagsmetadata for improved searchability. - Adding a direct link to the paper LexSemBridge: Fine-Grained Dense Representation Enhancement through Token-Aware Embedding Augmentation.
- Including a link to the official GitHub repository, https://github.com/Jasaxion/LexSemBridge/, for easy access to the code.
- Updating the sample usage snippet to refer to a specific model ID (
Jasaxion/LexSemBridge_CLR_snowflake) mentioned in the project's GitHub README. - Populating the BibTeX citation section for proper attribution.
These improvements will make the model more discoverable and provide users with comprehensive information and resources.
I sincerely apologize for being occupied with other work recently and overlooking your PR. I truly appreciate your thoughtful suggestions.
Jasaxion changed pull request status to merged