---
library_name: sentence-transformers
pipeline_tag: sentence-similarity
tags:
- sentence-transformers
- sentence-similarity
- feature-extraction
- generated_from_trainer
- dataset_size:1999
- loss:MultipleNegativesRankingLoss
widget:
- source_sentence: Which area code corresponds to the city listed as Richmond in the
context, and in which state is Richmond located?
sentences:
- ple, suppose an organization has two network interfaces. suppose both interfaces
are assigned to a single bandwidth policy. the virtual interface for the organization
will represent both network interfaces
- field, sl1 automatically calculates the width of the text field l height. the
height of the text field, including the label text, in pixels. if you do not supply
a value in this
- ) [1] => array ( [state] => va [city] => richmond [area_code] => 804 ) [2]
=> array ( [state] => dc
- source_sentence: What connection details should you set in the `connect()` function
of your `main.go` file after running the command `go mod tidy`?
sentences:
- run go mod tidy go mod tidy set your connection details earlier you looked
up your connection details. set them in main.go in the connect() function
- 7. to leave an annotation for a status policy or rule, click the annotation icon
( ) next to the rule or tab. type your annotation text in the annotation window
and click [save]. the annotation icon now displays as solid blue, while empty
annotation icons contain a plus sign
- the destination takes as its value the path where the le or directory is mounted
in the container. can be speci ed as destination , dst , or target
- source_sentence: What is the total memory limit for the steprunner in the xlqueue,
and how much more memory is allocated compared to the standard steprunner?
sentences:
- noise reduction is the percentage of alerts that did not become events in sl1.
a mature, tuned sl1 system will have a high noise reduction percentage, as sl1
is sharing only the events that matter to your environment
- settings > thresholds)
- source_sentence: Which statement is true regarding the configuration of SL1 systems
to use Powerflow for syncing with third-party applications like ServiceNow or
Cherwell?
sentences:
- l you can configure one or more sl1 systems to use powerflow to sync with a single
instance of a third-party application like servicenow or cherwell. you cannot
configure one sl1 system to use powerflow to sync with multiple instances of a
third-party application like servicenow or cherwell. the relationship between
sl1 and the third-party application can be either one-to-one or many-to-one, but
- l apply_64gb_override and verify_64gb_override the following command is an example
of a pfctl command to apply the 32 gb override
- ( provisioning a customer (provision_customer.php) 229 [0] => array ( ['start_ip']
=> ['end_ip'] =>
---
# SentenceTransformer
This is a [sentence-transformers](https://www.SBERT.net) model trained. 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
- **Maximum Sequence Length:** 512 tokens
- **Output Dimensionality:** 384 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': 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("david-scilo/test_upload_10_17_2024")
# Run inference
sentences = [
'Which statement is true regarding the configuration of SL1 systems to use Powerflow for syncing with third-party applications like ServiceNow or Cherwell?',
'l you can configure one or more sl1 systems to use powerflow to sync with a single instance of a third-party application like servicenow or cherwell. you cannot configure one sl1 system to use powerflow to sync with multiple instances of a third-party application like servicenow or cherwell. the relationship between sl1 and the third-party application can be either one-to-one or many-to-one, but',
"( provisioning a customer (provision_customer.php) 229 [0] => array ( ['start_ip'] => ['end_ip'] =>",
]
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
#### Unnamed Dataset
* Size: 1,999 training samples
* Columns: sentence_0
and sentence_1
* Approximate statistics based on the first 1000 samples:
| | sentence_0 | sentence_1 |
|:--------|:------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------|
| type | string | string |
| details |
Which software ignores the authentication method field for users who are authenticated with single sign-on (SSO) in the context of EM7?
| note: for users who are authenticated with single sign on (sso), em7 ignores the authentication method field. for details on configuring sl1 to use single sign on (sso) authentication, see the manual on using using single sign on
|
| Which command would you use to enable the ol8_appstream repository for package management on a Linux system using DNF?
| sudo dnf install yum-utils sudo dnf config-manager --enable ol8_baseos_latest sudo dnf config-manager --enable ol8_appstream
|
| Which process should you consider using if you encounter environmental problems during the automated upgrade scripts for AWS environments?
| the automated upgrade scripts will likely work for aws environments, but due to potential environmental differences between chosen amis, there might be other package updates or requirements. if you encounter environmental problems, you should consider using the back up, re-install, and restore process instead
|
* 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`: 10
- `per_device_eval_batch_size`: 10
- `num_train_epochs`: 1
- `multi_dataset_batch_sampler`: round_robin
#### All Hyperparameters