ingtech commited on
Commit
5b67912
1 Parent(s): 1e9e6f0

Upload folder using huggingface_hub

Browse files
1_Pooling/config.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "word_embedding_dimension": 384,
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,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: sentence-transformers
3
+ pipeline_tag: sentence-similarity
4
+ tags:
5
+ - sentence-transformers
6
+ - feature-extraction
7
+ - sentence-similarity
8
+
9
+ ---
10
+
11
+ # {MODEL_NAME}
12
+
13
+ This is a [sentence-transformers](https://www.SBERT.net) model: It maps sentences & paragraphs to a 384 dimensional dense vector space and can be used for tasks like clustering or semantic search.
14
+
15
+ <!--- Describe your model here -->
16
+
17
+ ## Usage (Sentence-Transformers)
18
+
19
+ Using this model becomes easy when you have [sentence-transformers](https://www.SBERT.net) installed:
20
+
21
+ ```
22
+ pip install -U sentence-transformers
23
+ ```
24
+
25
+ Then you can use the model like this:
26
+
27
+ ```python
28
+ from sentence_transformers import SentenceTransformer
29
+ sentences = ["This is an example sentence", "Each sentence is converted"]
30
+
31
+ model = SentenceTransformer('{MODEL_NAME}')
32
+ embeddings = model.encode(sentences)
33
+ print(embeddings)
34
+ ```
35
+
36
+
37
+
38
+ ## Evaluation Results
39
+
40
+ <!--- Describe how your model was evaluated -->
41
+
42
+ For an automated evaluation of this model, see the *Sentence Embeddings Benchmark*: [https://seb.sbert.net](https://seb.sbert.net?model_name={MODEL_NAME})
43
+
44
+
45
+ ## Training
46
+ The model was trained with the parameters:
47
+
48
+ **DataLoader**:
49
+
50
+ `torch.utils.data.dataloader.DataLoader` of length 598 with parameters:
51
+ ```
52
+ {'batch_size': 10, 'sampler': 'torch.utils.data.sampler.SequentialSampler', 'batch_sampler': 'torch.utils.data.sampler.BatchSampler'}
53
+ ```
54
+
55
+ **Loss**:
56
+
57
+ `sentence_transformers.losses.MultipleNegativesRankingLoss.MultipleNegativesRankingLoss` with parameters:
58
+ ```
59
+ {'scale': 20.0, 'similarity_fct': 'cos_sim'}
60
+ ```
61
+
62
+ Parameters of the fit()-Method:
63
+ ```
64
+ {
65
+ "epochs": 2,
66
+ "evaluation_steps": 50,
67
+ "evaluator": "sentence_transformers.evaluation.InformationRetrievalEvaluator.InformationRetrievalEvaluator",
68
+ "max_grad_norm": 1,
69
+ "optimizer_class": "<class 'torch.optim.adamw.AdamW'>",
70
+ "optimizer_params": {
71
+ "lr": 2e-05
72
+ },
73
+ "scheduler": "WarmupLinear",
74
+ "steps_per_epoch": null,
75
+ "warmup_steps": 119,
76
+ "weight_decay": 0.01
77
+ }
78
+ ```
79
+
80
+
81
+ ## Full Model Architecture
82
+ ```
83
+ SentenceTransformer(
84
+ (0): Transformer({'max_seq_length': 512, 'do_lower_case': False}) with Transformer model: BertModel
85
+ (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})
86
+ (2): Normalize()
87
+ )
88
+ ```
89
+
90
+ ## Citing & Authors
91
+
92
+ <!--- Describe where people can find more information -->
config.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "thenlper/gte-small",
3
+ "architectures": [
4
+ "BertModel"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_dropout": null,
8
+ "hidden_act": "gelu",
9
+ "hidden_dropout_prob": 0.1,
10
+ "hidden_size": 384,
11
+ "initializer_range": 0.02,
12
+ "intermediate_size": 1536,
13
+ "layer_norm_eps": 1e-12,
14
+ "max_position_embeddings": 512,
15
+ "model_type": "bert",
16
+ "num_attention_heads": 12,
17
+ "num_hidden_layers": 12,
18
+ "pad_token_id": 0,
19
+ "position_embedding_type": "absolute",
20
+ "torch_dtype": "float32",
21
+ "transformers_version": "4.44.0",
22
+ "type_vocab_size": 2,
23
+ "use_cache": true,
24
+ "vocab_size": 30522
25
+ }
config_sentence_transformers.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "__version__": {
3
+ "sentence_transformers": "2.7.0",
4
+ "transformers": "4.44.0",
5
+ "pytorch": "2.4.0+cpu"
6
+ },
7
+ "prompts": {},
8
+ "default_prompt_name": null
9
+ }
eval/Information-Retrieval_evaluation_results.csv ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ epoch,steps,cos_sim-Accuracy@1,cos_sim-Accuracy@3,cos_sim-Accuracy@5,cos_sim-Accuracy@10,cos_sim-Precision@1,cos_sim-Recall@1,cos_sim-Precision@3,cos_sim-Recall@3,cos_sim-Precision@5,cos_sim-Recall@5,cos_sim-Precision@10,cos_sim-Recall@10,cos_sim-MRR@10,cos_sim-NDCG@10,cos_sim-MAP@100,dot_score-Accuracy@1,dot_score-Accuracy@3,dot_score-Accuracy@5,dot_score-Accuracy@10,dot_score-Precision@1,dot_score-Recall@1,dot_score-Precision@3,dot_score-Recall@3,dot_score-Precision@5,dot_score-Recall@5,dot_score-Precision@10,dot_score-Recall@10,dot_score-MRR@10,dot_score-NDCG@10,dot_score-MAP@100
2
+ 0,50,0.024418799130289347,0.04649606957685232,0.05385515972570664,0.06489379494898813,0.024418799130289347,0.024418799130289347,0.015498689858950771,0.04649606957685232,0.010771031945141328,0.05385515972570664,0.006489379494898812,0.06489379494898813,0.03755445647066319,0.04411134973105783,0.03926666409139004,0.024418799130289347,0.04683057367452751,0.054189663823381834,0.06506104699782572,0.024418799130289347,0.024418799130289347,0.015610191224842503,0.04683057367452751,0.010837932764676369,0.054189663823381834,0.006506104699782572,0.06506104699782572,0.03770564701322353,0.044270635254950536,0.03941502949835487
3
+ 0,100,0.02609131961866533,0.053018899481518646,0.06104699782572336,0.07058036460946647,0.02609131961866533,0.02609131961866533,0.017672966493839547,0.053018899481518646,0.012209399565144673,0.06104699782572336,0.007058036460946647,0.07058036460946647,0.041397072292707005,0.04847760621838111,0.04306589384740415,0.025422311423314935,0.05251714333500585,0.060210737581535376,0.06991135641411607,0.025422311423314935,0.025422311423314935,0.01750571444500195,0.05251714333500585,0.012042147516307075,0.060210737581535376,0.006991135641411607,0.06991135641411607,0.04085104744914076,0.04789953448347243,0.04254210392873966
4
+ 0,150,0.031276133132630876,0.05636394045827062,0.0665663154373641,0.0781067068071584,0.031276133132630876,0.031276133132630876,0.01878798015275687,0.05636394045827062,0.013313263087472821,0.0665663154373641,0.007810670680715839,0.0781067068071584,0.04681497675727476,0.05436501939262308,0.04855148014320588,0.03161063723030607,0.05636394045827062,0.0665663154373641,0.0776049506606456,0.03161063723030607,0.03161063723030607,0.01878798015275687,0.05636394045827062,0.013313263087472821,0.0665663154373641,0.0077604950660645575,0.0776049506606456,0.046984153532071214,0.05438216726667828,0.048783264281490664
5
+ 0,200,0.03161063723030607,0.06154875397223616,0.07175112895132965,0.08429503261414953,0.03161063723030607,0.03161063723030607,0.020516251324078718,0.06154875397223616,0.01435022579026593,0.07175112895132965,0.008429503261414954,0.08429503261414953,0.04938103467957959,0.057829285946358874,0.051466005803281124,0.03194514132798127,0.061381501923398564,0.07158387690249206,0.08446228466298712,0.03194514132798127,0.03194514132798127,0.02046050064113285,0.061381501923398564,0.014316775380498411,0.07158387690249206,0.008446228466298713,0.08446228466298712,0.04948835474425039,0.057940056193802006,0.05156522708653533
6
+ 0,250,0.03411941796287005,0.06288677036293695,0.07409265763505603,0.0861348051513631,0.03411941796287005,0.03411941796287005,0.020962256787645645,0.06288677036293695,0.01481853152701121,0.07409265763505603,0.00861348051513631,0.0861348051513631,0.051469561454508726,0.05983965595023678,0.053544994864049934,0.03328315771868205,0.06255226626526175,0.07375815353738083,0.0863020572002007,0.03328315771868205,0.03328315771868205,0.020850755421753915,0.06255226626526175,0.01475163070747617,0.07375815353738083,0.00863020572002007,0.0863020572002007,0.05104718366133316,0.05956323288161245,0.05310344817207998
7
+ 0,300,0.03311590566984446,0.06188325806991136,0.07258738919551765,0.08747282154206389,0.03311590566984446,0.03311590566984446,0.02062775268997045,0.06188325806991136,0.01451747783910353,0.07258738919551765,0.008747282154206391,0.08747282154206389,0.050649296346737364,0.059470865101178313,0.05282024593907413,0.03278140157216926,0.06205051011874895,0.07242013714668005,0.0871383174443887,0.03278140157216926,0.03278140157216926,0.02068350337291632,0.06205051011874895,0.014484027429336011,0.07242013714668005,0.008713831744438872,0.0871383174443887,0.05048503094162901,0.0592781718876769,0.052668745059528295
8
+ 0,350,0.03294865362100686,0.06556280314433852,0.0769359424652952,0.08947984612811508,0.03294865362100686,0.03294865362100686,0.021854267714779503,0.06556280314433852,0.015387188493059043,0.0769359424652952,0.008947984612811507,0.08947984612811508,0.05205819574861218,0.06110629143880079,0.054394058449420885,0.03311590566984446,0.06606455929085131,0.07660143836762,0.08981435022579026,0.03311590566984446,0.03311590566984446,0.022021519763617103,0.06606455929085131,0.015320287673524002,0.07660143836762,0.008981435022579027,0.08981435022579026,0.052193059305452656,0.061277665530542896,0.05452561580738464
9
+ 0,400,0.03177788927914367,0.05954172938618498,0.06957685231644088,0.08412778056531192,0.03177788927914367,0.03177788927914367,0.019847243128728324,0.05954172938618498,0.013915370463288175,0.06957685231644088,0.008412778056531194,0.08412778056531192,0.04865249271922624,0.05714987346636985,0.0509296551251333,0.031443385181468476,0.0580364609466466,0.06907509616992809,0.08345877236996153,0.031443385181468476,0.031443385181468476,0.01934548698221553,0.0580364609466466,0.013815019233985617,0.06907509616992809,0.008345877236996153,0.08345877236996153,0.04804003164514951,0.05651924500951701,0.050351950684769914
10
+ 0,450,0.03177788927914367,0.06188325806991136,0.07191838100016726,0.0866365612978759,0.03177788927914367,0.03177788927914367,0.02062775268997045,0.06188325806991136,0.01438367620003345,0.07191838100016726,0.008663656129787591,0.0866365612978759,0.049743414118727715,0.05861972958719974,0.05197787281492977,0.032279645425656464,0.06221776216758655,0.07225288509784245,0.0864693092490383,0.032279645425656464,0.032279645425656464,0.02073925405586218,0.06221776216758655,0.01445057701956849,0.07225288509784245,0.00864693092490383,0.0864693092490383,0.05007446698364912,0.05883961791928569,0.052341356851904816
11
+ 0,500,0.03411941796287005,0.06606455929085131,0.0764341863187824,0.09115236661649105,0.03411941796287005,0.03411941796287005,0.022021519763617103,0.06606455929085131,0.015286837263756481,0.0764341863187824,0.009115236661649106,0.09115236661649105,0.05291914558096192,0.062112075195793884,0.05526503590452071,0.034955678207058034,0.06639906338852651,0.07710319451413279,0.09148687071416625,0.034955678207058034,0.034955678207058034,0.022133021129508833,0.06639906338852651,0.01542063890282656,0.07710319451413279,0.009148687071416625,0.09148687071416625,0.05352311131287545,0.06264924094284802,0.055838044878458414
12
+ 0,550,0.03177788927914367,0.05954172938618498,0.07158387690249206,0.08513129285833751,0.03177788927914367,0.03177788927914367,0.019847243128728324,0.05954172938618498,0.014316775380498413,0.07158387690249206,0.008513129285833752,0.08513129285833751,0.04905396400629716,0.05771432022580136,0.05153703320111484,0.031443385181468476,0.05937447733734738,0.07158387690249206,0.08496404080949992,0.031443385181468476,0.031443385181468476,0.019791492445782457,0.05937447733734738,0.014316775380498413,0.07158387690249206,0.008496404080949992,0.08496404080949992,0.048808661001335345,0.057490465964837645,0.051303293311318506
13
+ 0,-1,0.0287673524000669,0.05402241177454424,0.06355577855828734,0.07626693426994481,0.0287673524000669,0.0287673524000669,0.018007470591514748,0.05402241177454424,0.012711155711657467,0.06355577855828734,0.007626693426994481,0.07626693426994481,0.04413137781175913,0.051839922497491114,0.046615359257155355,0.029269108546579697,0.05385515972570664,0.06355577855828734,0.0767686904164576,0.029269108546579697,0.029269108546579697,0.017951719908568878,0.05385515972570664,0.012711155711657467,0.06355577855828734,0.007676869041645761,0.0767686904164576,0.0444137815688242,0.05216177780214696,0.04686721808416323
14
+ 1,50,0.03595919050008363,0.06305402241177455,0.07375815353738083,0.08697106539555109,0.03595919050008363,0.03595919050008363,0.021018007470591512,0.06305402241177455,0.014751630707476168,0.07375815353738083,0.00869710653955511,0.08697106539555109,0.05239024416144336,0.06070165748220965,0.05492950237677224,0.035122930255895635,0.06271951831409935,0.07342364943970564,0.0871383174443887,0.035122930255895635,0.035122930255895635,0.020906506104699782,0.06271951831409935,0.01468472988794113,0.07342364943970564,0.008713831744438872,0.0871383174443887,0.05190289027469159,0.060367585556281696,0.05445171023231521
15
+ 1,100,0.034955678207058034,0.0670680715838769,0.0776049506606456,0.09182137481184144,0.034955678207058034,0.034955678207058034,0.0223560238612923,0.0670680715838769,0.01552099013212912,0.0776049506606456,0.009182137481184146,0.09182137481184144,0.05384533698633043,0.06299613775132012,0.05627572337601167,0.035290182304733235,0.0669008195350393,0.07743769861180799,0.09148687071416625,0.035290182304733235,0.035290182304733235,0.02230027317834643,0.0669008195350393,0.015487539722361597,0.07743769861180799,0.009148687071416625,0.09148687071416625,0.05391967123025825,0.06296716235648904,0.05635273550969214
16
+ 1,150,0.035122930255895635,0.06974410436527848,0.07977922729553437,0.09416290349556782,0.035122930255895635,0.035122930255895635,0.02324803478842616,0.06974410436527848,0.015955845459106874,0.07977922729553437,0.009416290349556784,0.09416290349556782,0.0552209850880197,0.06463254304948347,0.05751540759521861,0.035290182304733235,0.06940960026760327,0.07961197524669678,0.09366114734905502,0.035290182304733235,0.035290182304733235,0.02313653342253442,0.06940960026760327,0.01592239504933935,0.07961197524669678,0.009366114734905503,0.09366114734905502,0.0551576018710991,0.0644642392213535,0.05745309299834707
17
+ 1,200,0.03696270279310922,0.0677370797792273,0.07961197524669678,0.09433015554440542,0.03696270279310922,0.03696270279310922,0.02257902659307576,0.0677370797792273,0.015922395049339358,0.07961197524669678,0.009433015554440543,0.09433015554440542,0.05592483746021124,0.0651658427862923,0.05838655604701519,0.03696270279310922,0.0677370797792273,0.07961197524669678,0.09433015554440542,0.03696270279310922,0.03696270279310922,0.02257902659307576,0.0677370797792273,0.015922395049339358,0.07961197524669678,0.009433015554440543,0.09433015554440542,0.05591070067989282,0.0651516245529192,0.0583839892662986
18
+ 1,250,0.03612644254892122,0.07258738919551765,0.08245526007693595,0.09750794447231978,0.03612644254892122,0.03612644254892122,0.02419579639850588,0.07258738919551765,0.016491052015387187,0.08245526007693595,0.009750794447231979,0.09750794447231978,0.057016754407622376,0.06681282371874529,0.05949228861957089,0.03646094664659642,0.07275464124435524,0.08228800802809834,0.09750794447231978,0.03646094664659642,0.03646094664659642,0.024251547081451746,0.07275464124435524,0.01645760160561967,0.08228800802809834,0.009750794447231977,0.09750794447231978,0.05723696960525856,0.0669753150151176,0.05971736679977979
19
+ 1,300,0.0386352232814852,0.07292189329319285,0.08379327646763673,0.09834420471650777,0.0386352232814852,0.0386352232814852,0.02430729776439761,0.07292189329319285,0.01675865529352735,0.08379327646763673,0.009834420471650777,0.09834420471650777,0.0588044266042259,0.06835551822706268,0.06139524952132315,0.03830071918381,0.07275464124435524,0.08345877236996153,0.09851145676534538,0.03830071918381,0.03830071918381,0.024251547081451746,0.07275464124435524,0.016691754473992307,0.08345877236996153,0.009851145676534537,0.09851145676534538,0.0585969544198345,0.06823283986010083,0.06117155638568998
20
+ 1,350,0.03545743435357083,0.07275464124435524,0.08429503261414953,0.09918046496069577,0.03545743435357083,0.03545743435357083,0.024251547081451746,0.07275464124435524,0.016859006522829904,0.08429503261414953,0.009918046496069578,0.09918046496069577,0.05711206152751558,0.06729111246887252,0.05974010093086176,0.03579193845124603,0.07308914534203044,0.08429503261414953,0.09918046496069577,0.03579193845124603,0.03579193845124603,0.02436304844734348,0.07308914534203044,0.016859006522829904,0.08429503261414953,0.009918046496069578,0.09918046496069577,0.057349466519060054,0.06747190018434963,0.05997399165170612
21
+ 1,400,0.03562468640240843,0.07024586051179127,0.08362602441879913,0.09951496905837097,0.03562468640240843,0.03562468640240843,0.023415286837263755,0.07024586051179127,0.016725204883759826,0.08362602441879913,0.009951496905837097,0.09951496905837097,0.05670189578869957,0.06699982841979446,0.059221733349798196,0.03545743435357083,0.07007860846295368,0.08329152032112393,0.09934771700953336,0.03545743435357083,0.03545743435357083,0.02335953615431789,0.07007860846295368,0.016658304064224787,0.08329152032112393,0.009934771700953337,0.09934771700953336,0.05648586189228435,0.06679140871167284,0.05900674179009963
22
+ 1,450,0.03679545074427162,0.06874059207225289,0.08178625188158554,0.09884596086302057,0.03679545074427162,0.03679545074427162,0.02291353069075096,0.06874059207225289,0.016357250376317113,0.08178625188158554,0.009884596086302058,0.09884596086302057,0.05681372900389456,0.06689927716895845,0.05940242176821185,0.03696270279310922,0.06874059207225289,0.08161899983274795,0.09901321291185818,0.03696270279310922,0.03696270279310922,0.02291353069075096,0.06874059207225289,0.01632379996654959,0.08161899983274795,0.009901321291185818,0.09901321291185818,0.056887399549215886,0.06698319359728423,0.059477618420865234
23
+ 1,500,0.04030774376986118,0.07091486870714166,0.08228800802809834,0.09934771700953336,0.04030774376986118,0.04030774376986118,0.02363828956904722,0.07091486870714166,0.01645760160561967,0.08228800802809834,0.009934771700953337,0.09934771700953336,0.05923145028764695,0.06883803660309999,0.06180126681647655,0.04047499581869878,0.07108212075597926,0.08228800802809834,0.09934771700953336,0.04047499581869878,0.04047499581869878,0.023694040251993086,0.07108212075597926,0.01645760160561967,0.08228800802809834,0.009934771700953337,0.09934771700953336,0.05929350610735456,0.06888014220033961,0.06188361448119815
24
+ 1,550,0.0386352232814852,0.06957685231644088,0.08262251212577354,0.09867870881418297,0.0386352232814852,0.0386352232814852,0.02319228410548029,0.06957685231644088,0.01652450242515471,0.08262251212577354,0.009867870881418297,0.09867870881418297,0.057873124719587284,0.06764825848327335,0.060564814838922794,0.038133467134972406,0.06991135641411607,0.08278976417461113,0.09851145676534538,0.038133467134972406,0.038133467134972406,0.023303785471372022,0.06991135641411607,0.01655795283492223,0.08278976417461113,0.009851145676534537,0.09851145676534538,0.057705208972143186,0.06749599370334136,0.06037166031893629
25
+ 1,-1,0.03947148352567319,0.06957685231644088,0.08195350393042315,0.09918046496069577,0.03947148352567319,0.03947148352567319,0.02319228410548029,0.06957685231644088,0.01639070078608463,0.08195350393042315,0.009918046496069578,0.09918046496069577,0.058409924152523225,0.0681606701142023,0.061033711053628446,0.039136979427997994,0.06974410436527848,0.08178625188158554,0.09884596086302057,0.039136979427997994,0.039136979427997994,0.02324803478842616,0.06974410436527848,0.016357250376317113,0.08178625188158554,0.009884596086302058,0.09884596086302057,0.05819322655750149,0.06792193982296427,0.06083197116544992
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6272c5a95a07a71172acdc7518af1ac368841283e16a3dde16e831eda7e268a7
3
+ size 133462128
modules.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ {
15
+ "idx": 2,
16
+ "name": "2",
17
+ "path": "2_Normalize",
18
+ "type": "sentence_transformers.models.Normalize"
19
+ }
20
+ ]
sentence_bert_config.json ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {
2
+ "max_seq_length": 512,
3
+ "do_lower_case": false
4
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": {
3
+ "content": "[CLS]",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "mask_token": {
10
+ "content": "[MASK]",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": {
17
+ "content": "[PAD]",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ },
23
+ "sep_token": {
24
+ "content": "[SEP]",
25
+ "lstrip": false,
26
+ "normalized": false,
27
+ "rstrip": false,
28
+ "single_word": false
29
+ },
30
+ "unk_token": {
31
+ "content": "[UNK]",
32
+ "lstrip": false,
33
+ "normalized": false,
34
+ "rstrip": false,
35
+ "single_word": false
36
+ }
37
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "0": {
4
+ "content": "[PAD]",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "100": {
12
+ "content": "[UNK]",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "101": {
20
+ "content": "[CLS]",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "102": {
28
+ "content": "[SEP]",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "103": {
36
+ "content": "[MASK]",
37
+ "lstrip": false,
38
+ "normalized": false,
39
+ "rstrip": false,
40
+ "single_word": false,
41
+ "special": true
42
+ }
43
+ },
44
+ "clean_up_tokenization_spaces": true,
45
+ "cls_token": "[CLS]",
46
+ "do_basic_tokenize": true,
47
+ "do_lower_case": true,
48
+ "mask_token": "[MASK]",
49
+ "max_length": 128,
50
+ "model_max_length": 1000000000000000019884624838656,
51
+ "never_split": null,
52
+ "pad_to_multiple_of": null,
53
+ "pad_token": "[PAD]",
54
+ "pad_token_type_id": 0,
55
+ "padding_side": "right",
56
+ "sep_token": "[SEP]",
57
+ "stride": 0,
58
+ "strip_accents": null,
59
+ "tokenize_chinese_chars": true,
60
+ "tokenizer_class": "BertTokenizer",
61
+ "truncation_side": "right",
62
+ "truncation_strategy": "longest_first",
63
+ "unk_token": "[UNK]"
64
+ }
vocab.txt ADDED
The diff for this file is too large to render. See raw diff