代码拉取完成,页面将自动刷新
from sentence_transformers import SentenceTransformer as ST
import os
import json
with open(".\config.json", "r", encoding="utf-8") as f:
config = json.load(f)
model = ST(config['model'])
path="docs_path"
dict={}
#embedding
files=os.listdir(path)
for file_name in files:
with open(os.path.join(path,file_name),"r",encoding="UTF-8") as f:
print(file_name)
url=(f.readlines()[0]) #网址
sentence=f.read() #docs
sentence_embedding=model.encode(sentence).tolist()
dict.update({file_name : [url, sentence_embedding]})
#convert to json
json_str = json.dumps(dict,indent=4)
with open('json_filepath', 'w') as json_file:
json_file.write(json_str)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。