---
base_model: BAAI/bge-large-en-v1.5
library_name: sentence-transformers
pipeline_tag: sentence-similarity
tags:
- sentence-transformers
- sentence-similarity
- feature-extraction
- generated_from_trainer
- dataset_size:4370
- loss:CosineSimilarityLoss
widget:
- source_sentence: ' The misconception lies in incorrectly aligning decimal points
during addition, leading to an improper sum.'
sentences:
- Converts a fraction to a percentage by placing a decimal point between the numerator
and denominator
- When two digits sum to 10 or more during an addition problem, does not add one
to the preceding digit
- Confuses square rooting and halving the number
- source_sentence: ' The misconception was misunderstanding the direction of translation,
thinking the movement was upwards or to the right instead of left and down.'
sentences:
- Adds or subtracts from numerator first when solving an equation with a fraction
- When asked for the mean of a list of data, gives the mode
- 'Counts the squares rather than the diagonals when reflecting in y=x or y=-x '
- source_sentence: ' The misconception lies in the incorrect application of the order
of operations (BIDMAS/PEMDAS), specifically the grouping of operations without
properly respecting the hierarchy of division and addition.'
sentences:
- Believes multiplying two negatives gives a negative answer
- Carries out operations from left to right regardless of priority order
- Includes the x variable when giving the equation of a horizontal line
- source_sentence: ' The misconception is that adjacent angles on a straight line
are not necessarily supplementary and can sum to any value less than \( 180^{\circ}
\).'
sentences:
- Believes angles on a straight line add to 100 degrees
- Thinks only labelled dimensions need to be included when calculating the perimeter
- 'Cannot reflect shape when line of symmetry is diagonal '
- source_sentence: ' The misconception is adding the absolute values without considering
the sign change, leading to an incorrect sum.'
sentences:
- Counts on in the wrong direction on a number line
- Simplifies a fraction by adding or subtracting the same amount from the numerator and
denominator
- Believes multiplying two negatives gives a negative answer
---
# SentenceTransformer based on BAAI/bge-large-en-v1.5
This is a [sentence-transformers](https://www.SBERT.net) model finetuned from [BAAI/bge-large-en-v1.5](https://huggingface.co/BAAI/bge-large-en-v1.5). It maps sentences & paragraphs to a 1024-dimensional dense vector space and can be used for semantic textual similarity, semantic search, paraphrase mining, text classification, clustering, and more.
## Model Details
### Model Description
- **Model Type:** Sentence Transformer
- **Base model:** [BAAI/bge-large-en-v1.5](https://huggingface.co/BAAI/bge-large-en-v1.5)
- **Maximum Sequence Length:** 512 tokens
- **Output Dimensionality:** 1024 tokens
- **Similarity Function:** Cosine Similarity
### Model Sources
- **Documentation:** [Sentence Transformers Documentation](https://sbert.net)
- **Repository:** [Sentence Transformers on GitHub](https://github.com/UKPLab/sentence-transformers)
- **Hugging Face:** [Sentence Transformers on Hugging Face](https://huggingface.co/models?library=sentence-transformers)
### Full Model Architecture
```
SentenceTransformer(
(0): Transformer({'max_seq_length': 512, 'do_lower_case': True}) with Transformer model: BertModel
(1): Pooling({'word_embedding_dimension': 1024, 'pooling_mode_cls_token': True, 'pooling_mode_mean_tokens': False, 'pooling_mode_max_tokens': False, 'pooling_mode_mean_sqrt_len_tokens': False, 'pooling_mode_weightedmean_tokens': False, 'pooling_mode_lasttoken': False, 'include_prompt': True})
(2): Normalize()
)
```
## Usage
### Direct Usage (Sentence Transformers)
First install the Sentence Transformers library:
```bash
pip install -U sentence-transformers
```
Then you can load this model and run inference.
```python
from sentence_transformers import SentenceTransformer
# Download from the 🤗 Hub
model = SentenceTransformer("VaggP/fine-tuned-bge-large")
# Run inference
sentences = [
' The misconception is adding the absolute values without considering the sign change, leading to an incorrect sum.',
'Counts on in the wrong direction on a number line',
'Simplifies a fraction by adding or subtracting the same amount from the numerator and denominator',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 1024]
# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities.shape)
# [3, 3]
```
## Training Details
### Training Dataset
#### Unnamed Dataset
* Size: 4,370 training samples
* Columns: sentence_0
, sentence_1
, and label
* Approximate statistics based on the first 1000 samples:
| | sentence_0 | sentence_1 | label |
|:--------|:-----------------------------------------------------------------------------------|:----------------------------------------------------------------------------------|:--------------------------------------------------------------|
| type | string | string | float |
| details |
The misconception lies in confusing the tangent ratio (opposite/adjacent) with the sine ratio (opposite/hypotenuse).
| Uses tan when sin is required
| 1.0
|
| The misconception lies in not properly aligning decimal places during addition.
| When adding decimals with a different number of decimal places, lines up the digits incorrectly
| 1.0
|
| The misconception was in misunderstanding the relationship between the area of a square and its side length, incorrectly assuming the side length is the square root of the area squared.
| Confuses perimeter and area
| 1.0
|
* Loss: [CosineSimilarityLoss
](https://sbert.net/docs/package_reference/sentence_transformer/losses.html#cosinesimilarityloss) with these parameters:
```json
{
"loss_fct": "torch.nn.modules.loss.MSELoss"
}
```
### Training Hyperparameters
#### Non-Default Hyperparameters
- `per_device_train_batch_size`: 16
- `per_device_eval_batch_size`: 16
- `num_train_epochs`: 2
- `multi_dataset_batch_sampler`: round_robin
#### All Hyperparameters