---
tags:
- sentence-transformers
- sentence-similarity
- feature-extraction
- generated_from_trainer
- dataset_size:10481
- loss:MultipleNegativesRankingLoss
base_model: abhinand/MedEmbed-small-v0.1
widget:
- source_sentence: In the chest, the trachea divides as it enters the lungs to form
the right and left what?
sentences:
- Adulthood is divided into the stages of early, middle, and late adulthood.
- Motor vehicles account for almost half of fossil fuel use. Most vehicles run on
gasoline, which comes from petroleum.
- In the chest, the trachea divides as it enters the lungs to form the right and
left bronchi . The bronchi contain cartilage, which prevents them from collapsing.
Mucus in the bronchi traps any remaining particles in air. Tiny, hair-like structures
called cilia line the bronchi and sweep the particles and mucus toward the throat
so they can be expelled from the body.
- source_sentence: What atmospheric layer lies above the highest altitude an airplane
can go and below the lowest altitude a spacecraft can orbit?
sentences:
- Renal plasma flow equals the blood flow per minute times the hematocrit. If a
person has a hematocrit of 45, then the renal plasma flow is 55 percent. 1050*0.55
= 578 mL plasma/min.
- Not so fast. The mesosphere is the least known layer of the atmosphere. The mesosphere
lies above the highest altitude an airplane can go. It lies below the lowest altitude
a spacecraft can orbit. Maybe that's just as well. If you were in the mesosphere
without a space suit, your blood would boil! This is because the pressure is so
low that liquids would boil at normal body temperature.
- 'Cell division is just one of several stages that a cell goes through during its
lifetime. The cell cycle is a repeating series of events that include growth,
DNA synthesis, and cell division. The cell cycle in prokaryotes is quite simple:
the cell grows, its DNA replicates, and the cell divides. In eukaryotes, the cell
cycle is more complicated.'
- source_sentence: What distinctive dna shape forms when the two nucleotide chains
wrap around the same axis?
sentences:
- Simple Model of DNA. In this simple model of DNA, each line represents a nucleotide
chain. The double helix shape forms when the two chains wrap around the same axis.
- Most biochemical molecules are macromolecules, meaning that they are very large.
Some contain thousands of monomer molecules.
- The continental slope lies between the continental shelf and the abyssal plain.
It has a steep slope with a sharp drop to the deep ocean floor.
- source_sentence: Einstein’s equation helps scientists understand what happens in
nuclear reactions and why they produce so much what?
sentences:
- Einstein’s equation helps scientists understand what happens in nuclear reactions
and why they produce so much energy. When the nucleus of a radioisotope undergoes
fission or fusion in a nuclear reaction, it loses a tiny amount of mass. What
happens to the lost mass? It isn’t really lost at all. It is converted to energy.
How much energy? E = mc 2 . The change in mass is tiny, but it results in a great
deal of energy.
- Water is the main ingredient of many solutions. A solution is a mixture of two
or more substances that has the same composition throughout. Some solutions are
acids and some are bases. To understand acids and bases, you need to know more
about pure water. In pure water (such as distilled water), a tiny fraction of
water molecules naturally breaks down to form ions. An ion is an electrically
charged atom or molecule. The breakdown of water is represented by the chemical
equation.
- 'The muscular system consists of all the muscles of the body. Muscles are organs
composed mainly of muscle cells, which are also called muscle fibers . Each muscle
fiber is a very long, thin cell that can do something no other cell can do. It
can contract, or shorten. Muscle contractions are responsible for virtually all
the movements of the body, both inside and out. There are three types of muscle
tissues in the human body: cardiac, smooth, and skeletal muscle tissues. They
are shown in Figure below and described below.'
- source_sentence: Microfilaments are mostly concentrated just beneath what?
sentences:
- Vertebrates have a closed circulatory system with a heart. Blood is completely
contained within blood vessels that carry the blood throughout the body. The heart
is divided into chambers that work together to pump blood. There are between two
and four chambers in the vertebrate heart. With more chambers, there is more oxygen
in the blood and more vigorous pumping action.
- Weight measures the force of gravity pulling on an object. The SI unit for weight
is the Newton (N).
- Microfilaments , shown as (b) in Figure below , are made of two thin actin chains
that are twisted around one another. Microfilaments are mostly concentrated just
beneath the cell membrane, where they support the cell and help the cell keep
its shape. Microfilaments form cytoplasmatic extentions, such as pseudopodia and
microvilli , which allow certain cells to move. The actin of the microfilaments
interacts with the protein myosin to cause contraction in muscle cells. Microfilaments
are found in almost every cell, and are numerous in muscle cells and in cells
that move by changing shape, such as phagocytes (white blood cells that search
the body for bacteria and other invaders).
datasets:
- flaviawallen/MNLP_M3_rag_embedding_training
pipeline_tag: sentence-similarity
library_name: sentence-transformers
---
# SentenceTransformer based on abhinand/MedEmbed-small-v0.1
This is a [sentence-transformers](https://www.SBERT.net) model finetuned from [abhinand/MedEmbed-small-v0.1](https://huggingface.co/abhinand/MedEmbed-small-v0.1) on the [train](https://huggingface.co/datasets/flaviawallen/MNLP_M3_rag_embedding_training) dataset. It maps sentences & paragraphs to a 384-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:** [abhinand/MedEmbed-small-v0.1](https://huggingface.co/abhinand/MedEmbed-small-v0.1)
- **Maximum Sequence Length:** 512 tokens
- **Output Dimensionality:** 384 dimensions
- **Similarity Function:** Cosine Similarity
- **Training Dataset:**
- [train](https://huggingface.co/datasets/flaviawallen/MNLP_M3_rag_embedding_training)
### 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': False}) with Transformer model: BertModel
(1): Pooling({'word_embedding_dimension': 384, '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("sentence_transformers_model_id")
# Run inference
sentences = [
'Microfilaments are mostly concentrated just beneath what?',
'Microfilaments , shown as (b) in Figure below , are made of two thin actin chains that are twisted around one another. Microfilaments are mostly concentrated just beneath the cell membrane, where they support the cell and help the cell keep its shape. Microfilaments form cytoplasmatic extentions, such as pseudopodia and microvilli , which allow certain cells to move. The actin of the microfilaments interacts with the protein myosin to cause contraction in muscle cells. Microfilaments are found in almost every cell, and are numerous in muscle cells and in cells that move by changing shape, such as phagocytes (white blood cells that search the body for bacteria and other invaders).',
'Weight measures the force of gravity pulling on an object. The SI unit for weight is the Newton (N).',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 384]
# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities.shape)
# [3, 3]
```
## Training Details
### Training Dataset
#### train
* Dataset: [train](https://huggingface.co/datasets/flaviawallen/MNLP_M3_rag_embedding_training) at [0b344ac](https://huggingface.co/datasets/flaviawallen/MNLP_M3_rag_embedding_training/tree/0b344ac3e3513dac08101975f56504971505c425)
* Size: 10,481 training samples
* Columns: anchor
and positive
* Approximate statistics based on the first 1000 samples:
| | anchor | positive |
|:--------|:----------------------------------------------------------------------------------|:------------------------------------------------------------------------------------|
| type | string | string |
| details |
What type of organism is commonly used in preparation of foods such as cheese and yogurt?
| Mesophiles grow best in moderate temperature, typically between 25°C and 40°C (77°F and 104°F). Mesophiles are often found living in or on the bodies of humans or other animals. The optimal growth temperature of many pathogenic mesophiles is 37°C (98°F), the normal human body temperature. Mesophilic organisms have important uses in food preparation, including cheese, yogurt, beer and wine.
|
| What phenomenon makes global winds blow northeast to southwest or the reverse in the northern hemisphere and northwest to southeast or the reverse in the southern hemisphere?
| Without Coriolis Effect the global winds would blow north to south or south to north. But Coriolis makes them blow northeast to southwest or the reverse in the Northern Hemisphere. The winds blow northwest to southeast or the reverse in the southern hemisphere.
|
| Changes from a less-ordered state to a more-ordered state (such as a liquid to a solid) are always what?
| Summary Changes of state are examples of phase changes, or phase transitions. All phase changes are accompanied by changes in the energy of a system. Changes from a more-ordered state to a less-ordered state (such as a liquid to a gas) areendothermic. Changes from a less-ordered state to a more-ordered state (such as a liquid to a solid) are always exothermic. The conversion of a solid to a liquid is called fusion (or melting). The energy required to melt 1 mol of a substance is its enthalpy of fusion (ΔHfus). The energy change required to vaporize 1 mol of a substance is the enthalpy of vaporization (ΔHvap). The direct conversion of a solid to a gas is sublimation. The amount of energy needed to sublime 1 mol of a substance is its enthalpy of sublimation (ΔHsub) and is the sum of the enthalpies of fusion and vaporization. Plots of the temperature of a substance versus heat added or versus heating time at a constant rate of heating are calledheating curves. Heating curves relate temper...
|
* Loss: [MultipleNegativesRankingLoss
](https://sbert.net/docs/package_reference/sentence_transformer/losses.html#multiplenegativesrankingloss) with these parameters:
```json
{
"scale": 20.0,
"similarity_fct": "cos_sim"
}
```
### Training Hyperparameters
#### Non-Default Hyperparameters
- `per_device_train_batch_size`: 16
- `per_device_eval_batch_size`: 16
- `num_train_epochs`: 1
- `warmup_ratio`: 0.1
- `batch_sampler`: no_duplicates
#### All Hyperparameters