相似度计算 # 输入A,B两段语句,判断相似度 import jieba from collections import Counter def preprocess_data(text): """数据预处理函数,分词并去除停用词""" # 使用结巴分词对文本进行分词 words = jieba.c Read More
posted @ 2024-02-28 17:33 PythonNew_Mr.Wang Views(124) Comments(0) Diggs(0) Edit