Sentence Similarity
sentence-transformers
Safetensors
English
qwen3
feature-extraction
dense
Generated from Trainer
dataset_size:5600
loss:MatryoshkaLoss
loss:MultipleNegativesRankingLoss
Eval Results (legacy)
text-embeddings-inference
Instructions to use PhilipCisco/qwen3-base-financial_3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use PhilipCisco/qwen3-base-financial_3 with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("PhilipCisco/qwen3-base-financial_3") sentences = [ "What was the cash dividend per common share declared by Comcast in 2023?", "Pursuant to laws and regulations that include the Federal Food, Drug, and Cosmetic Act (FDCA), the FDA has jurisdiction over all of our products and devices in the U.S. and administers requirements covering the testing, safety, effectiveness, manufacturing, quality control, distribution, labeling, marketing, promotion, advertising, dissemination of information, and post-marketing surveillance of those products and devices.", "Our inventory balance as of January 28, 2024 was $1.3 billion, a decrease of 9% from January 29, 2023.", "Cash dividends declared per common share were $1.16 in 2023." ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [4, 4] - Notebooks
- Google Colab
- Kaggle
Welcome to the community
The community tab is the place to discuss and collaborate with the HF community!