And this is where the strengths of LLMs really lie: making performant ML available to a wider audience, without requiring PHDs in Computer Science or Mathematics to build. It’s consistently where I spend my time tinkering with these, albeit in a local-only environment. If all the bullshit hype and marketing would evaporate already (“LLMs will replace all jobs!”), stuff like this would float to the top more and compan…
^ This. I'm waiting for an LLM where I can just point it to a repo, slurp it up, and let me ask questions about it.
Honda: 2 years of ml vs 1 month of prompting - heres what we learned
21–30 of 115 posts
Re: Honda: 2 years of ml vs 1 month of prompting - heres what we learned
#22Earlier quoted context omitted.
^ This. I'm waiting for an LLM where I can just point it to a repo, slurp it up, and let me ask questions about it.
github copilot somewhat does this.
Re: Honda: 2 years of ml vs 1 month of prompting - heres what we learned
#23> We didn’t just replace a model. We replaced a process.
That line sticks out so much now, and I can't unsee it.
Re: Honda: 2 years of ml vs 1 month of prompting - heres what we learned
#24Wish there was a bit more technical details in how the prompt iterations looked like. > We didn’t just replace a model. We replaced a process. That line sticks out so much now, and I can't unsee it.
> That’s not a marginal improvement; it’s a different way of building classifiers.
They've replaced an em-dash with a semi-colon.
Re: Honda: 2 years of ml vs 1 month of prompting - heres what we learned
#25Hmm, why was their starting point not something like BERT: * already known as SotA for text classification and similarity back in 2023 * natively multi-lingual
People generally sleep when you start talking about fine-tuned BERT and CLIP, although they do a fairly decent job as long as you have good data and know what you're doing. But no, they want to pay $0.1 per request to recognize if a photo has a person in it by asking a multimodal LLM deployed across 8x GPUs, for some reason, instead of just spending some hours with CLIP and run it effectively even on CPU.
Re: Honda: 2 years of ml vs 1 month of prompting - heres what we learned
#26Wish there was a bit more technical details in how the prompt iterations looked like. > We didn’t just replace a model. We replaced a process. That line sticks out so much now, and I can't unsee it.
Right? This one is also very clear ChatGPTese > That’s not a marginal improvement; it’s a different way of building classifiers. They've replaced an em-dash with a semi-colon.
Re: Honda: 2 years of ml vs 1 month of prompting - heres what we learned
#27I wonder if text embeddings and semantic similarity would be effective here?
LLMs still beat a clarifier, because they're able to extract more signals than a text embedding.
It's very difficult to beat an LLM + prompt in terms of semantic extraction.
Re: Honda: 2 years of ml vs 1 month of prompting - heres what we learned
#28Earlier quoted context omitted.
People generally sleep when you start talking about fine-tuned BERT and CLIP, although they do a fairly decent job as long as you have good data and know what you're doing. But no, they want to pay $0.1 per request to recognize if a photo has a person in it by asking a multimodal LLM deployed across 8x GPUs, for some reason, instead of just spending some hours with CLIP and run it effectively even on CPU.
Are you suggesting use the clip embedding for the text as a feature to train a standard Ml model on?
Re: Honda: 2 years of ml vs 1 month of prompting - heres what we learned
#29I'm afraid that people will draw the wrong conclusion from "We didn’t just replace a model. We replaced a process." and see it as an endorsement of the zero-shot-uber-alles "Prompt and Pray" approach that is dominant in the industry right now and the reason why an overwhelming faction of AI projects fail.
If you can get good enough performance out of zero shot then yeah, zero shot is fine. Thing is that to know it is good enough you still have to collect and annotate more data than most people and organizations want to do.
Re: Honda: 2 years of ml vs 1 month of prompting - heres what we learned
#30Earlier quoted context omitted.
^ This. I'm waiting for an LLM where I can just point it to a repo, slurp it up, and let me ask questions about it.
$ git clone repo && cd repo $ claude Ask away. Best method I’ve found so far for this.
Now when I ask questions about design decisions, the LLM refers to the original paper and cites the decisions without googling or hallucinating.
With just these two things in my local repo, the LLM created test scripts to compare our results versus the paper and fixed bugs automatically, helped me make decisions based on the paper's findings, helped me tune parameters based on the empirical outcomes, and even discovered a critical bug in our code that was caused by our training data being random generated versus the paper's training data being a permutation over the whole solution space.
All of this work was done in one evening and I'm still blown away by it. We even ported our code to golang, parallelized it, and saw a 10x speedup in the processing. Right before heading to bed, I had the LLM spin up a novel simulator using a quirky set of tests that I invented using hypothetical sensors and data that have not yet been implemented, and it nailed it first try - using smart abstractions and not touching the original engine implementation at all. This tech is getting freaky.