You can not get a non-hallucinating AI in 2023.
Ask HN: How do I train a custom LLM/ChatGPT on my own documents in Dec 2023?
181–190 of 247 posts
Re: Ask HN: How do I train a custom LLM/ChatGPT on my own documents in Dec 2023?
#182Re: Ask HN: How do I train a custom LLM/ChatGPT on my own documents in Dec 2023?
#183I have a question for which I haven't found a definitive answer yet: is how can one effectively manage typos and Out-of-Vocabulary (OOV) words in RAG systems? For instance, if I search for a specific product name but accidentally mistype it, the resulting encoded vector might not be similar to the vector for the correctly spelled product name ?
Re: Ask HN: How do I train a custom LLM/ChatGPT on my own documents in Dec 2023?
#184You can not get a non-hallucinating AI in 2023.
At least, that's what I've rapidly been concluding.
I'm still holding out a bit of hope for there being more though.
Re: Ask HN: How do I train a custom LLM/ChatGPT on my own documents in Dec 2023?
#185Re: Ask HN: How do I train a custom LLM/ChatGPT on my own documents in Dec 2023?
#186I'm curious about this as well but my data is mostly (95%) numerical metrics. Is there a "RAG" mechanism for numerical data instead of text? My use case is data analysis, insight discovery for example.
There are also examples that combine semantic retrieval and structured retrieval.
Re: Ask HN: How do I train a custom LLM/ChatGPT on my own documents in Dec 2023?
#187Earlier quoted context omitted.
Or just using a traditional search engine and "rag" plus literally any ML/AI/LLM term will yield a half dozen results at the top with "Retrieval-augmented generation" in the page title.
Or people could just not use obscure acronyms when discussing specialised topics on an open forum?
Re: Ask HN: How do I train a custom LLM/ChatGPT on my own documents in Dec 2023?
#188Would a five years old laptop work? Do you need a beefy GPU? Are you using some prepackaged software?
Re: Ask HN: How do I train a custom LLM/ChatGPT on my own documents in Dec 2023?
#189And what’s the correct answer in December 2023 if one wants to narrow down only to tools and services provided on Azure?
https://github.com/microsoft/semantic-kernel Semantic Kernel is MS's response to LangChain and LlamaIndex - available for .NET, python and Java. Using their Memory support (using Azure Cognitive Search), it gives a powerful RAG quickstart, which you can combined with Azure Document Intelligence to chunk your source documentation into memories that your foundational models can later use. (Disclaimer: Its only very rec…