---
tags:
- sentence-transformers
- sentence-similarity
- feature-extraction
- generated_from_trainer
- dataset_size:8622
- loss:MultipleNegativesRankingLoss
base_model: BAAI/bge-base-en-v1.5
widget:
- source_sentence: What is the purpose of geotechnical exploration at the PSEG Site?
sentences:
- 'The purposes of the PSEG Site geotechnical exploration and testing were to: -
Obtain new data to meet current NRC and vendor design control document Tier 1
site characteristics requirements as appropriate for an ESPA - Confirm and demonstrate
the applicability of the existing field data from the previous site exploration
work for the existing nuclear plants'
- Geotechnical evaluations at the PSEG Site included assessing soil stratigraphy
and groundwater conditions to identify potential risks and the suitability of
the site for construction, focusing on the mechanical properties of subsurface
materials.
- Table 3.8-3 Illinois Inventory of Archaeological Sites Entries within 6-miles
of DNPS (Sheet 2 of 28) lists various archaeological sites and their statuses
relevant to the regulatory considerations for the plant.
- source_sentence: The analysis of the identified nuclides can greatly aid in determining
the safety measures necessary for nuclear facilities.
sentences:
- IDENTIFIED NUCLIDES
- 'Peak Analysis Performed on: 5/29/2019 6:14:38 AM'
- 10 CFR Part 50, Appendix H, “Reactor Vessel Material Surveillance Program Requirements,”
requires that peak neutron fluence at the end of the design life of the vessel
will not exceed 1.0 x 10¹⁷ n/cm² (E > 1.0 MeV), or that reactor vessel beltline
materials be monitored by a surveillance program.
- source_sentence: The NRC assessment includes evaluations to determine the impact
of specific events on safety measures.
sentences:
- The staff noted that the licensee performed a root cause evaluation with an extent
of condition and extent of cause evaluation following the May 25 scram.
- In assessing operational events, it is crucial to differentiate between various
types of occurrences to ensure comprehensive safety evaluations encompass all
relevant aspects, including human factors and procedural adherence.
- The reactor trip breaker indicating lights provide crucial information on the
status of the reactor trip system during an Anticipated Transient Without Scram
(ATWS).
- source_sentence: Each reactor building isolation valve must remain effective during
various operational modes.
sentences:
- The RHRSW System functions to remove heat from the RHR System and Emergency Equipment
Cooling Water (EECW) System components by pumping water from Wheeler Reservoir
through the Residual Heat Removal (RHR) heat exchangers and Emergency Equipment
Cooling Water (EECW) System components and discharges back to Wheeler Reservoir.
- Each reactor building isolation valve shall be OPERABLE.
- Separate Condition entry is allowed for each penetration flow path.
- source_sentence: What is the purpose of the Rapid Borate Stop Valve in Reactor Control?
sentences:
- CLOSE the Air Supply Isolation Valve, 12CV160 A/S, AIR SUPPLY FOR 12CV160.
- The NRC staff is reviewing Westinghouse’s license renewal application and preparing
an environmental impact statement (EIS) in accordance with the National Environmental
Policy Act of 1969.
- Locates and discusses opening 1CV175, Rapid Borate Stop Valve by disengaging clutch
and rotating handwheel (counterclockwise).
pipeline_tag: sentence-similarity
library_name: sentence-transformers
metrics:
- cosine_accuracy
model-index:
- name: SentenceTransformer based on BAAI/bge-base-en-v1.5
results:
- task:
type: triplet
name: Triplet
dataset:
name: validation
type: validation
metrics:
- type: cosine_accuracy
value: 0.9397031664848328
name: Cosine Accuracy
- type: cosine_accuracy
value: 0.9387755393981934
name: Cosine Accuracy
---
# SentenceTransformer based on BAAI/bge-base-en-v1.5

This is a [sentence-transformers](https://www.SBERT.net) model finetuned from [BAAI/bge-base-en-v1.5](https://huggingface.co/BAAI/bge-base-en-v1.5). It maps sentences & paragraphs to a 768-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-base-en-v1.5](https://huggingface.co/BAAI/bge-base-en-v1.5)
- **Maximum Sequence Length:** 512 tokens
- **Output Dimensionality:** 768 dimensions
- **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': 768, '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 = [
'What is the purpose of the Rapid Borate Stop Valve in Reactor Control?',
'Locates and discusses opening 1CV175, Rapid Borate Stop Valve by disengaging clutch and rotating handwheel (counterclockwise).',
'CLOSE the Air Supply Isolation Valve, 12CV160 A/S, AIR SUPPLY FOR 12CV160.',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 768]
# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities.shape)
# [3, 3]
```
## Evaluation
### Metrics
#### Triplet
* Dataset: `validation`
* Evaluated with [TripletEvaluator
](https://sbert.net/docs/package_reference/sentence_transformer/evaluation.html#sentence_transformers.evaluation.TripletEvaluator)
| Metric | Value |
|:--------------------|:-----------|
| **cosine_accuracy** | **0.9397** |
#### Triplet
* Dataset: `validation`
* Evaluated with [TripletEvaluator
](https://sbert.net/docs/package_reference/sentence_transformer/evaluation.html#sentence_transformers.evaluation.TripletEvaluator)
| Metric | Value |
|:--------------------|:-----------|
| **cosine_accuracy** | **0.9388** |
## Training Details
### Training Dataset
#### Unnamed Dataset
* Size: 8,622 training samples
* Columns: sentence_0
, sentence_1
, and sentence_2
* Approximate statistics based on the first 1000 samples:
| | sentence_0 | sentence_1 | sentence_2 |
|:--------|:----------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------|
| type | string | string | string |
| details |
What is the concentration of H-3 in µCi/ml?
| H-3 has a concentration of 8.5E-10 µCi/ml.
| The isotope Rb-89 has a release rate of 4.7E-05 Ci/yr.
|
| gamma calibration procedures
| Gamma Calibration: GM detectors positioned perpendicular to source for M-44-9 in which the front of probe faces source.
| Effective calibration of GM detectors is crucial for accurate measurement. Procedures often involve using a consistent radiation source and monitoring the response of various detector models across multiple energy levels.
|
| What is the function of the TAP-A program in thermal analysis?
| The TAP-A program is applicable to both “transient and steady-state heat transfer in multidimensional systems having arbitrary geometric configurations, boundary conditions, initial conditions, and physical properties.
| The wall panel model for the crane wall is 48 ft long with 8 axial stations each 6 ft in length.
|
* 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
- `eval_strategy`: steps
- `per_device_train_batch_size`: 32
- `per_device_eval_batch_size`: 32
- `num_train_epochs`: 5
- `fp16`: True
- `multi_dataset_batch_sampler`: round_robin
#### All Hyperparameters