Java SDK 发布
Here’s the table of contents:
  远程仓库发布
远程仓库发布
<!--在pom文件中配置distributionManagement内容,然后运行mvn命令进行打包发布-->
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://ma...
使用Neo4j和LangChain实现“从本地到全局”的GraphRAG
Here’s the table of contents:
  使用Neo4j和LangChain实现“从本地到全局”的GraphRAG    
      重点摘要        
          索引—图生成
          检索—回答
        
      
      设置 Neo4j 环境
      数据集
      文本分块
      提取节点和关系
      实体解析
      元素总结
      构建和总结社区
      总结
    
  
使用Neo4j和LangChain实现“从本地到全局”的GraphRAG
 GraphRAG是一种基于知识图谱的检索增强技术。它使用多来源数据构建图模型的知识表达,将实体和关系之间的联系以图的...
Finclip代码管理
Here’s the table of contents:
  Conventional Commits格式
  配置Git用户-局部
  配置Git用户-全局
Conventional Commits格式
fix: 修复App.vue内容
feat: add new feature X
docs: 更新README.md
配置Git用户-局部
git config user.name "Your Name"
git config user.email "your.email@example.com"
配置Git用户-全局
git config --global user.name "Your Name"
git config --global user.email "...
使用Nvm管理多版本Node.js环境
Here’s the table of contents:
  安装Nvm
  安装指定版本Node.js
  切换到Node.js指定版本
  验证安装
  设置默认版本
安装Nvm
访问nvm-windows的GitHub页面
安装指定版本Node.js
nvm install 18.18.0
切换到Node.js指定版本
nvm use 18.18.0
验证安装
node -v
npm -v
设置默认版本
nvm alias default 18.18.0
UI与UX 设计工具
Here’s the table of contents:
  UI/UX 设计工具
  小程序页面设计
UI/UX 设计工具
  Galileo AI
  Uizard
  Framer
  Visily
  Creatie
  墨刀
  即时设计
  Pixso
  Figma
  BUI
小程序页面设计
  小程序页面设计综述1
  小程序页面设计综述2
  小程序页面设计规范1
  小程序页面设计规范2
  小程序页面设计参考1
AI-3D 项目
Here’s the table of contents:
  AI-3D 项目
  3D模型生成小程序
AI-3D 项目
  Luma AI 【不支持从图片生成】【文生3D,处于领先地位】
  Meshy 【人像不行】
  Tripo 【人像面部还行,其它细节不行】【公开评测结果较好】【图生3D、文生3D,Tripo是断层式领先】
  CSM 【人像不行】
  SudoAI 【人像不行】
  Style2Fab
  Latte3D
  voxcraft 【人像不行】
  Stability AI - TripoSR
  OpenAI Shap-E
  英伟达发布 GET3D 和 Magic3D
  Point-E
  Stable Dreamfusion
  Move.AI
...
常用CYPHER查询(五)
Here’s the table of contents:
  Graph RAG 通常引用的格式
  多标签并发查询
  将查询结果转换为树结构
  日期处理
Graph RAG 通常引用的格式
MATCH p=(n:图谱大纲)-[r*..2]-()
WHERE ANY(word IN ['cpi'] WHERE n.topic CONTAINS UPPER(word))
WITH NODES(p) AS nodes, RELATIONSHIPS(p) AS rels
RETURN REDUCE(s = '', i IN RANGE(0, SIZE(nodes) - 2) | s + nodes[i].topic + ', ' + (CASE WHEN STARTNODE(re...
Elasticsearch-7.5.1测试向量检索功能
Here’s the table of contents:
  Elasticsearch-7.5.1测试向量检索功能
Elasticsearch-7.5.1测试向量检索功能
# https://github.com/elastic/elasticsearch/blob/e8c382f89553e3a7aaafa88a5934288c1192acdc/docs/reference/vectors/vector-functions.asciidoc
# 在向量函数计算过程中,对所有匹配的文档进行线性扫描。因此,查询预计时间会随着匹配文档的数量线性增长。出于这个原因,建议使用查询参数限制匹配文档的数量。
# cosinessimilarity -计算余弦相似度
# dotPro...
136 post articles, 17 pages.