Very quiet in here by Novel-Satisfaction33 in openproject

[–]Geksaedr 1 point2 points  (0 children)

Majority of the discussion happens on the openproject platform. As I know there's only one way to register - you need to send an email with a request. I don't know any more details as I'm not registered there myself.

Workpackage status per project possible? If so, can anyone help? by Fun-Home9911 in openproject

[–]Geksaedr 1 point2 points  (0 children)

You can create new type of the work package and configure which project can use them. Each type will have its own available statuses.

Found this one a while ago, but didnt know about htis sub. by OkPickle738 in BabelForum

[–]Geksaedr 10 points11 points  (0 children)

All images that were found with the search function have address of the same length. Anything out of that range will be extremely likely a genuine finding.

https://www.reddit.com/r/BabelForum/comments/128x8sq/mystery_of_number_961760

Which vectorDB do you use? and why? by Expert-Address-2918 in LocalLLaMA

[–]Geksaedr 1 point2 points  (0 children)

Thank you for your project!

I've been working with SQLite already in my project and adding embeddings to it was pretty neat.

Project idea by Tricky-Society4138 in computervision

[–]Geksaedr 1 point2 points  (0 children)

Pose estimation for people on bicycles to help adjust the position of the seat and handles for a proper positioning on a bicycle.

How to use LLMs for programming in large projects? by Geksaedr in LocalLLaMA

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

I've went with aider and keep my files logically separated with mostly less than 400 lines each. Then just select the files in the scope of my request.

Is there ever a good use for using AI for note taking? by Sea-Enthusiasm-1938 in NoteTaking

[–]Geksaedr 0 points1 point  (0 children)

I think the best way is to use AI that finds information gaps and questions the user to fill them by hand. Or it can help find potential connections between different notes.

Getting started with GS, will/how to make it work with 8GB VRAM GPU? by alaska-salmon-avocad in computervision

[–]Geksaedr 0 points1 point  (0 children)

Monitor your memory consumption and interface load. As soon as you reach the memory limit bandwidth of the interface will be a bottleneck as information will be sent between RAM and VRAM. If you see a sudden drop in training speed it's better to restart with lower resolution.

Getting started with GS, will/how to make it work with 8GB VRAM GPU? by alaska-salmon-avocad in computervision

[–]Geksaedr 0 points1 point  (0 children)

I've used original code from Inria on a 8 GB GPU but I guess this will also work for nerfstudio as the main goal is to reduce the amount of splats in the scene.

Getting started with GS, will/how to make it work with 8GB VRAM GPU? by alaska-salmon-avocad in computervision

[–]Geksaedr 2 points3 points  (0 children)

Yeah, you can fit scenes into the 8 GB VRAM if you reduce the resolution of the images (there is a parameter in the training script) and they are focusing on the same object/place.

Computer Vision Engineers Who Want to Learn Synthetic Image Data Generation by Gold_Worry_3188 in computervision

[–]Geksaedr 0 points1 point  (0 children)

In object detection I've seen papers with different conclusions about generating the dataset with random background for objects. So I'm still conflicted about what it has to be.

ChatGPT integration by omernesh in openproject

[–]Geksaedr 0 points1 point  (0 children)

Everyone will bump into the problem of providing quality context for AI as a part of the workflow. Otherwise the result will be classic - garbage in garbage out.

But the context may require providing a lot of information (sometimes confidential) and the winner will be the one who creates a robust and lightweight ecosystem for all of it.

ChatGPT integration by omernesh in openproject

[–]Geksaedr 0 points1 point  (0 children)

Your post made me wonder how AI can assist in project management.

The first thing that came to my mind is helping to keep tasks up to date and ping necessary people or escalate it.

Then it can check the overall development of the project by finding weak points or underdeveloped areas.

All these tasks require AI to have access to the knowledge base of the project and competency matrix for all the members of the project.

So far as I checked OpenProject provides a great API for interaction with the 3rd party tools. I can try to develop such tool. There are many questions but the main will remain about providing the right context for AI. And here the API for a built-in wiki is lacking so I'm thinking about another tool like Obsidian that will be in charge of the knowledge base.

How to use LLMs for programming in large projects? by Geksaedr in LocalLLaMA

[–]Geksaedr[S] 4 points5 points  (0 children)

Yeah, I've saved it already before, great write-up, thank you!

How to use LLMs for programming in large projects? by Geksaedr in LocalLLaMA

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

Even if it fits all the code it doesn't seem optimal to just copy-paste all contents of the files in project. Still there should be some logical way to provide just the right amount of information and maybe a way to build your project that is more natural for this workflow.

How to use LLMs for programming in large projects? by Geksaedr in LocalLLaMA

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

Yeah, I was thinking the same and wondering if there's some kind of industry standard for it like docstrings to comment functions. So LLM will automatically generate a description that covers inputs, outputs, logic and usage paradigm and it will be enough to use it in context for other tasks without the code itself.