├── .gitattributes ├── KR-SBERT-V40K-klueNLI-augSTS ├── 0_Transformer │ ├── .AppleDouble │ │ ├── .Parent │ │ ├── config.json │ │ ├── pytorch_model.bin │ │ ├── sentence_bert_config.json │ │ ├── special_tokens_map.json │ │ ├── tokenizer_config.json │ │ └── vocab.txt │ ├── config.json │ ├── sentence_bert_config.json │ ├── special_tokens_map.json │ ├── tokenizer_config.json │ └── vocab.txt ├── 1_Pooling │ ├── .AppleDouble │ │ └── .Parent │ └── config.json ├── config.json └── modules.json ├── LICENSE ├── README.md ├── sbert-augmentation-draw.png ├── sbert-siamese-draw-2.png └── sbert-siamese-draw.png /.gitattributes: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /KR-SBERT-V40K-klueNLI-augSTS/0_Transformer/.AppleDouble/.Parent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snunlp/KR-SBERT/HEAD/KR-SBERT-V40K-klueNLI-augSTS/0_Transformer/.AppleDouble/.Parent -------------------------------------------------------------------------------- /KR-SBERT-V40K-klueNLI-augSTS/0_Transformer/.AppleDouble/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snunlp/KR-SBERT/HEAD/KR-SBERT-V40K-klueNLI-augSTS/0_Transformer/.AppleDouble/config.json -------------------------------------------------------------------------------- /KR-SBERT-V40K-klueNLI-augSTS/0_Transformer/.AppleDouble/pytorch_model.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snunlp/KR-SBERT/HEAD/KR-SBERT-V40K-klueNLI-augSTS/0_Transformer/.AppleDouble/pytorch_model.bin -------------------------------------------------------------------------------- /KR-SBERT-V40K-klueNLI-augSTS/0_Transformer/.AppleDouble/sentence_bert_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snunlp/KR-SBERT/HEAD/KR-SBERT-V40K-klueNLI-augSTS/0_Transformer/.AppleDouble/sentence_bert_config.json -------------------------------------------------------------------------------- /KR-SBERT-V40K-klueNLI-augSTS/0_Transformer/.AppleDouble/special_tokens_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snunlp/KR-SBERT/HEAD/KR-SBERT-V40K-klueNLI-augSTS/0_Transformer/.AppleDouble/special_tokens_map.json -------------------------------------------------------------------------------- /KR-SBERT-V40K-klueNLI-augSTS/0_Transformer/.AppleDouble/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snunlp/KR-SBERT/HEAD/KR-SBERT-V40K-klueNLI-augSTS/0_Transformer/.AppleDouble/tokenizer_config.json -------------------------------------------------------------------------------- /KR-SBERT-V40K-klueNLI-augSTS/0_Transformer/.AppleDouble/vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snunlp/KR-SBERT/HEAD/KR-SBERT-V40K-klueNLI-augSTS/0_Transformer/.AppleDouble/vocab.txt -------------------------------------------------------------------------------- /KR-SBERT-V40K-klueNLI-augSTS/0_Transformer/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snunlp/KR-SBERT/HEAD/KR-SBERT-V40K-klueNLI-augSTS/0_Transformer/config.json -------------------------------------------------------------------------------- /KR-SBERT-V40K-klueNLI-augSTS/0_Transformer/sentence_bert_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snunlp/KR-SBERT/HEAD/KR-SBERT-V40K-klueNLI-augSTS/0_Transformer/sentence_bert_config.json -------------------------------------------------------------------------------- /KR-SBERT-V40K-klueNLI-augSTS/0_Transformer/special_tokens_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snunlp/KR-SBERT/HEAD/KR-SBERT-V40K-klueNLI-augSTS/0_Transformer/special_tokens_map.json -------------------------------------------------------------------------------- /KR-SBERT-V40K-klueNLI-augSTS/0_Transformer/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snunlp/KR-SBERT/HEAD/KR-SBERT-V40K-klueNLI-augSTS/0_Transformer/tokenizer_config.json -------------------------------------------------------------------------------- /KR-SBERT-V40K-klueNLI-augSTS/0_Transformer/vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snunlp/KR-SBERT/HEAD/KR-SBERT-V40K-klueNLI-augSTS/0_Transformer/vocab.txt -------------------------------------------------------------------------------- /KR-SBERT-V40K-klueNLI-augSTS/1_Pooling/.AppleDouble/.Parent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snunlp/KR-SBERT/HEAD/KR-SBERT-V40K-klueNLI-augSTS/1_Pooling/.AppleDouble/.Parent -------------------------------------------------------------------------------- /KR-SBERT-V40K-klueNLI-augSTS/1_Pooling/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snunlp/KR-SBERT/HEAD/KR-SBERT-V40K-klueNLI-augSTS/1_Pooling/config.json -------------------------------------------------------------------------------- /KR-SBERT-V40K-klueNLI-augSTS/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.1.0" 3 | } -------------------------------------------------------------------------------- /KR-SBERT-V40K-klueNLI-augSTS/modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snunlp/KR-SBERT/HEAD/KR-SBERT-V40K-klueNLI-augSTS/modules.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snunlp/KR-SBERT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snunlp/KR-SBERT/HEAD/README.md -------------------------------------------------------------------------------- /sbert-augmentation-draw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snunlp/KR-SBERT/HEAD/sbert-augmentation-draw.png -------------------------------------------------------------------------------- /sbert-siamese-draw-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snunlp/KR-SBERT/HEAD/sbert-siamese-draw-2.png -------------------------------------------------------------------------------- /sbert-siamese-draw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snunlp/KR-SBERT/HEAD/sbert-siamese-draw.png --------------------------------------------------------------------------------