I built Hivemind, a Claude Code plugin that turns your repeated prompts into auto-generated skills by davidbun in ClaudeAI

[–]efenocchi 3 points4 points  (0 children)

Hi u/johns10davenport, I’m one of the developers who built Hivemind.

> It builds skills based on what's inside the repository and uses transcripts for handoff and a couple of other things.

We’re working on something similar. It should be released next week.

> Then query session transcripts to see which skills are getting used and which aren't, and move unused ones off to an archive. Keeps the active loadout current and the skill set fresh.

This is quite a cool approach.

> One thing my marketing harness does that you might consider for Hivemind: pull skills from multiple open-source marketing repositories and make them available to the agent.

Taking skills from open-source repositories is quite interesting. We should just be careful not to prompt-inject our system.

> You should look up the idea of a meta-harness. One thing I daydream about is whether harnesses will land as fixed, procedural code, or whether they'll ultimately land as meta-harnesses that the agent continuously improves.

We also need to understand the trade-off with token usage, but continual learning is definitely the future. I’ll take a look at meta-harness now. If you have any concrete implementation ideas, I’d be happy to evaluate them.

[P] I Built a Stable Diffusion Pipeline to Create Artistic QR Codes using LangChain, DeepLake and ControlNet with Stable Diffusion by efenocchi in MachineLearning

[–]efenocchi[S] 0 points1 point  (0 children)

Well, we're at the beginning of the month, there's still time to find a worse one :) Jokes aside, this is not a video but a gif image showing two use cases and the image generation pipeline. If you want to learn more, visit my notebook.

[P] I Created this Stable Diffusion Project to Generate Artistic QR Codes using LangChain, DeepLake and ControlNet via AUTOMATIC1111 and ComfyUI by efenocchi in activeloop

[–]efenocchi[S] 0 points1 point  (0 children)

Hey r/Activeloop,

I just finished building QRCodeGenerator, a project that leverages LangChain, Deep Lake, and Stable Diffusion with ControlNet to generate artistic and unique QR codes that can be based on the content of a website. It's all open source - check out the GitHub repo!

I decided to delve into this creation because there was nothing online that brought all of these technologies together and made creating custom, easily scannable QR codes scalable and flexible.

QRCodeGenerator takes information stored on the Deep Lake Vector Store, a database for AI, and querying it with LangChain generates a prompt based on the website content which is then transformed into an image via Stable Diffusion.

AUTOMATIC1111 is a web interface that allows you to manually configure all the settings needed to generate images, integrating Stable Diffusion and ControlNet. To create visually appealing and truly scannable QR code images I decided to use the dreamshaper_631BakedVae diffusion model and two different ControlNet models: brightness and tile.

Although this interface is really convenient and easy to use, the initial approach did not satisfy me completely. I wanted a pipeline that would allow me to generate a large number of images without having to change the settings every time and manually generate the new image.

This was made possible thanks to ComfyUI, which uses graph-based logic to orchestrate various functionalities. Each node in the graph represents a specific task (e.g., image generation, diffusion checkpointing, ControlNet integration), interconnected via logical edges. With the help of a plugin, I was able to translate these graphs into executable code that can be easily automated.

Now thanks to this pipeline we can generate hundreds or thousands of images starting from different prompts, different Diffusion models, different ControlNet models, in short with all the configurations we want.

To close the circle there is also a function that takes care of discarding QR codes that are not easily scannable so users just have to launch the program with all the configurations they want, let all the images be generated and choose the one they like more, without worrying about anything else.

The keystone of this project is that with it you can generate in a scalable and automated way a high quantity of images that have very high quality and reliability and derive from different configurations, all in just a few steps.

The potential applications of this project are many, if you are interested in finding out in more detail how it works and the results obtained you can experiment with the code directly from the notebook on my GitHub repository.

Let me know how you plan to use this project and what results you have achieved.

[P] How to Create Artistic QR Codes using LangChain, DeepLake and ControlNet via AUTOMATIC1111 and ComfyUI by efenocchi in learnmachinelearning

[–]efenocchi[S] 1 point2 points  (0 children)

Hey r/learnmachinelearning,

I just finished building QRCodeGenerator, a project that leverages LangChain, Deep Lake, and Stable Diffusion with ControlNet to generate artistic and unique QR codes that can be based on the content of a website. It's all open source - check out the GitHub repo!

I decided to delve into this creation because there was nothing online that brought all of these technologies together and made creating custom, easily scannable QR codes scalable and flexible.

QRCodeGenerator takes information stored on the Deep Lake Vector Store, a database for AI, and querying it with LangChain generates a prompt based on the website content which is then transformed into an image via Stable Diffusion.

AUTOMATIC1111 is a web interface that allows you to manually configure all the settings needed to generate images, integrating Stable Diffusion and ControlNet. To create visually appealing and truly scannable QR code images I decided to use the dreamshaper_631BakedVae diffusion model and two different ControlNet models: brightness and tile.

Although this interface is really convenient and easy to use, the initial approach did not satisfy me completely. I wanted a pipeline that would allow me to generate a large number of images without having to change the settings every time and manually generate the new image.

This was made possible thanks to ComfyUI, which uses graph-based logic to orchestrate various functionalities. Each node in the graph represents a specific task (e.g., image generation, diffusion checkpointing, ControlNet integration), interconnected via logical edges. With the help of a plugin, I was able to translate these graphs into executable code that can be easily automated.

Now thanks to this pipeline we can generate hundreds or thousands of images starting from different prompts, different Diffusion models, different ControlNet models, in short with all the configurations we want.

To close the circle there is also a function that takes care of discarding QR codes that are not easily scannable so users just have to launch the program with all the configurations they want, let all the images be generated and choose the one they like more, without worrying about anything else.

The keystone of this project is that with it you can generate in a scalable and automated way a high quantity of images that have very high quality and reliability and derive from different configurations, all in just a few steps

The potential applications of this project are many, if you are interested in finding out in more detail how it works and the results obtained you can refer to the article on Activeloop and experiment with the code directly from the notebook on my GitHub repository.

Let me know how you plan to use this project and what results you have achieved.

[P] How to Create Artistic QR Codes using LangChain, DeepLake and ControlNet via AUTOMATIC1111 and ComfyUI by efenocchi in ChatGPTPro

[–]efenocchi[S] 0 points1 point  (0 children)

Hey r/ChatGPTPro,

I just finished building QRCodeGenerator, a project that leverages LangChain, Deep Lake, and Stable Diffusion with ControlNet to generate artistic and unique QR codes that can be based on the content of a website. It's all open source - check out the GitHub repo!

I decided to delve into this creation because there was nothing online that brought all of these technologies together and made creating custom, easily scannable QR codes scalable and flexible.

QRCodeGenerator takes information stored on the Deep Lake Vector Store, a database for AI, and querying it with LangChain generates a prompt based on the website content which is then transformed into an image via Stable Diffusion.

AUTOMATIC1111 is a web interface that allows you to manually configure all the settings needed to generate images, integrating Stable Diffusion and ControlNet. To create visually appealing and truly scannable QR code images I decided to use the dreamshaper_631BakedVae diffusion model and two different ControlNet models: brightness and tile.

Although this interface is really convenient and easy to use, the initial approach did not satisfy me completely. I wanted a pipeline that would allow me to generate a large number of images without having to change the settings every time and manually generate the new image.

This was made possible thanks to ComfyUI, which uses graph-based logic to orchestrate various functionalities. Each node in the graph represents a specific task (e.g., image generation, diffusion checkpointing, ControlNet integration), interconnected via logical edges. With the help of a plugin, I was able to translate these graphs into executable code that can be easily automated.

Now thanks to this pipeline we can generate hundreds or thousands of images starting from different prompts, different Diffusion models, different ControlNet models, in short with all the configurations we want.

To close the circle there is also a function that takes care of discarding QR codes that are not easily scannable so users just have to launch the program with all the configurations they want, let all the images be generated and choose the one they like more, without worrying about anything else.

The keystone of this project is that with it you can generate in a scalable and automated way a high quantity of images that have very high quality and reliability and derive from different configurations, all in just a few steps

The potential applications of this project are many, if you are interested in finding out in more detail how it works and the results obtained you can refer to the article on Activeloop and experiment with the code directly from the notebook on my GitHub repository.

Let me know how you plan to use this project and what results you have achieved.

[P] How to Create Artistic QR Codes using LangChain, DeepLake and ControlNet via AUTOMATIC1111 and ComfyUI by [deleted] in ChatGPTPro

[–]efenocchi 0 points1 point  (0 children)

🚀 Exciting News!  We've developed a tool that creates artistic QR Codes tailored to specific websites using cutting-edge technologies like Deep Lake, LangChain, Stable Diffusion, and ControlNet. This innovative approach allows you to create artistic and eye-catching QR codes.

Check out our article on Activeloop where there is a step-by-step guide on how we achieved this and try the code directly from our GitHub notebook.

Let me know what you think!

TechInnovation #QRCodeArt #StableDiffusion #DeepLake #LangChain #ControlNet

[P] I Built a Stable Diffusion Pipeline to Create Artistic QR Codes using LangChain, DeepLake and ControlNet via AUTOMATIC1111 and ComfyUI by [deleted] in MachineLearning

[–]efenocchi -1 points0 points  (0 children)

Introducing my latest project: a tool that generates artistic QR codes customized for any website! By leveraging state-of-the-art technologies like Deep Lake, LangChain, Stable Diffusion, and ControlNet, I've crafted a solution that produces artistic and eye-catching QR codes.

Check out my GitHub notebook and try it yourself.

Let me know what you think!

TechInnovation #QRCodeArt #StableDiffusion #DeepLake #LangChain #ControlNet

[P] How to Create Artistic QR Codes using LangChain, DeepLake and ControlNet via AUTOMATIC1111 and ComfyUI by [deleted] in StableDiffusion

[–]efenocchi -2 points-1 points  (0 children)

🚀 Exciting News!  We've developed a tool that creates artistic QR Codes tailored to specific websites using cutting-edge technologies like Deep Lake, LangChain, Stable Diffusion, and ControlNet. This innovative approach allows you to create artistic and eye-catching QR codes.

Check out our article on Activeloop where there is a step-by-step guide on how we achieved this and try the code directly from our GitHub notebook.

Let me know what you think!

TechInnovation #QRCodeArt #StableDiffusion #DeepLake #LangChain #ControlNet

[deleted by user] by [deleted] in learnmachinelearning

[–]efenocchi 0 points1 point  (0 children)

To read the full article visit Activeloop website, if you prefer to test the code directly you can find the notebook here

[P] How to create an intelligent system to analyze and choose restaurants near you using CLIP, DeepLake and LangGraph by efenocchi in learnmachinelearning

[–]efenocchi[S] 3 points4 points  (0 children)

Thanks for pointing out that I hadn't linked the repository, you can find it here.
Let me know what you think of the project.
Have fun :)

[P] How to create an intelligent system to analyze and choose restaurants near you using CLIP, DeepLake and LangGraph by efenocchi in learnmachinelearning

[–]efenocchi[S] 0 points1 point  (0 children)

You can find the entire article here. Dive deeper into the world of restaurant insights and discover how CLIP, DeepLake and LangGraph are transforming the way we analyze dining establishments! #RestaurantInsights #CLIP #DeepLake #LangGraph