---
tags:
- sentence-transformers
- sentence-similarity
- feature-extraction
- dense
- generated_from_trainer
- dataset_size:21927
- loss:CosineSimilarityLoss
base_model: sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2
widget:
- source_sentence: nextjs
sentences:
- Familiarity with project management software (e.g., JIRA, Trello).
- ', contributing to group projects with an understanding of Git workflows'
- Ưu tiên ứng viên có kinh nghiệm với TypeScript, Next.js hoặc các công cụ tối ưu
hóa hiệu suất Front-end.
- source_sentence: System analysis and design
sentences:
- Experience with asynchronous programming, multithreaded programming.
- A strong sense of responsibility and resilience under pressure.
- Kỹ năng giải quyết vấn đề và xử lý tình huống nhanh chóng.
- source_sentence: Có thể phối hợp với đồng nghiệp để xử lý các nhiệm vụ
sentences:
- Có kiến thức tốt về React.js, JavaScript/TypeScript, HTML/CSS.
- An ability to prepare and interpret flowcharts, schedules and step-by-step action
plans
- Solid Experience with Java and Spring Boot
- source_sentence: Giao tiếp và tạo lập mối quan hệ
sentences:
- Có khả năng sáng tạo, khả năng đánh giá, phân tích tốt.
- Có kinh nghiệm liên quan đến Machine Learning, Deep Learning, NLP, LLM,....
- Làm việc nhóm hiệu quả, giải quyết vấn đề linh hoạt
- source_sentence: Proficient in utilizing various Microsoft Office tools
sentences:
- ', contributing to group projects with an understanding of Git workflows'
- Proficient in English (listening, speaking, reading, and writing).
- Hiểu biết về CI/CD là điểm cộng, Firebase (FCM / Cloud Storage / Realtime Database).
pipeline_tag: sentence-similarity
library_name: sentence-transformers
---
# SentenceTransformer based on sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2
This is a [sentence-transformers](https://www.SBERT.net) model finetuned from [sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2](https://huggingface.co/sentence-transformers/paraphrase-multilingual-MiniLM-L12-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/paraphrase-multilingual-MiniLM-L12-v2](https://huggingface.co/sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2)
- **Maximum Sequence Length:** 128 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': 128, 'do_lower_case': False, 'architecture': '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})
)
```
## 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("lengocquangLAB/fine-tuned-skill-jd-embed")
# Run inference
sentences = [
'Proficient in utilizing various Microsoft Office tools',
'Proficient in English (listening, speaking, reading, and writing).',
', contributing to group projects with an understanding of Git workflows',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 384]
# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities)
# tensor([[ 1.0000, -0.0018, -0.0431],
# [-0.0018, 1.0000, 0.0958],
# [-0.0431, 0.0958, 1.0000]])
```
## Training Details
### Training Dataset
#### Unnamed Dataset
* Size: 21,927 training samples
* Columns: sentence_0, sentence_1, and label
* Approximate statistics based on the first 1000 samples:
| | sentence_0 | sentence_1 | label |
|:--------|:-----------------------------------------------------------------------------------|:----------------------------------------------------------------------------------|:---------------------------------------------------------------|
| type | string | string | float |
| details |
Good presentation skills | A strong sense of responsibility and resilience under pressure. | 0.0 |
| reactjs | Biết cách quản lý state với React Hooks, Context API. | 1.0 |
| Thành thạo Office | Thành thạo các công cụ văn phòng (Google Sheet / Excel), ưu tiên biết sử dụng các công cụ hỗ trợ tăng năng suất như Chat GPT | 1.0 |
* Loss: [CosineSimilarityLoss](https://sbert.net/docs/package_reference/sentence_transformer/losses.html#cosinesimilarityloss) with these parameters:
```json
{
"loss_fct": "torch.nn.modules.loss.MSELoss"
}
```
### Training Hyperparameters
#### Non-Default Hyperparameters
- `per_device_train_batch_size`: 64
- `per_device_eval_batch_size`: 64
- `num_train_epochs`: 5
- `multi_dataset_batch_sampler`: round_robin
#### All Hyperparameters