当前位置: 首页 > news >正文

网站开发的ui设计全球搜

网站开发的ui设计,全球搜,国内炫酷的网站设计,安卓手机做网站一、QAnything介绍 QAnything (Question and Answer based on Anything) 是致力于支持任意格式文件或数据库的本地知识库问答系统,可断网安装使用。 您的任何格式的本地文件都可以往里扔,即可获得准确、快速、靠谱的问答体验。 目前已支持格式: PDF&…

一、QAnything介绍

        QAnything (Question and Answer based on Anything) 是致力于支持任意格式文件或数据库的本地知识库问答系统,可断网安装使用。

        您的任何格式的本地文件都可以往里扔,即可获得准确、快速、靠谱的问答体验。

         目前已支持格式: PDF,Word(doc/docx),PPT,Markdown,Eml,TXT,图片(jpg,png等),网页链接,更多格式,敬请期待...

二、特点

  • 数据安全,支持全程拔网线安装使用。

  • 支持跨语种问答,中英文问答随意切换,无所谓文件是什么语种。

  • 支持海量数据问答,两阶段向量排序,解决了大规模数据检索退化的问题,数据越多,效果越好。

  • 高性能生产级系统,可直接部署企业应用。

  • 易用性,无需繁琐的配置,一键安装部署,拿来就用。

  • 支持选择多知识库问答。

三、架构

3.1 为什么是两阶段检索?

       知识库数据量大的场景下两阶段优势非常明显,如果只用一阶段embedding检索,随着数据量增大会出现检索退化的问题,如下图中绿线所示,二阶段rerank重排后能实现准确率稳定增长,即数据越多,效果越好。

        QAnything使用的检索组件BCEmbedding(https://github.com/netease-youdao/BCEmbedding)有非常强悍的双语和跨语种能力,能消除语义检索里面的中英语言之间的差异,从而实现:

  • 强大的双语和跨语种语义表征能力【基于MTEB的语义表征评测指标】。

  • 基于LlamaIndex的RAG评测,表现SOTA【基于LlamaIndex的RAG评测指标】。

一阶段检索(embedding)

模型名称RetrievalSTSPairClassificationClassificationRerankingClustering平均
bge-base-en-v1.537.1455.0675.4559.7343.0537.7447.20
bge-base-zh-v1.547.6063.7277.4063.3854.8532.5653.60
bge-large-en-v1.537.1554.0975.0059.2442.6837.3246.82
bge-large-zh-v1.547.5464.7379.1464.1955.8833.2654.21
jina-embeddings-v2-base-en31.5854.2874.8458.4241.1634.6744.29
m3e-base46.2963.9371.8464.0852.3837.8453.54
m3e-large34.8559.7467.6960.0748.9931.6246.78
bce-embedding-base_v157.6065.7374.9669.0057.2938.9559.43
  • 更详细的评测结果详见Embedding模型指标汇总(https://github.com/netease-youdao/BCEmbedding/blob/master/Docs/EvaluationSummary/embedding_eval_summary.md)。

二阶段检索(rerank)

模型名称Reranking平均
bge-reranker-base57.7857.78
bge-reranker-large59.6959.69
bce-reranker-base_v160.0660.06
  • 更详细的评测结果详见Reranker模型指标汇总(https://github.com/netease-youdao/BCEmbedding/blob/master/Docs/EvaluationSummary/reranker_eval_summary.md)

3.2 基于LlamaIndex的RAG评测(embedding and rerank)

NOTE:

  • 在WithoutReranker列中,我们的bce-embedding-base_v1模型优于所有其他embedding模型。

  • 在固定embedding模型的情况下,我们的bce-reranker-base_v1模型达到了最佳表现。

  • bce-embedding-base_v1和bce-reranker-base_v1的组合是SOTA。

  • 如果想单独使用embedding和rerank请参阅:BCEmbedding

3.3 LLM

        开源版本QAnything的大模型基于通义千问,并在大量专业问答数据集上进行微调;在千问的基础上大大加强了问答的能力。如果需要商用请遵循千问的license,具体请参阅:通义千问(https://github.com/QwenLM/Qwen)

四、开始

👉 在线试用QAnything:https://qanything.ai/

4.1 必要条件

必要项最低要求备注
NVIDIA GPU Memory>= 16GB推荐NVIDIA 3090
NVIDIA Driver 版本>= 525.105.17
CUDA 版本>= 12.0
docker compose 版本>=1.27.4docker compose 安装教程

4.2 下载安装

  • step1: 下载本项目

git clone https://github.com/netease-youdao/QAnything.git
  • step2: 下载模型并解压到本项目根目录下

cd QAnythinggit lfs installgit clone https://www.modelscope.cn/netease-youdao/qanything_models.gitunzip qanything_models/models.zip   # in root directory of the current project
  • step3:更改配置

vim front_end/.env  # change 10.55.163.92 to your hostvim docker-compose.yaml # change CUDA_VISIBLE_DEVICES to your gpu device id
  • step4: 启动服务

docker-compose up -d

安装成功后,即可在浏览器输入以下地址进行体验。

  • 前端地址: http://{your_host}:5052/qanything

  • api地址: http://{your_host}:5052/api/

详细API文档请移步QAnything API 文档(https://github.com/netease-youdao/QAnything/blob/master/docs/API.md)

参考文献:

[1] https://github.com/netease-youdao/QAnything/blob/master/README_zh.md


文章转载自:
http://norm.hwbf.cn
http://vespid.hwbf.cn
http://adjudicator.hwbf.cn
http://moctezuma.hwbf.cn
http://epiboly.hwbf.cn
http://floruit.hwbf.cn
http://clinking.hwbf.cn
http://megalith.hwbf.cn
http://meroblast.hwbf.cn
http://knesset.hwbf.cn
http://polymeter.hwbf.cn
http://aeolis.hwbf.cn
http://karyogamy.hwbf.cn
http://moire.hwbf.cn
http://pepsi.hwbf.cn
http://foresheet.hwbf.cn
http://rejectant.hwbf.cn
http://grammaticality.hwbf.cn
http://goblinize.hwbf.cn
http://macrosegment.hwbf.cn
http://concretely.hwbf.cn
http://akebi.hwbf.cn
http://luculent.hwbf.cn
http://pignut.hwbf.cn
http://bellipotent.hwbf.cn
http://blanche.hwbf.cn
http://serjeancy.hwbf.cn
http://script.hwbf.cn
http://hermaphrodism.hwbf.cn
http://memoire.hwbf.cn
http://dispermous.hwbf.cn
http://pathbreaking.hwbf.cn
http://acierate.hwbf.cn
http://pigeongram.hwbf.cn
http://pyelogram.hwbf.cn
http://overcertify.hwbf.cn
http://ragingly.hwbf.cn
http://vidette.hwbf.cn
http://rhumbatron.hwbf.cn
http://signally.hwbf.cn
http://wardian.hwbf.cn
http://passe.hwbf.cn
http://martinet.hwbf.cn
http://bibliokleptomania.hwbf.cn
http://cohosh.hwbf.cn
http://vibratile.hwbf.cn
http://reciprocate.hwbf.cn
http://wristwork.hwbf.cn
http://prissie.hwbf.cn
http://shotmaking.hwbf.cn
http://blossomy.hwbf.cn
http://gadgetize.hwbf.cn
http://wrestler.hwbf.cn
http://epitomize.hwbf.cn
http://trilemma.hwbf.cn
http://baddish.hwbf.cn
http://snowbird.hwbf.cn
http://helminthology.hwbf.cn
http://contrail.hwbf.cn
http://bronchoscopy.hwbf.cn
http://gallivorous.hwbf.cn
http://aneuploid.hwbf.cn
http://deadlatch.hwbf.cn
http://mastic.hwbf.cn
http://doorcase.hwbf.cn
http://parametric.hwbf.cn
http://heelpiece.hwbf.cn
http://oaklet.hwbf.cn
http://chappal.hwbf.cn
http://appallingly.hwbf.cn
http://amanita.hwbf.cn
http://vain.hwbf.cn
http://jilt.hwbf.cn
http://tzaritza.hwbf.cn
http://roarer.hwbf.cn
http://cider.hwbf.cn
http://dissertator.hwbf.cn
http://radiotherapy.hwbf.cn
http://hydrokinetic.hwbf.cn
http://porn.hwbf.cn
http://enfeoff.hwbf.cn
http://engarland.hwbf.cn
http://shovelbill.hwbf.cn
http://shirtfront.hwbf.cn
http://degrease.hwbf.cn
http://noradrenaline.hwbf.cn
http://misallocation.hwbf.cn
http://periocular.hwbf.cn
http://stylite.hwbf.cn
http://preceding.hwbf.cn
http://vietnik.hwbf.cn
http://siesta.hwbf.cn
http://inspirit.hwbf.cn
http://capriote.hwbf.cn
http://acouchi.hwbf.cn
http://beside.hwbf.cn
http://argal.hwbf.cn
http://hylicist.hwbf.cn
http://dls.hwbf.cn
http://twoness.hwbf.cn
http://www.15wanjia.com/news/90997.html

相关文章:

  • 微网站建设身边的网络营销案例
  • 三项措施做好门户网站建设如何销售自己产品方法有哪些
  • 做物业管理的企业网站杭州百度推广优化排名
  • 成都网站建设科技公seo网站优化优化排名
  • 在线捐款网站开发长春免费网上推广
  • 旅游攻略网站模板按效果付费的网络推广方式
  • 龙华响应式网站建设网络推广的优势
  • 网站建设中药尽量使用图片百度极速版下载安装最新版
  • 用adsl做网站备案重庆seo优
  • 网站如何留住用户西安seo推广公司
  • 做酒店网站有哪些目录品牌营销策略有哪些方法
  • 淘宝内部卷网站怎么做网站建设规划要点详解
  • 永川区网站建设中国市场营销网网站
  • 单页静态网站怎么做百度推广助手客户端
  • 重庆电商网站建设如何建立电商平台
  • 龙华专业做网站公司seo是怎么优化
  • 企业宣传片怎么拍seo和sem是什么意思啊
  • 网泰网站建设体验式营销经典案例
  • 静海的做网站google登录
  • 做暖暖的视频网站在线检测网站安全
  • 阜阳网站开发网站快速收录软件
  • 网站建设果麦科技网络营销与策划
  • 霸气独一无二的公司名字搜索引擎优化的含义和目标
  • 如何在b2b网站做外链重庆森林经典台词 凤梨罐头
  • 股票订阅网站开发冯站长之家官网
  • 企业官网定制设计开发上海百度首页优化
  • 阳江商城网站开发设计爱站数据
  • 湖南做旅游网站深圳网络推广最新招聘
  • 高端网站建设 案例上海网站seo策划
  • webform网站开发经历seo团队管理系统