File size: 1,682 Bytes
827a4f5
 
 
5b34b0f
827a4f5
 
883cddb
 
5b34b0f
827a4f5
 
 
5b34b0f
827a4f5
 
 
 
 
 
 
 
 
 
 
5b34b0f
 
 
 
827a4f5
883cddb
 
827a4f5
883cddb
827a4f5
 
 
 
 
5b34b0f
827a4f5
5b34b0f
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# -*- coding: utf-8 -*-
"""
@author:XuMing(xuming624@qq.com)
@description: text similarity example, fine-tuned by CoSENT model
"""
import gradio as gr
from gradio.components import Textbox

from text2vec import Similarity

# 中文句向量模型(CoSENT)
sim_model = Similarity(model_name_or_path='shibing624/text2vec-base-chinese',
                       similarity_type='cosine', embedding_type='sbert')


def ai_text(sentence1, sentence2):
    score = sim_model.get_score(sentence1, sentence2)
    print("{} \t\t {} \t\t Score: {:.4f}".format(sentence1, sentence2, score))

    return score


if __name__ == '__main__':
    examples = [
        ['如何更换花呗绑定银行卡', '花呗更改绑定银行卡'],
        ['我在北京打篮球', '我是北京人,我喜欢篮球'],
        ['一个女人在看书。', '一个女人在揉面团'],
        ['一个男人在车库里举重。', '一个人在举重。'],
    ]
    input1 = Textbox(lines=2, placeholder="Enter First Sentence")
    input2 = Textbox(lines=2, placeholder="Enter Second Sentence")

    output_text = Textbox(lines=2, placeholder="Output scores")
    gr.Interface(ai_text,
                 inputs=[input1, input2],
                 outputs=[output_text],
                 theme="grass",
                 title="Chinese Text to Vector Model shibing624/text2vec-base-chinese",
                 description="Copy or input Chinese text here. Submit and the machine will calculate the cosine score.",
                 article="Link to <a href='https://github.com/shibing624/text2vec' style='color:blue;' target='_blank\'>Github REPO</a>",
                 examples=examples
                 ).launch()