背景 20230515LLM笔记 继上次调研后,很久没更新AI相关技术了,这次一并更新。 应用框架 数据索引框架 data index framework llamaindex https://docs.llamaindex.ai/en/stable/ https://github.com/run-llama/llama_index https://docs.llamaindex.ai/en/stable/use_cases/agents/ Property Graph Index可以用neo4j https://docs.llamaindex.ai/en/stable/module_guides/storing Vector Stores:Elasticsearch、Lantern、OpenSearch、Postgres、Qdrant Document Stores:Mongo、Redis Index Stores:Mongo、Redis Chat Stores:Redi ...
20250131jupyter自动操作IDEA
背景 20230429 IaC之IDE,也许是下一个ChatIDE? 在2023年4月的时候从phodal的项目中知道了jupyter core是可以embedded之后,我就尝试将它embedd进了IDEA自身以获取全量IDE的自动化能力 源码:https://github.com/dev-assistant/skykoma-plugin-idea 示例:https://github.com/dev-assistant/skykoma-plugin-idea/blob/main/demo/demo.ipynb 因部分java项目的sdk总是没法正确识别,IDEA多年以来的bug都需要手动选下无法完成全量的自动化,所以在官方处理之前想尝试解决下。部分kotlin简写本次一并更新,同时替换掉了基于命令行的git ...
20250127comfyui使用笔记
参考https://github.com/cubiq/ComfyUI_Workflows进行的demo实验,部分内容可能会过时,但只是为了玩下所以无所谓 第一个demo 加载了v1-5-pruned-emaonly 设置潜在空间大小 CLIP(Contrastive Language-Image Pre-Training)对prompt做encode 采样过程KSampler: 种子Seed: 数字随机数,不同的种子 = 不同的图 步数Steps: 到达最终图片的步数,更多的步骤需要更多的计算时间,但可能会获得更好的合成效果。根据提示词、采样器、检查点的组合差异很大。如果不确定则取15-20 CFG(Classifier-free Guidance):定义图片距离提示词的距 ...
20250125comfyui安装教程
安装本体 秋叶整合包 https://www.bilibili.com/video/BV1Ew411776J https://dotnet.microsoft.com/zh-cn/download/dotnet/6.0 https://pan.quark.cn/s/64b808baa960 https://pan.baidu.com/s/19aektdzDcnkLdQhEtDJTJA 提取码: aaki 解压密码:bilibili-秋葉aaaki github原版 首页 https://github.com/comfyanonymous/ComfyUI 本质上是个python web应用,所以python web的套路这里都可以用 下载 https://github.com/comfyanonymous/ComfyUI/releases/latest/download/ComfyUI_windows_portable_nvidia.7z 手动换源 ...
20241228bootable container试玩
介绍 有完整独立内核的容器,可部署到物理机 支持ISO, raw or qcow2 https://containers.github.io/bootc/intro.html https://docs.fedoraproject.org/en-US/bootc/getting-started 镜像准备 podman pull quay.io/fedora/fedora-bootc:41 podman tag quay.io/fedora/fedora-bootc:41 registry.hylstudio.local/quay.io/fedora/fedora-bootc:41 podman push registry.hylstudio.local/quay.io/fedora/fedora-bootc:41 01234 podman pull quay.io/fedora/f ...
20241221国内minikube初始化
安装minikube New-Item -Path 'E:\lib' -Name 'minikube' -ItemType Directory -Force # Invoke-WebRequest -OutFile 'E:\lib\minikube\minikube.exe' -Uri 'https://github.com/kubernetes/minikube/releases/latest/download/minikube-windows-amd64.exe' -UseBasicParsing Invoke-WebRequest -OutFile 'E:\lib\minikube\minikube.exe' -Uri 'https://github.com/kubernetes/minikube/releases/download/v1.34.0/minikube-windows-amd64.exe' -UseBasicParsing 0123456 ...
20241207jdk23下springboot+lombok无法运行的问题
背景 群友反馈lombok编译不正常 解决方案 第一个坑 注意到lombok在1.18.36刚支持jdk23 注意到jdk23开始默认关闭了annotation process https://www.oracle.com/java/technologies/javase/23-relnote-issues.html#:~:text=annotation%20processing%20is%20only%20run%20with%20some%20explicit%20configuration%20of%20annotation%20processing%20or%20with%20an%20explicit%20request%20to%20run%20annotation%20processing%20on%20the%20javac%20command%20line. 所以在pom.xml中的properties需要增加 XHTML ...