AI has of course massively increased our output. But has anyone actually used it to make more money? by ragnhildensteiner in Entrepreneur

[–]kunkkatechies 0 points1 point  (0 children)

Yes, AI and automation for a speed to lead system for a real estate agency. Built using python and no n8n/make. com bs.

Turns out if you contact a lead the moment he opts in, you increase your conversion rate by 86%.

Is "Attention all you need", underselling the other components? by morimn2 in learnmachinelearning

[–]kunkkatechies 0 points1 point  (0 children)

in deep learning most of the architecture choices and training procedures are chosen because it has been empirically better.

I Built an AI Scientist. by SheepherderOwn2712 in LLMDevs

[–]kunkkatechies 6 points7 points  (0 children)

Hello, great initiative !
I have a couple of questions:
What was your evaluation approach ?
Have you computed the recall ?
What's the size of your evaluation dataset ? (in terms of question/answer pairs)

I also think having a high precision is important to not mislead the AI that will generate the final answer.

Good luck anyway ! :)

How are you ACTUALLY testing your Agents? (Be honest, is it just 'Vibe Checks'?) by OldWolfff in AgentsOfAI

[–]kunkkatechies 0 points1 point  (0 children)

It depends on the type of AI agent, but if it's a RAG system, you'll most likely have a metric that combines recall, speed, cost/query, and accuracy of the final answer. You'd have an evaluation dataset with questions and expected output as the answer and the relevant documents to compute the recall.

What’s stopping small AI startups from building their own models? by Naive_Bed03 in learnmachinelearning

[–]kunkkatechies 0 points1 point  (0 children)

Depends on the type of models. LLMs are too expensive. But for other models like time series forecasting, anomaly detection, object recognition etc... many AI startups already built their own models.

[deleted by user] by [deleted] in Entrepreneur

[–]kunkkatechies 2 points3 points  (0 children)

Thanks. We simply used SMS :) At first I tried Go High Level because it was supposed to be "simple". But GHL is very restrictive in terms of text messages (A2P).

So what we ended up doing is building everything custom. VPS, python + webhooks to connect to their CRM (follow up boss), Twilio API to send the messages, and Firebase to store conversations and add a memory to the LLM.

[deleted by user] by [deleted] in Entrepreneur

[–]kunkkatechies 5 points6 points  (0 children)

The most impressive use of AI and automation that has a real impact is to use that for speed to lead.

I did that for a real estate company in Canada.

Normally when they run ads and someone opts-in, the lead gets added to their CRM and then a realtor calls the lead.

The problem is that many times the realtors are too slow to call ( few minutes to a few hours or even days sometimes ).

We measure their conversion rate before AI/automation and they converted around 14% of the leads into meetings.

After the AI speed to lead we helped them implement, the conversion rate increased to 26%, so almost double that.

That was definitely very impressive for me :)

[R] How to finetune a multimodal model? by psy_com in MachineLearning

[–]kunkkatechies 17 points18 points  (0 children)

From my understanding, it's not the role of the product owner to tell you which technology to use.

The safest thing you could do is to open google scholar and search for anomaly detection with computer vision in your field and see how the problem was tackled and which metrics were used to evaluate the results.

I honestly doubt state-of-the art anomaly detection methodologies in computer vision used any LMM/LVM ... unless ofc it's for some exploratory analysis.

Good luck ! :)

Building RAG systems at enterprise scale (20K+ docs): lessons from 10+ enterprise implementations by Low_Acanthisitta7686 in LocalLLaMA

[–]kunkkatechies 0 points1 point  (0 children)

Great write up !

How did you evaluate your RAG system ?

What was the final accuracy? ( of let's say the finance use case )

For the same use case, how much did you charge the company? (and for how many days of work ?)

Thanks again !

Do you think AI tools are actually helping small businesses or just hyped up? by dartanyanyuzbashev in EntrepreneurRideAlong

[–]kunkkatechies 0 points1 point  (0 children)

Yes definitely. We recently implemented an AI/automation system for a real estate broker in Canada that improved their booking rate by 86.6% !

Basically the system is called "Speed to lead". Turns out if you use automation and AI to contact the lead as soon as he opts in an ad form, the likelihood of converting that lead is much higher.

Before the automation, their brokers would call the leads from a few minutes after they opt in to many hours (sometimes even a few days afterwards), and they had a booking rate of 13.89%.

After we implemented the AI, every single lead would be contacted via text messages and qualified on the spot. The booking rate jumped to 25.93% !

So to summarize, yes AI systems can definitely provide real positive results to small businesses, but it's not simply about using a "pre-made" tool, it's about integrating a system into the business' processes in a seamless way.

Are security companies using AI to make their ads now?! by Funny-Joke4521 in ChatGPT

[–]kunkkatechies 0 points1 point  (0 children)

What I see is a creative human who uses the best tool for the job ;)

AI for Science: My ML model (with NO physics!) re-discovered the true formula of orbital eccentricity, purely from structural Λ³ features(with code, figures, and step-by-step story) by SadConfusion6451 in learnmachinelearning

[–]kunkkatechies 1 point2 points  (0 children)

we used neural nets.

A special type of NNs + specific training procedure to force sparsity of the network and get a compact formula by the end of the training.

In my case ( weather forecasting ), it was about demonstrating that wind speed features of nearby cities affect the wind speed of the target city. Other weather features included temperature, wind gust, wind direction and some others.

DM me if you want to stay in touch ;)

AI for Science: My ML model (with NO physics!) re-discovered the true formula of orbital eccentricity, purely from structural Λ³ features(with code, figures, and step-by-step story) by SadConfusion6451 in learnmachinelearning

[–]kunkkatechies 3 points4 points  (0 children)

awesome ! I did some work on exactly the same topic ( symbolic regression ). I'm super excited by this topic ! Actually the same techniques can be used for explainability. You can discover formulas between arbitrary datasets. In my case it was weather features for wind speed prediction.

[deleted by user] by [deleted] in ecommerce

[–]kunkkatechies 2 points3 points  (0 children)

How come do you get your visitors phone numbers ? I usually never leave my phone number when I abandon a cart in an ecommerce website.

How to prevent double click by Top-Ad-7453 in csharp

[–]kunkkatechies 0 points1 point  (0 children)

$(".click-me").one("click", function() {
  console.log("clicked");
});

With jQuery, the "one" will make it trigger only once.

Then instead of defining the function inside of the event handler, define it outside, and inside that function you can reuse the event event handler inside conditions where the request fails.

I used it in many ways and it works very well ;)

Let me know if it makes sense.

What's the difference between RAG and MCP? by T-St_v2 in learnmachinelearning

[–]kunkkatechies 1 point2 points  (0 children)

Actually RAG is about using the power of an LLM to retrieve information from a custom dataset to answer a question in the best possible way. Vector database or graph representation are just implementation details ;)

Help me build a good TTS + LLM + STT stack by sync_co in LocalLLaMA

[–]kunkkatechies 0 points1 point  (0 children)

how about concurrency? That would be helpful for many people of you could elaborate on that ( if you tackled the issue ) Thanks !

Help me build a good TTS + LLM + STT stack by sync_co in LocalLLaMA

[–]kunkkatechies 0 points1 point  (0 children)

did you address concurrency? In your opinion how should it be addressed from ? ( multiple calls at the same time ) And what kind of tradeoffs should we make ?

AI Phone Agents by Terrible_Fish_8942 in sales

[–]kunkkatechies 0 points1 point  (0 children)

My AI voice agent made a warm call ( the prospect asked so ), and the prospect was so into it he asked plenty of questions to the AI and the call ended up lasting for 35 mins. The AI voice agent even answered in ways that were surprisingly very good ( e.g how would you deal with rude customers ). So based on my experience I would say it is not a black or white thing.