---
tags:
- sentence-transformers
- sentence-similarity
- feature-extraction
- generated_from_trainer
- dataset_size:1022
- loss:MultipleNegativesRankingLoss
base_model: sentence-transformers/all-MiniLM-L6-v2
widget:
- source_sentence: 토목섬유튜브로 보강한 철도 교대 접속부 구조의 장기안정성 평가
sentences:
- A Study on Mechanism of Fire Spread between Rooms
- Assessement of Long Term Stability of Railway Bridge Abutment Using Geosynthetics
Tube
- Analysis on Reliability for the Storm Sewer considering Sedimentation
- source_sentence: 진동측정에 따른 한옥 건축물의 고유주기
sentences:
- R&D Capability Analysis of Domestic Fire-fighting Safety and Rescue Research Program
- Arrangements of Rail Accident Command Structure, Roles and Responsibilities for
Infrastructure Manager and Train Undertakings
- Fundamental Period Formulas for The Korean-style House Using Ambient Vibration
- source_sentence: 산악트램 객실 쾌적성 향상을 위한 저진동 랙앤피니언 추진장치 개발
sentences:
- Development of a Low Vibration Rack&Pinion Traction System for More Comfortable
Cabin on Mountain Tram
- Risk Assessment of Heavy Snowfall Using PROMETHEE - The Case of Gangwon Province
-
- Comparison of Selection Methods for Proxy Variables on Flood Vulnerability Analysis
in South Korea and Thailand
- source_sentence: 옥상녹화의 수문학적 성능평가에 따른 최적 토양층 깊이 산정 연구
sentences:
- Field Measurements for Subgrade Compaction Using MEMS Accelerometers
- Study for Estimation of Optimal Soil Layer Depth according to the Evaluation of
Green Roof Hydrological Performance
- Toxicity Factor Analysis through the Exposure Experiment of the Combustion Products
on Wood-Based Materials
- source_sentence: 합성 나무류의 연소특성에 관한 연구
sentences:
- Study on Combustion Characteristics of Composite Wood Flow
- Induction Waterway Review by Debris Flow's Characteristics
- Slope Stability Analysis on Unsaturated Soil by Probable Rainfall Intensity
pipeline_tag: sentence-similarity
library_name: sentence-transformers
---
# SentenceTransformer based on sentence-transformers/all-MiniLM-L6-v2
This is a [sentence-transformers](https://www.SBERT.net) model finetuned from [sentence-transformers/all-MiniLM-L6-v2](https://huggingface.co/sentence-transformers/all-MiniLM-L6-v2). 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:** [sentence-transformers/all-MiniLM-L6-v2](https://huggingface.co/sentence-transformers/all-MiniLM-L6-v2)
- **Maximum Sequence Length:** 256 tokens
- **Output Dimensionality:** 384 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': 256, 'do_lower_case': False}) with Transformer model: BertModel
(1): Pooling({'word_embedding_dimension': 384, 'pooling_mode_cls_token': False, 'pooling_mode_mean_tokens': True, '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 = [
'합성 나무류의 연소특성에 관한 연구',
'Study on Combustion Characteristics of Composite Wood Flow',
'Slope Stability Analysis on Unsaturated Soil by Probable Rainfall Intensity',
]
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,022 training samples
* Columns: sentence_0 and sentence_1
* Approximate statistics based on the first 1000 samples:
| | sentence_0 | sentence_1 |
|:--------|:-----------------------------------------------------------------------------------|:----------------------------------------------------------------------------------|
| type | string | string |
| details |
재해지도 활용성 증대를 위한 빅데이터 구축 및 적용 방안 | Building and Applying Scheme of Big Data for Enhancement of Hazard Map Utilization |
| 강우의 간헐성이 크리깅에 미치는 영향 평가 | Evaluation of Rainfall Intermittency on the Simple Kriging |
| 토석류 발생지역의 지형적 특성을 고려한 위험도 분석 | Risk Analysis Considering the Topography Characteristics of Debris Flow Occurrence Area |
* 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
- `multi_dataset_batch_sampler`: round_robin
#### All Hyperparameters