Commit 
							
							·
						
						2ce1adc
	
1
								Parent(s):
							
							6b38fe0
								
add sentence-transformers config
Browse files- .gitignore +1 -0
 - 1_Pooling/config.json +7 -0
 - config.json +1 -1
 - modules.json +20 -0
 - sentence_bert_config.json +4 -0
 
    	
        .gitignore
    ADDED
    
    | 
         @@ -0,0 +1 @@ 
     | 
|
| 
         | 
| 
         | 
|
| 1 | 
         
            +
            .idea
         
     | 
    	
        1_Pooling/config.json
    ADDED
    
    | 
         @@ -0,0 +1,7 @@ 
     | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
| 
         | 
|
| 1 | 
         
            +
            {
         
     | 
| 2 | 
         
            +
              "word_embedding_dimension": 312,
         
     | 
| 3 | 
         
            +
              "pooling_mode_cls_token": true,
         
     | 
| 4 | 
         
            +
              "pooling_mode_mean_tokens": false,
         
     | 
| 5 | 
         
            +
              "pooling_mode_max_tokens": false,
         
     | 
| 6 | 
         
            +
              "pooling_mode_mean_sqrt_len_tokens": false
         
     | 
| 7 | 
         
            +
            }
         
     | 
    	
        config.json
    CHANGED
    
    | 
         @@ -1,5 +1,5 @@ 
     | 
|
| 1 | 
         
             
            {
         
     | 
| 2 | 
         
            -
              "_name_or_path": "/ 
     | 
| 3 | 
         
             
              "architectures": [
         
     | 
| 4 | 
         
             
                "BertForPreTraining"
         
     | 
| 5 | 
         
             
              ],
         
     | 
| 
         | 
|
| 1 | 
         
             
            {
         
     | 
| 2 | 
         
            +
              "_name_or_path": "cointegrated/rubert-tiny2",
         
     | 
| 3 | 
         
             
              "architectures": [
         
     | 
| 4 | 
         
             
                "BertForPreTraining"
         
     | 
| 5 | 
         
             
              ],
         
     | 
    	
        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": 2048,
         
     | 
| 3 | 
         
            +
              "do_lower_case": false
         
     | 
| 4 | 
         
            +
            }
         
     |