├── .gitattributes ├── 1_Pooling └── config.json ├── README.md ├── config.json ├── model.safetensors ├── modules.json ├── pytorch_model.bin ├── sentence_bert_config.json ├── special_tokens_map.json ├── tokenizer.json ├── tokenizer_config.json └── vocab.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyingdong/m3e-base/HEAD/.gitattributes -------------------------------------------------------------------------------- /1_Pooling/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyingdong/m3e-base/HEAD/1_Pooling/config.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyingdong/m3e-base/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyingdong/m3e-base/HEAD/config.json -------------------------------------------------------------------------------- /model.safetensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyingdong/m3e-base/HEAD/model.safetensors -------------------------------------------------------------------------------- /modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyingdong/m3e-base/HEAD/modules.json -------------------------------------------------------------------------------- /pytorch_model.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyingdong/m3e-base/HEAD/pytorch_model.bin -------------------------------------------------------------------------------- /sentence_bert_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyingdong/m3e-base/HEAD/sentence_bert_config.json -------------------------------------------------------------------------------- /special_tokens_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyingdong/m3e-base/HEAD/special_tokens_map.json -------------------------------------------------------------------------------- /tokenizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyingdong/m3e-base/HEAD/tokenizer.json -------------------------------------------------------------------------------- /tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyingdong/m3e-base/HEAD/tokenizer_config.json -------------------------------------------------------------------------------- /vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyingdong/m3e-base/HEAD/vocab.txt --------------------------------------------------------------------------------