---
base_model: google-bert/bert-base-uncased
datasets: []
language: []
library_name: sentence-transformers
pipeline_tag: sentence-similarity
tags:
- sentence-transformers
- sentence-similarity
- feature-extraction
- generated_from_trainer
- dataset_size:100000
- loss:DenoisingAutoEncoderLoss
widget:
- source_sentence: 1109/icnsurv
sentences:
- 1109/icnsurv
- A cost function is needed to assign a performance metric value to a particular
test run
- Aircraft OperationsFuture aircraft will sense, control, communicate, and navigate
with increasing levels of autonomy, enabling new concepts in air traffic management
- source_sentence: Table 1 of and to well as the median taxi from STBO KDFW
sentences:
- Table 1 Metrics of accuracy, median and MAD of residuals as compared to STBO predictions,
as well as the median taxi time from STBO for KDFW and KCLT airports
- ', IEEE, 2005, pp'
- 'RESULTS: EFFICIENCY ANALYSIS'
- source_sentence: gate time to known
sentences:
- 3FIVE INPUT VARIABLESParameterDescriptionHead windHead WindGust windGust WindCeiling_ftForecast
CeilingVis_ftForecast VisibilityAct_Land_Wgt Actual Landing Weightfive parameters
listed in
- Instead, gate departure time was assumed to be known
- The proof is very similar to that presented for the NP-completeness of ASP, and
is based on reduction from PLANAR-P3( 6), hence we simply provide the main idea
of the proof
- source_sentence: ', Hough" Pattern Recognition, Vol'
sentences:
- 9 Station Keeping scores
- "\t\tAGARD CD-410"
- ', "Generalizing the Hough Transform to Detect Arbitrary Shapes," Pattern Recognition,
Vol'
- source_sentence: Airlines often ferry from locations fuel prices
sentences:
- Scheduler Inputs and Order of ConsiderationThe surface model provides EOBT, UOBT,
UTOT and other detailed flight-specific modeled input
- "\t\t\tKeithWichman"
- Airlines often ferry fuel from locations where fuel prices are cheapest
---
# SentenceTransformer based on google-bert/bert-base-uncased
This is a [sentence-transformers](https://www.SBERT.net) model finetuned from [google-bert/bert-base-uncased](https://huggingface.co/google-bert/bert-base-uncased). 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:** [google-bert/bert-base-uncased](https://huggingface.co/google-bert/bert-base-uncased)
- **Maximum Sequence Length:** 512 tokens
- **Output Dimensionality:** 768 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': 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})
)
```
## 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("kathleenge/tsdae-bert-base-uncased")
# Run inference
sentences = [
'Airlines often ferry from locations fuel prices',
'Airlines often ferry fuel from locations where fuel prices are cheapest',
'\t\t\tKeithWichman',
]
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]
```
## Training Details
### Training Dataset
#### Unnamed Dataset
* Size: 100,000 training samples
* Columns: sentence_0
and sentence_1
* Approximate statistics based on the first 1000 samples:
| | sentence_0 | sentence_1 |
|:--------|:-----------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------|
| type | string | string |
| details |
selected and reviewed for value current on metroplex
| The literature was selected and reviewed for its value to the current research on metroplex operations
|
| and
| , and Dulchinos, V
|
| ,
| , Atkins, S
|
* Loss: [DenoisingAutoEncoderLoss
](https://sbert.net/docs/package_reference/sentence_transformer/losses.html#denoisingautoencoderloss)
### Training Hyperparameters
#### Non-Default Hyperparameters
- `num_train_epochs`: 1
- `multi_dataset_batch_sampler`: round_robin
#### All Hyperparameters