---
base_model: strongpear/M3-retriever-Vi-Text2SQL
datasets: []
language: []
library_name: sentence-transformers
pipeline_tag: sentence-similarity
tags:
- sentence-transformers
- sentence-similarity
- feature-extraction
- generated_from_trainer
- dataset_size:1312839
- loss:TripletLoss
widget:
- source_sentence: Đã bao nhiêu giờ trôi qua kể từ khi bệnh nhân 006-172277 nhập viện?
sentences:
- CREATE TABLE chi phí(chi phí number,duy nhất text,bệnh nhânhệ thống sức khỏelưu
trúid number,loại sự kiện text,id sự kiện number,thời gian tính phí time,chi phí
number)
- CREATE TABLE chuyến bay fare(flight id int,fare id int)
- CREATE TABLE disease(uniquepid text, Patienthealthsystemstayid number, bệnh nhân
đơn vị lưu trú number, giới tính text, tuổi text, dân tộc text, bệnh viện number,
khu bệnh number, chiều cao nhập viện number, cân nặng nhập viện number, cân nặng
xuất viện number, thời gian nhập viện time, nguồn nhập viện text, thời gian xuất
viện time, trạng thái xuất viện text)
- source_sentence: tôi cần một chuyến bay từ NEWARK đến LOS ANGELES khởi hành vào
tối mai
sentences:
- CREATE TABLE time zone(time zone code text,time zone name text,hours from gmt
int)
- CREATE TABLE city(city code varchar,city name varchar,state code varchar,tên quốc
gia varchar,múi thời gian varchar);
- CREATE TABLE sân bay(airport code varchar,airport name text,airport location text,state
code varchar,country name varchar,time zone code varchar,minimum connect time
int);
- source_sentence: có bao nhiêu giám đốc từ năm 2000 đến năm 2009?
sentences:
- CREATE TABLE Bài viết(Id number,PostTypeId number,AcceptedAnswerId number,ParentId
number,CreationDate time,DeletionDate time,Score number,ViewCount number,Body
text,OwnerUserId number,OwnerDisplayName text,LastEditorUserId number,LastEditorDisplayName
text,LastEditDate time,LastActivityDate time,Tiêu đề text,Thẻ text,Đếm trả lời
number,Đếm bình luận number,Đếm yêu thích number,Ngày đóng time,Ngày sở hữu cộng
đồng time,Giấy phép nội dung text)
- CREATE TABLE table 11239("Ngày" text,"Đội thăm quan" text,"Tỷ số cuối cùng" text,"Đội
đăng cai" text,"Sân vận động" text)
- CREATE TABLE table 203 141(id number,"sr.no." number,"tên" text,"từ" text,"cho
đến" text,"nghề nghiệp" text)
- source_sentence: Tên đầy đủ, các phòng ban, thành phố, tỉnh của từng nhân viên là
gì?
sentences:
- CREATE TABLE phòng ban(department id number,department name text,manager id number,location
id number)
- CREATE TABLE khu vực(khu vực id number,tên khu vực text)
- CREATE TABLE tuyển sinh(row id number,subject id number,hadm id number,admittime
time,dischtime time,admission type text,admission location text,discharge location
text,bảo hiểm text,ngôn ngữ text,hôn nhân status text,dân tộc text,age number);
- source_sentence: Năm 2011 là bao nhiêu khi năm 2009 là 'MỘT'?
sentences:
- CREATE TABLE table name 27(điểm VARCHAR,đội khách VARCHAR,date VARCHAR)
- CREATE TABLE Bài viết(Id number,PostTypeId number,AcceptedAnswerId number,ParentId
number,CreationDate time,DeletionDate time,Score number,ViewCount number,Body
text,OwnerUserId number,OwnerDisplayName text,LastEditorUserId number,LastEditorDisplayName
text,LastEditDate time,LastActivityDate time,Title text,Tags text,AnswerCount
number,CommentCount number,FavoriteCount number,ClosedDate time,CommunityOwnedDate
time,ContentLicen text)
- CREATE TABLE table 61807("Giải đấu" text,"2009" text,"2010" text,"2011" text,"2012"
text)
---
# SentenceTransformer based on strongpear/M3-retriever-Vi-Text2SQL
This is a [sentence-transformers](https://www.SBERT.net) model finetuned from [strongpear/M3-retriever-Vi-Text2SQL](https://huggingface.co/strongpear/M3-retriever-Vi-Text2SQL). It maps sentences & paragraphs to a 1024-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:** [strongpear/M3-retriever-Vi-Text2SQL](https://huggingface.co/strongpear/M3-retriever-Vi-Text2SQL)
- **Maximum Sequence Length:** 8192 tokens
- **Output Dimensionality:** 1024 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': 8192, 'do_lower_case': False}) with Transformer model: XLMRobertaModel
(1): Pooling({'word_embedding_dimension': 1024, '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("strongpear/M3-retriever-Vi-Text2SQL_ver2")
# Run inference
sentences = [
"Năm 2011 là bao nhiêu khi năm 2009 là 'MỘT'?",
'CREATE TABLE table 61807("Giải đấu" text,"2009" text,"2010" text,"2011" text,"2012" text)',
'CREATE TABLE table name 27(điểm VARCHAR,đội khách VARCHAR,date VARCHAR)',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 1024]
# 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,312,839 training samples
* Columns: anchor
, positive
, and negative
* Approximate statistics based on the first 1000 samples:
| | anchor | positive | negative |
|:--------|:-----------------------------------------------------------------------------------|:------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------|
| type | string | string | string |
| details |
Chủ đề StackOverflow vào tháng 5 năm 2010. Sẽ thật tuyệt nếu có một biểu đồ, tôi biết :)
| CREATE TABLE Bài viết(Id number,PostTypeId number,AcceptedAnswerId number,ParentId number,CreationDate time,DeletionDate time,Score number,ViewCount number,Nội dung text,OwnerUserId number,OwnerDisplayName text,LastEditorUserId number,LastEditorDisplayName text,LastEditDate time,LastActivityDate time,Title text,Tags text,AnswerCount number,CommentCount number,FavoriteCount number,ClosedDate time,CommunityOwnedDate time,ContentLince text);
| CREATE TABLE PostTypes(Id number,Name text)
|
| sao2 của bệnh nhân 31854 trong lần khám tại bệnh viện hiện tại có bình thường không?
| CREATE TABLE icustays(row id number,subject id number,hadm id number,icustay id number,first careunit text,last careunit text,first wardid number,last wardid number,intime time,outtime time);
| CREATE TABLE inputevents cv(row id number,subject id number,hadm id number,icustay id number,charttime time,itemid number,amount number)
|
| chuyến bay nào từ PITTSBURGH đến ATLANTA vào sáng thứ Tư phục vụ BỮA SÁNG
| CREATE TABLE sân bay(airport code varchar,airport name text,airport location text,state code varchar,country name varchar,time zone code varchar,minimum connect time int);
| CREATE TABLE máy bay(aircraft code varchar,aircraft description varchar,nhà sản xuất varchar,basic type varchar,engines int,động cơ varchar,thân rộng varchar,sải cánh int,chiều dài int,trọng lượng int,công suất int,tải trả int,tốc độ bay int,phạm vi dặm int,có áp suất varchar)
|
* Loss: [TripletLoss
](https://sbert.net/docs/package_reference/sentence_transformer/losses.html#tripletloss) with these parameters:
```json
{
"distance_metric": "TripletDistanceMetric.EUCLIDEAN",
"triplet_margin": 5
}
```
### Evaluation Dataset
#### Unnamed Dataset
* Size: 69,098 evaluation samples
* Columns: anchor
, positive
, and negative
* Approximate statistics based on the first 1000 samples:
| | anchor | positive | negative |
|:--------|:-----------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------|:------------------------------------------------------------------------------------|
| type | string | string | string |
| details | Đã bao nhiêu ngày kể từ lần cuối bệnh nhân 1561 nhận được một lượng lactate ringer trong lần thăm khám tại phòng chăm sóc đặc biệt hiện tại?
| CREATE TABLE inputevents cv(row id number,subject id number,hadm id number,icustay id number,charttime time,itemid number,amount number);
| CREATE TABLE d icd diagnoses(row id number,icd9 code text,short title text,tiêu đề dài text)
|
| Có nhiều giáo sư dạy ECON 631 trong kỳ Xuân Hè 2003 không?
| CREATE TABLE giảng viên(instructor id int,name varchar,tên uniq varchar);
| CREATE TABLE học kỳ(semester id int,semester varchar,year int)
|
| bệnh nhân 011-55642 có được chẩn đoán mắc bệnh gì trong lần khám tại bệnh viện hiện tại không?
| CREATE TABLE bệnh nhân(uniquepid text,bệnh nhânhealthsystemstayid number,bệnh nhân đơn vị ở lạiid number,giới tính text,tuổi text,dân tộc text,bệnh viện number,khu bệnh number,chiều cao nhập viện number,cân nặng nhập viện number,cân nặng xuất viện number,thời gian nhập viện time,nguồn nhập viện text,thời gian nhập viện đơn vị time,thời gian nhập viện time,thời gian xuất viện time,trạng thái xuất viện text)
| CREATE TABLE inputoutput(intakeoutputid number,Patientunitstayid number,cellpath text,celllabel text,cellvaluenumeric number,intakeoutputtime time)
|
* Loss: [TripletLoss
](https://sbert.net/docs/package_reference/sentence_transformer/losses.html#tripletloss) with these parameters:
```json
{
"distance_metric": "TripletDistanceMetric.EUCLIDEAN",
"triplet_margin": 5
}
```
### Training Hyperparameters
#### Non-Default Hyperparameters
- `eval_strategy`: steps
- `gradient_accumulation_steps`: 4
- `learning_rate`: 1.08e-08
- `weight_decay`: 0.1
- `num_train_epochs`: 1
- `warmup_steps`: 500
- `fp16`: True
- `remove_unused_columns`: False
#### All Hyperparameters