Add new SentenceTransformer model
Browse files- .gitattributes +1 -0
- 1_Pooling/config.json +10 -0
- README.md +406 -0
- config.json +28 -0
- config_sentence_transformers.json +14 -0
- model.safetensors +3 -0
- modules.json +14 -0
- sentence_bert_config.json +4 -0
- special_tokens_map.json +51 -0
- tokenizer.json +3 -0
- tokenizer_config.json +0 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
1_Pooling/config.json
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"word_embedding_dimension": 768,
|
| 3 |
+
"pooling_mode_cls_token": false,
|
| 4 |
+
"pooling_mode_mean_tokens": true,
|
| 5 |
+
"pooling_mode_max_tokens": false,
|
| 6 |
+
"pooling_mode_mean_sqrt_len_tokens": false,
|
| 7 |
+
"pooling_mode_weightedmean_tokens": false,
|
| 8 |
+
"pooling_mode_lasttoken": false,
|
| 9 |
+
"include_prompt": true
|
| 10 |
+
}
|
README.md
ADDED
|
@@ -0,0 +1,406 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- sentence-transformers
|
| 4 |
+
- sentence-similarity
|
| 5 |
+
- feature-extraction
|
| 6 |
+
- dense
|
| 7 |
+
- generated_from_trainer
|
| 8 |
+
- dataset_size:9232
|
| 9 |
+
- loss:MultipleNegativesRankingLoss
|
| 10 |
+
widget:
|
| 11 |
+
- source_sentence: 'query: ދިވެހިރާއްޖޭގައި އޮންނަންވާނީ ކޮން ދީނެއް؟'
|
| 12 |
+
sentences:
|
| 13 |
+
- 'passage: އަޅުގަނޑުމެން އެންމެން ގަބޫލުކުރޭ، ދިވެހިރާއްޖޭގައި އޮންނަންވާނީ އިސްލާމްދީންކަން.
|
| 14 |
+
އަޅުގަނޑުމެން އެންމެން ގަބޫލުކުރޭ، އެހެން ދީންތަކަށް ޖާގަދޭން ނުޖެހޭކަން.'
|
| 15 |
+
- 'passage: ރަށުގައި މިހާރަށްވުރެ ގިނައިން ދިވެހި ރުކާއި، ބަނބުކެޔޮ، ފަތްކެޔޮ، ރޯމިރުސް،
|
| 16 |
+
ބަށި، ފަޅޯފަދަ ރަށުގައި ހެދޭ ބާވަތްތައް އިންދައި ހެއްދުމުގެ މަސައްކަތްތައްވެސް
|
| 17 |
+
އިތުރުކުރެވިދާނެ ކަމަށް ރަށުގެ ވެރިންގެ ފަރާތުން އަޅުގަނޑަށް އެނގިފައި އެބައޮތް.'
|
| 18 |
+
- 'passage: އޭގެކުރިން އިބްތިހާލްގެ މަންމަ އާފިޔާ މުހައްމަދަށް ޖިންސީ ގޯނާ ކުރިކަމުގެ
|
| 19 |
+
ތުހުމަތު ވެސް ރައޫފްގެ މައްޗަށް ކުރެވިގެން، އެ މައްސަލާގައި އޭނާގެ މައްޗަށް ދައުވާކުރަން
|
| 20 |
+
ޕްރޮސެކިއުޓާ ޖެނެރަލްގެ އޮފީހަށް ފޮނުވި އެވެ. އެކަމަކު އެ މައްސަލާގައި މިހާތަނަށް
|
| 21 |
+
ދައުވާއެއް ނުއުފުލަ އެވެ.'
|
| 22 |
+
- source_sentence: 'query: އައްސުލްޠާން މުޙައްމަދު ޝަމްސުއްދީން (3) އަރުވައިލައްވައިފައި
|
| 23 |
+
ހުންނަވަނިކޮށް މާލެ ގެންނެވީ ކޮން ތާރީޚެއްގައި؟'
|
| 24 |
+
sentences:
|
| 25 |
+
- 'passage: އައްސުލްޠާން މުޙައްމަދު ޝަމްސުއްދީން (3) އަރުވައިލެއްވުމަށްފަހު، އެމަނިކުފާނު
|
| 26 |
+
އަނބުރާ މާލެ ގެންނެވީ 17 ޖުލައި 1946 ގައެވެ. އެމަނިކުފާނު އަރުވައިލައްވާފައި ހުންނެވި
|
| 27 |
+
މުއްދަތުގައި ރާއްޖޭގެ ކަންތައްތައް ބަލަހައްޓަވަމުން ގެންދެވީ ވަގުތީ ސަރުކާރަކުންނެވެ.'
|
| 28 |
+
- 'passage: "ސިއްހީ ހިދުމަތުގެ ފަންނީ މަސައްކަތްތެރިން" ނުވަތަ "ސިއްހީ މަސައްކަތްތެރިން"
|
| 29 |
+
ކަމަށް ބުނެފައި އެވަނީ، ސިއްހީ ހިދުމަތުގެ ފަންނީ މަސައްކަތްތެރިންގެ ތެރޭގައި ހިމެނޭ
|
| 30 |
+
މެޑިކަލް ޕްރެކްޓިށަނަރުންނާއި، ނަރުހުންނާއި، އެލައިޑް ހެލްތު ޕްރޮފެށަނަލުންނަށެވެ.
|
| 31 |
+
އާންމު ސިއްހަތުގެ ކުއްލި ނުރައްކަލުގެ ގާނޫނު (ގާނޫނު ނަންބަރު 20/2020) ގެ 13 ވަނަ
|
| 32 |
+
މާއްދާގެ (ނ) ގެ (1)'
|
| 33 |
+
- 'passage: "އަނިޔާ" ކަމަށް ބުނެފައި އެވަނީ، ޖިސްމާނީގޮތުން ނުވަތަ މާއްދީގޮތުން
|
| 34 |
+
ނުވަތަ މީހެއްގެ ފުރާނައަށް ނުވަތަ ހަށިގަނޑަށް ގެއްލުމެއް ނުވަތަ ހާނިއްކައެއް ދިނުމަށެވެ.
|
| 35 |
+
ނުވަތަ ނަފްސާނީ ދުޅަހެޔޮކަމަށް އުނިކަމެއް ދިނުމަށެވެ. ގާނޫނު ނަންބަރު 17/2014
|
| 36 |
+
(ޖިންސީ ކުށުގެ ގާނޫނު) ގެ 69 ވަނަ މާއްދާ ގެ (ރ)'
|
| 37 |
+
- source_sentence: 'query: އެއަރޕޯޓް އަނބުރާ ހޯދަން ކިތައް މިލިއަން ޑޮލަރު ޚަރަދުކުރިތޯ؟'
|
| 38 |
+
sentences:
|
| 39 |
+
- 'passage: ވޭތުވެދިޔަ ހަފްތާގައި ވޯކަރސް ޑިމޮކްރެޓިކް ކޮންގްރެސް (ޑަބްލިޔު.ޑީ.ސީ)
|
| 40 |
+
ގެ މެންބަރުން ރައީސުލްޖުމްހޫރިއްޔާއާ ބައްދަލުކުރިއެވެ. މި ބައްދަލުވުމުގައި އެ
|
| 41 |
+
ބޭފުޅުން ވަނީ އެތައް ކަމެއްގެ ކަންބޮޑުވުން ފާޅުކުރައްވާފައެވެ. ޚާއްޞަކޮށް އެ ބޭފުޅުންނަށް
|
| 42 |
+
ލިބެންޖެހޭ އިނާޔަތްތަކާއި ރަމަޟާން މަހުގެ އިނާޔަތް ނުލިބޭތީ ވަރަށް ބޮޑަށް ކަންބޮޑުވުން
|
| 43 |
+
ފާޅުކުރެއްވިއެވެ. މި ބައްދަލުވުމުގައި އެހެނިހެން ކަންތައްތަކާ ބެހޭގޮތުންވެސް މަޝްވަރާކުރެވުނެވެ.'
|
| 44 |
+
- 'passage: އެއަރޕޯޓް 78 މިލިއަން ޑޮލަރަށް ވިއްކާލާފައި، އަނބުރާ ހޯދަން 320 މިލިއަން
|
| 45 |
+
ޑޮލަރު ސަރުކާރުން ޚަރަދު ކޮށްފައިވެއެވެ.'
|
| 46 |
+
- 'passage: މިހާރު ރާއްޖޭގައި އިންޖީނު ބެހެއްޓި އެއްހާސް ދުއިސައްތަ މަސްދޯނި އެބަހުރި.
|
| 47 |
+
އޭގެތެރެއިން އެވްރެޖްކޮށް ދުވާލެއްގެ މައްޗަށް މަހަށް ފު��ާ ކަމަށްވަނީ ގާތްގަނޑަކަށް
|
| 48 |
+
ދުއިސައްތަ ދޯނި.'
|
| 49 |
+
- source_sentence: 'query: އެވޯޑު ދޭން ހަމަޖެހިފައިވަނީ ކޮން ކެޓަގަރީތަކަކުން؟'
|
| 50 |
+
sentences:
|
| 51 |
+
- 'passage: ކަންކަމާ ކުރިމަތިލާން ނުކެރުމަކީ، އިންސާނުންގެ ކިބައިގައި ހުންނަ ބަލިކަށި
|
| 52 |
+
ސިފައެކެވެ. މި ސިފައިގެ ސަބަބުން، ކާމިޔާބު އޮންނާނީ، އޭނާގެ ނަޒަރުން ރެކި، މާ
|
| 53 |
+
ދުރުގައި ބޮނދައެވެ.'
|
| 54 |
+
- 'passage: "ނޭދެވޭ އަމަލު" ކަމަށް ބުނެފައި އެވަނީ، ވިސްލްބްލޯކުރާ ފަރާތްތައް ރައްކާތެރިކުރުމުގެ
|
| 55 |
+
ގާނޫނު (ގާނޫނު ނަންބަރު 16/2019) ގެ 3 ވަނަ މާއްދާގައި ތަފްސީލުކޮށްފައިވާ ފަދަ
|
| 56 |
+
ކޮންމެ އަމަލެކެވެ. ވިސްލްބްލޯކުރާ ފަރާތްތައް ރައްކާތެރިކުރުމުގެ ގާނޫނު (ގާނޫނު
|
| 57 |
+
ނަންބަރު 16/2019) ގެ 31 ވަނަ މާއްދާގެ (ދ)'
|
| 58 |
+
- 'passage: މިދިޔަ އަހަރު ނޫސްވެރިކަމުގައި ނޫސްވެރިން ކޮށްފައިވާ މަސައްކަތްތަކަށް
|
| 59 |
+
ބަލައިގެން ތިން ކެޓަގަރީއަކުން އެ އެވޯޑު ދޭން ހަމަޖައްސާފައިވާ ކަމަށް ވެސް އޭނާ
|
| 60 |
+
ވިދާޅުވި އެވެ. އޭގެ ތެރޭގައި ހިމެނެނީ ޓީވީ އާއި ރޭޑިއޯ އަދި ނޫސް މަޖައްލާތަކުންނެވެ.'
|
| 61 |
+
- source_sentence: 'query: އަކްރަމުގެ ދިރިއުޅުމަށް އައި ބަދަލުތަކަކީ ކޮބައިތޯ؟'
|
| 62 |
+
sentences:
|
| 63 |
+
- 'passage: ދިވެހިރާއްޖޭގެ އެންމެ ނަންހިނގާފައިވާ ޤާޟީންގެ ތެރެއިން އެއް ބޭކަލެއް
|
| 64 |
+
ކަމުގައިވާ އަލްޤާޟީ ޙަސަން ތާޖުއްދީން އަވަހާރަވުމުން، އެ މަރުޙޫމްގެ ހަށިކޮޅު ވަނީ
|
| 65 |
+
މާލޭގެ ހުކުރު މިސްކިތުގައި ފަސްދާނުލެވިފައެވެ. އެ މިސްކިތަކީ ރާއްޖޭގެ އެންމެ ގިނަ
|
| 66 |
+
ޢިލްމުވެރިން ފަސްދާނުލެވިފައިވާ ތަންތަނުގެ ތެރެއިން އެއް ތަނެވެ.'
|
| 67 |
+
- 'passage: ސިވިލް ސަރވިސްގެ މުވައްޒަފުން މަޢުލޫމާތު ހާމަކުރުމުގައި ޢަމަލުކުރަންވާނީ
|
| 68 |
+
ތިރީގައިވާ އުޞޫލުތަކުގެ މަތިންނެވެ. ޤާނޫނާ ގަވާއިދާ އެއްގޮތްވާގޮތުގެމަތިން، މަޢުލޫމާތު
|
| 69 |
+
ދޭންޖެހޭ ކޮންމެ ޙާލަތެއްގައި ތެދު މަޢުލޫމާތު ދިނުން.'
|
| 70 |
+
- 'passage: މިގޮތުގެމަތިން އަކްރަމަށް ލިބުނު ޖަވާހިރުތައް ވިއްކައި، ލިބުނު ގިނަގުނަ
|
| 71 |
+
ފައިސާއިން ޖަވާހިރުގެ ވިޔަފާރިފަށައި، ބައްޕައެކޭ އެއްފަދައިން މަޝްހޫރު ވިޔަފާރިވެރިއަކަށް
|
| 72 |
+
ވެއްޖެއެވެ. އަދި އަކްރަމާއި ޢާއިލާގެ ދިރިއުޅުން ކުރިއެކޭވެސް އެއްފަދަ ތަނަވަސް
|
| 73 |
+
ދިރިއުޅުމަކަށް ބަދަލުވެގެން ހިނގައްޖެއެވެ.'
|
| 74 |
+
pipeline_tag: sentence-similarity
|
| 75 |
+
library_name: sentence-transformers
|
| 76 |
+
---
|
| 77 |
+
|
| 78 |
+
# SentenceTransformer
|
| 79 |
+
|
| 80 |
+
This is a [sentence-transformers](https://www.SBERT.net) model trained. 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.
|
| 81 |
+
|
| 82 |
+
## Model Details
|
| 83 |
+
|
| 84 |
+
### Model Description
|
| 85 |
+
- **Model Type:** Sentence Transformer
|
| 86 |
+
<!-- - **Base model:** [Unknown](https://huggingface.co/unknown) -->
|
| 87 |
+
- **Maximum Sequence Length:** 256 tokens
|
| 88 |
+
- **Output Dimensionality:** 768 dimensions
|
| 89 |
+
- **Similarity Function:** Cosine Similarity
|
| 90 |
+
<!-- - **Training Dataset:** Unknown -->
|
| 91 |
+
<!-- - **Language:** Unknown -->
|
| 92 |
+
<!-- - **License:** Unknown -->
|
| 93 |
+
|
| 94 |
+
### Model Sources
|
| 95 |
+
|
| 96 |
+
- **Documentation:** [Sentence Transformers Documentation](https://sbert.net)
|
| 97 |
+
- **Repository:** [Sentence Transformers on GitHub](https://github.com/UKPLab/sentence-transformers)
|
| 98 |
+
- **Hugging Face:** [Sentence Transformers on Hugging Face](https://huggingface.co/models?library=sentence-transformers)
|
| 99 |
+
|
| 100 |
+
### Full Model Architecture
|
| 101 |
+
|
| 102 |
+
```
|
| 103 |
+
SentenceTransformer(
|
| 104 |
+
(0): Transformer({'max_seq_length': 256, 'do_lower_case': False, 'architecture': 'XLMRobertaModel'})
|
| 105 |
+
(1): Pooling({'word_embedding_dimension': 768, '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})
|
| 106 |
+
)
|
| 107 |
+
```
|
| 108 |
+
|
| 109 |
+
## Usage
|
| 110 |
+
|
| 111 |
+
### Direct Usage (Sentence Transformers)
|
| 112 |
+
|
| 113 |
+
First install the Sentence Transformers library:
|
| 114 |
+
|
| 115 |
+
```bash
|
| 116 |
+
pip install -U sentence-transformers
|
| 117 |
+
```
|
| 118 |
+
|
| 119 |
+
Then you can load this model and run inference.
|
| 120 |
+
```python
|
| 121 |
+
from sentence_transformers import SentenceTransformer
|
| 122 |
+
|
| 123 |
+
# Download from the 🤗 Hub
|
| 124 |
+
model = SentenceTransformer("alakxender/e5-dhivehi-qa-mnr")
|
| 125 |
+
# Run inference
|
| 126 |
+
sentences = [
|
| 127 |
+
'query: އަކްރަމުގެ ދިރިއުޅުމަށް އައި ބަދަލުތަކަކީ ކޮބައިތޯ؟',
|
| 128 |
+
'passage: މިގޮތުގެމަތިން އަކްރަމަށް ލިބުނު ޖަވާހިރުތައް ވިއްކައި، ލިބުނު ގިނަގުނަ ފައިސާއިން ޖަވާހިރުގެ ވިޔަފާރިފަށައި، ބައްޕައެކޭ އެއްފަދައިން މަޝްހޫރު ވިޔަފާރިވެރިއަކަށް ވެއްޖެއެވެ. އަދި އަކްރަމާއި ޢާއިލާގެ ދިރިއުޅުން ކުރިއެކޭވެސް އެއްފަދަ ތަނަވަސް ދިރިއުޅުމަކަށް ބަދަލުވެގެން ހިނގައްޖެއެވެ.',
|
| 129 |
+
'passage: ސިވިލް ސަރވިސްގެ މުވައްޒަފުން މަޢުލޫމާތު ހާމަކުރުމުގައި ޢަމަލުކުރަންވާނީ ތިރީގައިވާ އުޞޫލުތަކުގެ މަތިންނެވެ. ޤާނޫނާ ގަވާއިދާ އެއްގޮތްވާގޮތުގެމަތިން، މަޢުލޫމާތު ދޭންޖެހޭ ކޮންމެ ޙާލަތެއްގައި ތެދު މަޢުލޫމާތު ދިނުން.',
|
| 130 |
+
]
|
| 131 |
+
embeddings = model.encode(sentences)
|
| 132 |
+
print(embeddings.shape)
|
| 133 |
+
# [3, 768]
|
| 134 |
+
|
| 135 |
+
# Get the similarity scores for the embeddings
|
| 136 |
+
similarities = model.similarity(embeddings, embeddings)
|
| 137 |
+
print(similarities)
|
| 138 |
+
# tensor([[1.0000, 0.4978, 0.4952],
|
| 139 |
+
# [0.4978, 1.0000, 0.8843],
|
| 140 |
+
# [0.4952, 0.8843, 1.0000]])
|
| 141 |
+
```
|
| 142 |
+
|
| 143 |
+
<!--
|
| 144 |
+
### Direct Usage (Transformers)
|
| 145 |
+
|
| 146 |
+
<details><summary>Click to see the direct usage in Transformers</summary>
|
| 147 |
+
|
| 148 |
+
</details>
|
| 149 |
+
-->
|
| 150 |
+
|
| 151 |
+
<!--
|
| 152 |
+
### Downstream Usage (Sentence Transformers)
|
| 153 |
+
|
| 154 |
+
You can finetune this model on your own dataset.
|
| 155 |
+
|
| 156 |
+
<details><summary>Click to expand</summary>
|
| 157 |
+
|
| 158 |
+
</details>
|
| 159 |
+
-->
|
| 160 |
+
|
| 161 |
+
<!--
|
| 162 |
+
### Out-of-Scope Use
|
| 163 |
+
|
| 164 |
+
*List how the model may foreseeably be misused and address what users ought not to do with the model.*
|
| 165 |
+
-->
|
| 166 |
+
|
| 167 |
+
<!--
|
| 168 |
+
## Bias, Risks and Limitations
|
| 169 |
+
|
| 170 |
+
*What are the known or foreseeable issues stemming from this model? You could also flag here known failure cases or weaknesses of the model.*
|
| 171 |
+
-->
|
| 172 |
+
|
| 173 |
+
<!--
|
| 174 |
+
### Recommendations
|
| 175 |
+
|
| 176 |
+
*What are recommendations with respect to the foreseeable issues? For example, filtering explicit content.*
|
| 177 |
+
-->
|
| 178 |
+
|
| 179 |
+
## Training Details
|
| 180 |
+
|
| 181 |
+
### Training Dataset
|
| 182 |
+
|
| 183 |
+
#### Unnamed Dataset
|
| 184 |
+
|
| 185 |
+
* Size: 9,232 training samples
|
| 186 |
+
* Columns: <code>sentence_0</code> and <code>sentence_1</code>
|
| 187 |
+
* Approximate statistics based on the first 1000 samples:
|
| 188 |
+
| | sentence_0 | sentence_1 |
|
| 189 |
+
|:--------|:----------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------|
|
| 190 |
+
| type | string | string |
|
| 191 |
+
| details | <ul><li>min: 9 tokens</li><li>mean: 17.88 tokens</li><li>max: 43 tokens</li></ul> | <ul><li>min: 9 tokens</li><li>mean: 62.22 tokens</li><li>max: 256 tokens</li></ul> |
|
| 192 |
+
* Samples:
|
| 193 |
+
| sentence_0 | sentence_1 |
|
| 194 |
+
|:--------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
| 195 |
+
| <code>query: ދީނީ ތަގްރީރުކުރުމާއި ދީނީ ނަސޭހަތް ދިނުން ކަމަށް ބުނެފައިވަނީ ކޮން ކަމަކަށް؟</code> | <code>passage: "ދީނީ ތަގްރީރުކުރުމާއި ދީނީ ނަސޭހަތް ދިނުން" ކަމަށް ބުނެފައި އެވަނީ، ހަބަރުފަތުރާ ވަސީލަތަކުން ނުވަތަ ހާންމު މީހުން ޖަމާވެފައިވާ ތަނެއްގައި ދީނީ ތަގްރީރުކުރުމާއި ދީނީ ނަސޭހަތް ދިނުމަށެވެ. ދީނީ އެއްބައިވަންތަކަން ހިމާޔަތް ކުރުމުގެ ގާނޫނު (ގާނޫނު ނަންބަރު 6/1994) އަށް 1 ވަނަ އިސްލާހު ގެނައުމުގެ ގާނޫނު (ގާނޫނު ނަންބަރު 8/2014) ގެ 7 ވަނަ މާއްދާގެ (ނ) ގައި</code> |
|
| 196 |
+
| <code>query: ގާނޫނީ ގޮތުން ގައިދީން ކަމަށް ބުނެފައިވަނީ ކޮން ބައެއް؟</code> | <code>passage: "ގައިދީ" ނުވަތަ "ގައިދީން" ކަމަށް ބުނެފައިއެވަނީ، ޖަލުގައި ތިބޭ މީހުންގެ ތެރެއިން ހުކުމެއް ތަންފީޒުކުރަމުންދާ މީހުންނާއި އަރުވާލަން ނުވަތަ ގޭބަންދަށް ކޯޓުން ހުކުމްކޮށްފައި ތިބޭ މީހުންނަށެވެ. ޖަލުތަކާއި ޕެރޯލްގެ ގާނޫނު (ގާނޫނު ނަންބަރު 14/2013) ގެ 155 ވަނަ މާއްދާގެ (ލ) ގައި</code> |
|
| 197 |
+
| <code>query: އިސްލާމްދީނުގައި ޢިލްމު އުނގެނުމަކީ ކޮބައިތޯ؟</code> | <code>passage: ކީރިތި ރަސޫލާ އަންގަވައިފައިވަނީ، [طلب العلم فريضة على كلّ مسلم ومسلمة] [ޢިލްމު އުނގެނުމަކީ ކޮންމެ މުސްލިމް ފިރިހެނަކާއި ކޮންމެ މުސްލިމް އަންހެނެއްގެ މައްޗަށް އޮތް ވާޖިބެކޭ، ފަރުޟެކޭ.]</code> |
|
| 198 |
+
* Loss: [<code>MultipleNegativesRankingLoss</code>](https://sbert.net/docs/package_reference/sentence_transformer/losses.html#multiplenegativesrankingloss) with these parameters:
|
| 199 |
+
```json
|
| 200 |
+
{
|
| 201 |
+
"scale": 20.0,
|
| 202 |
+
"similarity_fct": "cos_sim"
|
| 203 |
+
}
|
| 204 |
+
```
|
| 205 |
+
|
| 206 |
+
### Training Hyperparameters
|
| 207 |
+
#### Non-Default Hyperparameters
|
| 208 |
+
|
| 209 |
+
- `per_device_train_batch_size`: 4
|
| 210 |
+
- `per_device_eval_batch_size`: 4
|
| 211 |
+
- `multi_dataset_batch_sampler`: round_robin
|
| 212 |
+
|
| 213 |
+
#### All Hyperparameters
|
| 214 |
+
<details><summary>Click to expand</summary>
|
| 215 |
+
|
| 216 |
+
- `overwrite_output_dir`: False
|
| 217 |
+
- `do_predict`: False
|
| 218 |
+
- `eval_strategy`: no
|
| 219 |
+
- `prediction_loss_only`: True
|
| 220 |
+
- `per_device_train_batch_size`: 4
|
| 221 |
+
- `per_device_eval_batch_size`: 4
|
| 222 |
+
- `per_gpu_train_batch_size`: None
|
| 223 |
+
- `per_gpu_eval_batch_size`: None
|
| 224 |
+
- `gradient_accumulation_steps`: 1
|
| 225 |
+
- `eval_accumulation_steps`: None
|
| 226 |
+
- `torch_empty_cache_steps`: None
|
| 227 |
+
- `learning_rate`: 5e-05
|
| 228 |
+
- `weight_decay`: 0.0
|
| 229 |
+
- `adam_beta1`: 0.9
|
| 230 |
+
- `adam_beta2`: 0.999
|
| 231 |
+
- `adam_epsilon`: 1e-08
|
| 232 |
+
- `max_grad_norm`: 1
|
| 233 |
+
- `num_train_epochs`: 3
|
| 234 |
+
- `max_steps`: -1
|
| 235 |
+
- `lr_scheduler_type`: linear
|
| 236 |
+
- `lr_scheduler_kwargs`: {}
|
| 237 |
+
- `warmup_ratio`: 0.0
|
| 238 |
+
- `warmup_steps`: 0
|
| 239 |
+
- `log_level`: passive
|
| 240 |
+
- `log_level_replica`: warning
|
| 241 |
+
- `log_on_each_node`: True
|
| 242 |
+
- `logging_nan_inf_filter`: True
|
| 243 |
+
- `save_safetensors`: True
|
| 244 |
+
- `save_on_each_node`: False
|
| 245 |
+
- `save_only_model`: False
|
| 246 |
+
- `restore_callback_states_from_checkpoint`: False
|
| 247 |
+
- `no_cuda`: False
|
| 248 |
+
- `use_cpu`: False
|
| 249 |
+
- `use_mps_device`: False
|
| 250 |
+
- `seed`: 42
|
| 251 |
+
- `data_seed`: None
|
| 252 |
+
- `jit_mode_eval`: False
|
| 253 |
+
- `use_ipex`: False
|
| 254 |
+
- `bf16`: False
|
| 255 |
+
- `fp16`: False
|
| 256 |
+
- `fp16_opt_level`: O1
|
| 257 |
+
- `half_precision_backend`: auto
|
| 258 |
+
- `bf16_full_eval`: False
|
| 259 |
+
- `fp16_full_eval`: False
|
| 260 |
+
- `tf32`: None
|
| 261 |
+
- `local_rank`: 0
|
| 262 |
+
- `ddp_backend`: None
|
| 263 |
+
- `tpu_num_cores`: None
|
| 264 |
+
- `tpu_metrics_debug`: False
|
| 265 |
+
- `debug`: []
|
| 266 |
+
- `dataloader_drop_last`: False
|
| 267 |
+
- `dataloader_num_workers`: 0
|
| 268 |
+
- `dataloader_prefetch_factor`: None
|
| 269 |
+
- `past_index`: -1
|
| 270 |
+
- `disable_tqdm`: False
|
| 271 |
+
- `remove_unused_columns`: True
|
| 272 |
+
- `label_names`: None
|
| 273 |
+
- `load_best_model_at_end`: False
|
| 274 |
+
- `ignore_data_skip`: False
|
| 275 |
+
- `fsdp`: []
|
| 276 |
+
- `fsdp_min_num_params`: 0
|
| 277 |
+
- `fsdp_config`: {'min_num_params': 0, 'xla': False, 'xla_fsdp_v2': False, 'xla_fsdp_grad_ckpt': False}
|
| 278 |
+
- `fsdp_transformer_layer_cls_to_wrap`: None
|
| 279 |
+
- `accelerator_config`: {'split_batches': False, 'dispatch_batches': None, 'even_batches': True, 'use_seedable_sampler': True, 'non_blocking': False, 'gradient_accumulation_kwargs': None}
|
| 280 |
+
- `deepspeed`: None
|
| 281 |
+
- `label_smoothing_factor`: 0.0
|
| 282 |
+
- `optim`: adamw_torch
|
| 283 |
+
- `optim_args`: None
|
| 284 |
+
- `adafactor`: False
|
| 285 |
+
- `group_by_length`: False
|
| 286 |
+
- `length_column_name`: length
|
| 287 |
+
- `ddp_find_unused_parameters`: None
|
| 288 |
+
- `ddp_bucket_cap_mb`: None
|
| 289 |
+
- `ddp_broadcast_buffers`: False
|
| 290 |
+
- `dataloader_pin_memory`: True
|
| 291 |
+
- `dataloader_persistent_workers`: False
|
| 292 |
+
- `skip_memory_metrics`: True
|
| 293 |
+
- `use_legacy_prediction_loop`: False
|
| 294 |
+
- `push_to_hub`: False
|
| 295 |
+
- `resume_from_checkpoint`: None
|
| 296 |
+
- `hub_model_id`: None
|
| 297 |
+
- `hub_strategy`: every_save
|
| 298 |
+
- `hub_private_repo`: None
|
| 299 |
+
- `hub_always_push`: False
|
| 300 |
+
- `gradient_checkpointing`: False
|
| 301 |
+
- `gradient_checkpointing_kwargs`: None
|
| 302 |
+
- `include_inputs_for_metrics`: False
|
| 303 |
+
- `include_for_metrics`: []
|
| 304 |
+
- `eval_do_concat_batches`: True
|
| 305 |
+
- `fp16_backend`: auto
|
| 306 |
+
- `push_to_hub_model_id`: None
|
| 307 |
+
- `push_to_hub_organization`: None
|
| 308 |
+
- `mp_parameters`:
|
| 309 |
+
- `auto_find_batch_size`: False
|
| 310 |
+
- `full_determinism`: False
|
| 311 |
+
- `torchdynamo`: None
|
| 312 |
+
- `ray_scope`: last
|
| 313 |
+
- `ddp_timeout`: 1800
|
| 314 |
+
- `torch_compile`: False
|
| 315 |
+
- `torch_compile_backend`: None
|
| 316 |
+
- `torch_compile_mode`: None
|
| 317 |
+
- `include_tokens_per_second`: False
|
| 318 |
+
- `include_num_input_tokens_seen`: False
|
| 319 |
+
- `neftune_noise_alpha`: None
|
| 320 |
+
- `optim_target_modules`: None
|
| 321 |
+
- `batch_eval_metrics`: False
|
| 322 |
+
- `eval_on_start`: False
|
| 323 |
+
- `use_liger_kernel`: False
|
| 324 |
+
- `eval_use_gather_object`: False
|
| 325 |
+
- `average_tokens_across_devices`: False
|
| 326 |
+
- `prompts`: None
|
| 327 |
+
- `batch_sampler`: batch_sampler
|
| 328 |
+
- `multi_dataset_batch_sampler`: round_robin
|
| 329 |
+
- `router_mapping`: {}
|
| 330 |
+
- `learning_rate_mapping`: {}
|
| 331 |
+
|
| 332 |
+
</details>
|
| 333 |
+
|
| 334 |
+
### Training Logs
|
| 335 |
+
| Epoch | Step | Training Loss |
|
| 336 |
+
|:------:|:----:|:-------------:|
|
| 337 |
+
| 0.2166 | 500 | 1.2589 |
|
| 338 |
+
| 0.4333 | 1000 | 1.0569 |
|
| 339 |
+
| 0.6499 | 1500 | 1.0562 |
|
| 340 |
+
| 0.8666 | 2000 | 0.9848 |
|
| 341 |
+
| 1.0832 | 2500 | 0.9565 |
|
| 342 |
+
| 1.2998 | 3000 | 0.9604 |
|
| 343 |
+
| 1.5165 | 3500 | 0.958 |
|
| 344 |
+
| 1.7331 | 4000 | 0.9232 |
|
| 345 |
+
| 1.9497 | 4500 | 0.9202 |
|
| 346 |
+
| 2.1664 | 5000 | 0.8813 |
|
| 347 |
+
| 2.3830 | 5500 | 0.893 |
|
| 348 |
+
| 2.5997 | 6000 | 0.8324 |
|
| 349 |
+
| 2.8163 | 6500 | 0.7792 |
|
| 350 |
+
|
| 351 |
+
|
| 352 |
+
### Framework Versions
|
| 353 |
+
- Python: 3.9.21
|
| 354 |
+
- Sentence Transformers: 5.0.0
|
| 355 |
+
- Transformers: 4.52.4
|
| 356 |
+
- PyTorch: 2.5.1+cu124
|
| 357 |
+
- Accelerate: 1.3.0
|
| 358 |
+
- Datasets: 3.2.0
|
| 359 |
+
- Tokenizers: 0.21.0
|
| 360 |
+
|
| 361 |
+
## Citation
|
| 362 |
+
|
| 363 |
+
### BibTeX
|
| 364 |
+
|
| 365 |
+
#### Sentence Transformers
|
| 366 |
+
```bibtex
|
| 367 |
+
@inproceedings{reimers-2019-sentence-bert,
|
| 368 |
+
title = "Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks",
|
| 369 |
+
author = "Reimers, Nils and Gurevych, Iryna",
|
| 370 |
+
booktitle = "Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing",
|
| 371 |
+
month = "11",
|
| 372 |
+
year = "2019",
|
| 373 |
+
publisher = "Association for Computational Linguistics",
|
| 374 |
+
url = "https://arxiv.org/abs/1908.10084",
|
| 375 |
+
}
|
| 376 |
+
```
|
| 377 |
+
|
| 378 |
+
#### MultipleNegativesRankingLoss
|
| 379 |
+
```bibtex
|
| 380 |
+
@misc{henderson2017efficient,
|
| 381 |
+
title={Efficient Natural Language Response Suggestion for Smart Reply},
|
| 382 |
+
author={Matthew Henderson and Rami Al-Rfou and Brian Strope and Yun-hsuan Sung and Laszlo Lukacs and Ruiqi Guo and Sanjiv Kumar and Balint Miklos and Ray Kurzweil},
|
| 383 |
+
year={2017},
|
| 384 |
+
eprint={1705.00652},
|
| 385 |
+
archivePrefix={arXiv},
|
| 386 |
+
primaryClass={cs.CL}
|
| 387 |
+
}
|
| 388 |
+
```
|
| 389 |
+
|
| 390 |
+
<!--
|
| 391 |
+
## Glossary
|
| 392 |
+
|
| 393 |
+
*Clearly define terms in order to be accessible across audiences.*
|
| 394 |
+
-->
|
| 395 |
+
|
| 396 |
+
<!--
|
| 397 |
+
## Model Card Authors
|
| 398 |
+
|
| 399 |
+
*Lists the people who create the model card, providing recognition and accountability for the detailed work that goes into its construction.*
|
| 400 |
+
-->
|
| 401 |
+
|
| 402 |
+
<!--
|
| 403 |
+
## Model Card Contact
|
| 404 |
+
|
| 405 |
+
*Provides a way for people who have updates to the Model Card, suggestions, or questions, to contact the Model Card authors.*
|
| 406 |
+
-->
|
config.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"XLMRobertaModel"
|
| 4 |
+
],
|
| 5 |
+
"attention_probs_dropout_prob": 0.1,
|
| 6 |
+
"bos_token_id": 0,
|
| 7 |
+
"classifier_dropout": null,
|
| 8 |
+
"eos_token_id": 2,
|
| 9 |
+
"hidden_act": "gelu",
|
| 10 |
+
"hidden_dropout_prob": 0.1,
|
| 11 |
+
"hidden_size": 768,
|
| 12 |
+
"initializer_range": 0.02,
|
| 13 |
+
"intermediate_size": 3072,
|
| 14 |
+
"layer_norm_eps": 1e-05,
|
| 15 |
+
"max_position_embeddings": 514,
|
| 16 |
+
"model_type": "xlm-roberta",
|
| 17 |
+
"num_attention_heads": 12,
|
| 18 |
+
"num_hidden_layers": 12,
|
| 19 |
+
"output_past": true,
|
| 20 |
+
"pad_token_id": 1,
|
| 21 |
+
"position_embedding_type": "absolute",
|
| 22 |
+
"tokenizer_class": "XLMRobertaTokenizerFast",
|
| 23 |
+
"torch_dtype": "float32",
|
| 24 |
+
"transformers_version": "4.52.4",
|
| 25 |
+
"type_vocab_size": 1,
|
| 26 |
+
"use_cache": true,
|
| 27 |
+
"vocab_size": 258002
|
| 28 |
+
}
|
config_sentence_transformers.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_type": "SentenceTransformer",
|
| 3 |
+
"__version__": {
|
| 4 |
+
"sentence_transformers": "5.0.0",
|
| 5 |
+
"transformers": "4.52.4",
|
| 6 |
+
"pytorch": "2.5.1+cu124"
|
| 7 |
+
},
|
| 8 |
+
"prompts": {
|
| 9 |
+
"query": "",
|
| 10 |
+
"document": ""
|
| 11 |
+
},
|
| 12 |
+
"default_prompt_name": null,
|
| 13 |
+
"similarity_fn_name": "cosine"
|
| 14 |
+
}
|
model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:60eaa33a1b4ee78aba0afd2cd7f9a016784b4301080041e29814176d1ee07ec0
|
| 3 |
+
size 1136773120
|
modules.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"idx": 0,
|
| 4 |
+
"name": "0",
|
| 5 |
+
"path": "",
|
| 6 |
+
"type": "sentence_transformers.models.Transformer"
|
| 7 |
+
},
|
| 8 |
+
{
|
| 9 |
+
"idx": 1,
|
| 10 |
+
"name": "1",
|
| 11 |
+
"path": "1_Pooling",
|
| 12 |
+
"type": "sentence_transformers.models.Pooling"
|
| 13 |
+
}
|
| 14 |
+
]
|
sentence_bert_config.json
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"max_seq_length": 256,
|
| 3 |
+
"do_lower_case": false
|
| 4 |
+
}
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": {
|
| 3 |
+
"content": "<s>",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": false,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"cls_token": {
|
| 10 |
+
"content": "<s>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
},
|
| 16 |
+
"eos_token": {
|
| 17 |
+
"content": "</s>",
|
| 18 |
+
"lstrip": false,
|
| 19 |
+
"normalized": false,
|
| 20 |
+
"rstrip": false,
|
| 21 |
+
"single_word": false
|
| 22 |
+
},
|
| 23 |
+
"mask_token": {
|
| 24 |
+
"content": "<mask>",
|
| 25 |
+
"lstrip": true,
|
| 26 |
+
"normalized": false,
|
| 27 |
+
"rstrip": false,
|
| 28 |
+
"single_word": false
|
| 29 |
+
},
|
| 30 |
+
"pad_token": {
|
| 31 |
+
"content": "<pad>",
|
| 32 |
+
"lstrip": false,
|
| 33 |
+
"normalized": false,
|
| 34 |
+
"rstrip": false,
|
| 35 |
+
"single_word": false
|
| 36 |
+
},
|
| 37 |
+
"sep_token": {
|
| 38 |
+
"content": "</s>",
|
| 39 |
+
"lstrip": false,
|
| 40 |
+
"normalized": false,
|
| 41 |
+
"rstrip": false,
|
| 42 |
+
"single_word": false
|
| 43 |
+
},
|
| 44 |
+
"unk_token": {
|
| 45 |
+
"content": "<unk>",
|
| 46 |
+
"lstrip": false,
|
| 47 |
+
"normalized": false,
|
| 48 |
+
"rstrip": false,
|
| 49 |
+
"single_word": false
|
| 50 |
+
}
|
| 51 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:013b8cc50c60338ea67e32083ea516ee440230761f2a2b10d554bb79a9390c0d
|
| 3 |
+
size 18641563
|
tokenizer_config.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|