Sentence Similarity
sentence-transformers
Safetensors
bert
feature-extraction
Generated from Trainer
dataset_size:2700
loss:MultipleNegativesRankingLoss
Eval Results (legacy)
text-embeddings-inference
Instructions to use rafiazarin/arxiv-cs-embedding-finetuned with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use rafiazarin/arxiv-cs-embedding-finetuned with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("rafiazarin/arxiv-cs-embedding-finetuned") sentences = [ "How do Thomae's formula and the symmetric group representation relate to identities between theta constants in a cyclic 3-sheeted cover of the sphere?", "We find identities between theta constants with rational characteristics evaluated at period matrix of a cyclic 3 sheeted cover of the sphere with branch points These identities follow from Thomae formula . This formula expresses powers of theta constants as polynomials in We apply the representation of the symmetric group to find relations between the polynomials and hence between the associated theta constants.", "We study the unfolding of a single polymer chain due to an external force. We use a simplified model which allows to perform all calculations in closed form without assuming a Boltzmann-Gibbs form for the equilibrium distribution. Temperature is then defined by calculating the Legendre transform of the entropy under certain constraints. The application of the model is limited to flexible polymers. It exhibits a gradual transition from compact globule to rod. The boundary line between these two phases shows reentrant behavior. This behavior is explained by the presence of residual entropy.", "We present the results of a deep optical-near-infrared multi-epoch survey covering 2.5 square degrees of the Pleiades open star cluster to search for new very-low-mass brown dwarf members. A significant (~ 5 year) epoch difference exists between the optical (CFH12k I-, Z-band) and near infrared (UKIRT WFCAM J-band) observations. We construct I,I-Z and Z,Z-J colour magnitude diagrams to select candidate cluster members. Proper motions are computed for all candidate members and compared to the background field objects to further refine the sample. We recover all known cluster members within the area of our survey. In addition, we have discovered 9 new candidate brown dwarf cluster members. The 7 faintest candidates have red Z-J colours and show blue near-infrared colours. These are consistent with being L and T-type Pleiads. Theoretical models predict their masses to be around 11 Jupiter masses. There is 1 errata for this paper" ] 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!