Sentence Similarity
sentence-transformers
Safetensors
mpnet
feature-extraction
dense
Generated from Trainer
dataset_size:5920
loss:MultipleNegativesRankingLoss
text-embeddings-inference
Instructions to use HariishHafiiz/sbert-bug-eclipse-ft with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use HariishHafiiz/sbert-bug-eclipse-ft with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("HariishHafiiz/sbert-bug-eclipse-ft") sentences = [ "debugger not reusing a ireusableeditor eclipse . doubleclick a source file of my language. an editor is opened with a fileeditorinput for it. well call it instance. debug the program file of my language. i have my own mylanguageinput for a runtime program so that i can do coloring based on vm states see bug the debugger will not reuse the already open ireusableeditor that i have setting its input object was what i expected. it will choose to open a new editor instead. well call this instance. debug more instances of the same program. now the debugger will reuse instance. why cant the debugger reuse instance from the beginning note that this problem was hit by a workaround for bug", "would like to say what text attributes to use when selecting the executing statement for my language id like to have the currently executing line colored depending on state from my vm. id imagine that passing such text attributes when generating these debug events would be one way to go. note that is is a spinoff from bug", "ant builds using an external jvm with input tasks cannot request input. please ensure that an inputhandler is being provided for external ant tasks currently the ant will request the input from stdin which is not possible on the current console rather than popping up an appropriate dialog as it would when run from within the eclipse vm.", "workbench startup is throwing dialog rather than logging to .log took new startedt on old workspace got annternal error dialog executable extension definition for class not found. hit ok t came up ok nothingn log" ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [4, 4] - Notebooks
- Google Colab
- Kaggle