Login
Discover
Waves
Decks
Upgrade
Login
Signup
Topics
New
Trending
Hot
New
New
Trending
Hot
New
Controversial
Rising
Promoted
chroma
lemooljiang
HIVE CN 中文社区
Friday, November 15, 2024 10:14 AM
Chroma向量数据库完全手册(更新) / ai #38
Chroma 向量数据库 Chroma 基本使用 Chroma embedding Chroma docker docker权限认证 修改docker的配置 langchain中的使用 添加文本 更新和删除数据 相关度数值检索 metadata数据过滤 直接存入数据库和查询 httpClient 向量数据库 Chroma github | 文档 | chroma使用指南 | 参考 | 过滤条件 |
$ 9.670
55
2
lemooljiang
HIVE CN 中文社区
Sunday, March 24, 2024 7:54 AM
Chroma向量数据库的权限认证 / ai #33
在前面的几篇中介绍了Chroma向量数据库的安装和使用等环节,但缺少一个重要的点:那就是权限认证! 任何一个数据库都不能少了权限这关,否则分分钟就被攻击了! 下面是安装和测试环节: 服务端 docker-compose构建 1. 从github拉取必要的文件 mkdir chromadb & cd chromadb & git init git clone cd chroma 2.
$ 8.570
44
lemooljiang
HIVE CN 中文社区
Saturday, August 26, 2023 12:52 PM
Chroma Docker版发布 / ai #22
这几天在构建Chroma Docker版时复习了一下Docker的使用。在拉起Chroma Docker的功能时很顺利,一把就成功了。然后就是客户端的一个小修改,就可以正常使用了。 在权限方面,Chroma团队好像正在做这方面的改进提案,毕竟权限是数据库的标配。不过, chromadb服务端只可本机访问,安全方面倒也问题不大。 构建好的Chroma Docker版已发布在docker hub上了,可以直接拉取使用。
$ 2.358
24
1
lemooljiang
HIVE CN 中文社区
Wednesday, August 23, 2023 12:14 PM
Chroma httpClient服务端 / ai #21
在正式的生产环境中,Chroma不推荐使用内存模式,而是要选用 httpClient服务端的模式。这个模式是封装在了docker中,运行起来超简单的。 Docker环境 补充点Docker的知识,安装和基本使用。已有的可以略过。 install 安装部署Docker docker-compose sudo apt install –y curl // 可以先检查下curl: whereis curl
$ 2.468
35
foxkoit
ecency
Saturday, August 9, 2025 9:44 AM
Promoted
Summer walk, and flowers
While walking in the woods today, I tried to pick flowers, but in a way where each flower is different, even now in the middle of summer there are a lot of these flowers, all of these flowers were found
$ 2.183
76
3
3
lemooljiang
HIVE CN 中文社区
Monday, August 21, 2023 11:30 AM
向量模型大比拼,如何获取关联性 / ai #20
在本地知识库的构建中,其中重要的一环是对文本的向量计算,然后存入数据库备查。在这种知识库的项目中除了知识文本的重要性之外,向量计算几乎占据了绝大多数的比重,可以说:成败在此计算。 现在比较流行的有三个向量计算库:OpenAIEmbeddings、shibing624/text2vec-base-chinese和GanymedeNil/text2vec-large-chinese。接下来就实际测试下看看。
$ 5.235
44
1
lemooljiang
HIVE CN 中文社区
Friday, August 18, 2023 11:35 AM
Chroma向量数据库完全手册 / ai #19
这里算是做一个汇总,以及对它的细节做补充。Chroma向量数据库具备传统数据库所有的功能,还有它自身独特的特点。它还在不断的开发完善,在使用中也略有bug。 在项目中,我们可能不是单独使用,而是和langchain这样的工具一起使用,所以,在项目中,它们会结合在一起。 向量数据库 Chroma简介 bug 基本使用 Chroma embedding Chroma docker langchain中的使用
$ 4.467
34
lemooljiang
HIVE CN 中文社区
Sunday, July 30, 2023 1:20 PM
Chroma文本相拟度检索 / ai #18
向量数据库的查询并不复杂,简单几条命令就可以搞定。而且,向量数据库的使用和传统数据库的使用逻辑相差不大,都是增删改查这一套。唯一有不同的就是向量计算和检索这块。 先简单来下Chroma在langchain中的检索: from langchain.vectorstores import Chroma import sentence_transformers from
$ 2.740
33
1
lemooljiang
HIVE CN 中文社区
Monday, July 17, 2023 1:21 PM
向量数据库大比拼 / ai #16
$ 8.215
34
1
1
shawnnft
Eating Out
Monday, August 4, 2025 5:57 PM
Promoted
Eating Out @ Restoran Sri Nirwana Maju
It's been a while since I've written an eating out post. On Wednesday of last week, my boss wanted to try this banana leaf / mamak restaurant called Restoran Sri Nirwana Maju. Apparently, he used to go
$ 1.342
91
18
lemooljiang
HIVE CN 中文社区
Saturday, July 15, 2023 12:56 PM
Chroma向量数据库指南 / ai #15
Chroma is a new AI native open-source embedding database.Chroma is the open-source embedding database. Chroma makes it easy to build LLM apps by making knowledge, facts, and skills pluggable for LLMs.
$ 8.140
37
1
lemooljiang
HIVE CN 中文社区
Friday, May 5, 2023 12:01 PM
LangChain的强大功能:十行代码让ChatGPT联网 / ai #10
LangChain最近蛮火的,主要也是因为AutoGPT的出圈。现在也有蛮多的介绍文章,简单讲,LangChain 是一个开发AI应用的框架。如果把OpenAI比做是发动机,那么LangChain就是整车啰!普通开发者不用再担心怎么造车,只要会开车就行,这大大给AI开发降维了。 这里简单地来个案例实操,感觉下LangChain的强大功能,这里试一下让ChatGPT联网。先借助 Serpapi来进行(google
$ 1.585
22
2
marioshelk
Daily Blog
Saturday, March 11, 2023 7:24 PM
one day on set
¡Bienvenidos, comunidad de Hive! Hoy quiero compartir con ustedes mi experiencia en el set de rodaje de mi trabajo final de la cursada de postproducción. Fue una experiencia increíble que me permitió poner
$ 0.000
1
chromauk
mirrorcake
Saturday, March 12, 2022 4:30 PM
𝘾𝙖𝙠𝙞𝙫𝙚𝙧𝙨𝙚 𝙈𝙖𝙠𝙞𝙣𝙜 𝙊𝙛 - ᴇᴘ1
What colour can represent your own universe?🌌👩🏼🚀 There is NO Limitation in the realm of our mirror cake. Let the cake be our canvas! By pouring the galaxy on the cake. Every cakes are unique and special,
$ 0.000
1
rivereyesmusic
Liketu
Sunday, August 10, 2025 9:02 PM
Promoted
Durante el viaje
Algunas fotos durante mi viaje a La Habana , que largo Dios mio
$ 2.815
68
1
1
hoerli
razer
Saturday, December 28, 2019 10:18 PM
Razer Blackwidow Chroma V2 – Unboxing und Review
Ich habe die Razer Blackwidow Chroma V2 einmal genauer angeschaut. Dazu habe ich sie einmal ausgepackt und genauer unter die Lupe genommen.
$ 0.000
3
themargaritakid
satoshi
Friday, August 9, 2019 6:54 PM
Satoshi Chroma Key
So I'm fairly new to the Satoshi hunt, but I've been involved in these types of activities for quite a few years. I just give the Chroma Key a go and was able to find the solution. I know some others have
$ 0.000
2
2
britva2018
exchange
Sunday, July 21, 2019 9:20 PM
Exchange Listing Announcement: Chroma (CHR) is now listed on Bithumb Global and BitMax
Amanda WaliszewskaJuly 19, 2019 We are happy to announce that Chromia’s Chroma token (CHR) is now officially listed on the Bithumb Global exchange as well as on BitMax.io exchange. Chroma was listed on
$ 0.000
2
1
manicesoteric
travel
Monday, November 19, 2018 4:59 AM
Memories of being oceanside.
Chroma Lab modified photograph. Steepshot IPFS IOS Android Web
$ 0.053
6
1
1
chaeline.gaile
Eating Out
Friday, August 8, 2025 9:00 AM
Promoted
Solace in a Slice by the Bay🧡💙🍕🍟
Hello there! It's me, Mae! I hope you all are doing well. It wasn’t an all-day date — just a quick one after a long, tiring day at school. The sun was already starting to set when we met. Since we go to
$ 0.091
20
5
3
vaderetro
dtubedaily
Sunday, November 11, 2018 10:53 AM
How to Set Chroma Key ???
Hi DTube family, i tried to explain how you can set chroma key effect... ▶️ DTube ▶️ IPFS
$ 0.144
31
quevo
gaming
Tuesday, October 23, 2018 11:02 PM
Chroma photography lol
$ 0.022
3
1
mamadini
gloss
Wednesday, October 10, 2018 5:15 AM
cutup me in gloss
Steepshot IPFS IOS Android Web
$ 0.135
11
3
mytechcrunch
google
Tuesday, July 17, 2018 6:46 AM
Gboard use as the Morse code
With the Google keyboard app Gboard, you can now use Morse code on iOS. Until now it was updated on iPhone as well as being able to use on Android terminal only. Morse code is like an e-mail, it is an
$ 0.135
5
5
Top communities
Create decentralized community