• ClipSaver
  • dtub.ru
ClipSaver
Русские видео
  • Смешные видео
  • Приколы
  • Обзоры
  • Новости
  • Тесты
  • Спорт
  • Любовь
  • Музыка
  • Разное
Сейчас в тренде
  • Фейгин лайф
  • Три кота
  • Самвел адамян
  • А4 ютуб
  • скачать бит
  • гитара с нуля
Иностранные видео
  • Funny Babies
  • Funny Sports
  • Funny Animals
  • Funny Pranks
  • Funny Magic
  • Funny Vines
  • Funny Virals
  • Funny K-Pop

Episode 2: Building AI for ERP. Contextualizing Data with RAG | Solving Hallucinations in ERPNext скачать в хорошем качестве

Episode 2: Building AI for ERP. Contextualizing Data with RAG | Solving Hallucinations in ERPNext 2 месяца назад

скачать видео

скачать mp3

скачать mp4

поделиться

телефон с камерой

телефон с видео

бесплатно

загрузить,

Не удается загрузить Youtube-плеер. Проверьте блокировку Youtube в вашей сети.
Повторяем попытку...
Episode 2:  Building AI for ERP. Contextualizing Data with RAG | Solving Hallucinations in ERPNext
  • Поделиться ВК
  • Поделиться в ОК
  •  
  •  


Скачать видео с ютуб по ссылке или смотреть без блокировок на сайте: Episode 2: Building AI for ERP. Contextualizing Data with RAG | Solving Hallucinations in ERPNext в качестве 4k

У нас вы можете посмотреть бесплатно Episode 2: Building AI for ERP. Contextualizing Data with RAG | Solving Hallucinations in ERPNext или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:

  • Информация по загрузке:

Скачать mp3 с ютуба отдельным файлом. Бесплатный рингтон Episode 2: Building AI for ERP. Contextualizing Data with RAG | Solving Hallucinations in ERPNext в формате MP3:


Если кнопки скачивания не загрузились НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу страницы.
Спасибо за использование сервиса ClipSaver.ru



Episode 2: Building AI for ERP. Contextualizing Data with RAG | Solving Hallucinations in ERPNext

In this second episode of our AI series, we move beyond the initial server setup to explore the critical role of data preparation and contextualization. We discuss why simply installing a model like Qwen is not enough to handle the complex requirements of an ERP system. The Mechanics of Next-Word Prediction Large Language Models function by finding the most probable next word or letter in a sequence. This process is based on the foundational concept of Attention from the paper Attention is All You Need, which allows models to process tokens and predict subsequent text through transformers. Without specific guidance, a model will choose the most statistically likely word based on its general training, which leads to inaccurate results in a specialized business setting. The ERP Challenge: Why General AI Hallucinates A standard LLM often provides incorrect but polite guesses, or hallucinations, when asked to write SQL for ERP systems because it lacks specific attention to your database structure. For example, a general model might try to select data from a table named customers, but in ERPNext, the correct table name is tabCustomer. Furthermore, models struggle with ambiguity; a user might ask about John or pens, but the system requires specific Customer Codes like T0034 or Item Codes like ITM-001 to execute a valid query. The problem is even greater with private apps and custom fields that are not published on GitHub, as the LLM has no way to guess these internal table and field names. Reducing Hallucinations with RAG To solve these issues and achieve accurate results, we implement Retrieval-Augmented Generation, or RAG. This architecture works in three specific stages: 1. Retrieval: The system retrieves specific facts from your local server, such as master table data, table names, field names, and the joins needed to connect them. 2. Augmentation: The original user question is enhanced or augmented with this retrieved metadata to provide the necessary context. 3. Generation: The LLM generates a precise response or SQL query grounded in these actual system facts rather than general probability. The Role of Embedding Models We use embedding models like Nomic-AI to convert words and schema into vectors, which are multi-dimensional numbers. These models allow the system to perform mathematical matching to find the nearest neighbor to a user's query among billions of parameters. By supplying the right context as vectors, we shift the mathematical weight so the model generates the correct business logic instead of a generic answer. Why RAG Focuses on Schema over Transactions While it might seem helpful to send millions of sales invoices as context, transaction data is far too massive for an LLM to process efficiently. Instead, we use RAG to provide the map—specifically master tables, field names, and joins—and then rely on SQL or ORM to calculate totals and sums from the actual records. This ensures the AI provides the correct query to handle the heavy data processing. Key Topics Covered: The fundamental logic of Transformers and Attention. Why generic LLMs fail with private ERPNext apps and custom fields. Using RAG to ground AI in master table data and specific schema. The difference between processing transactions and providing context. How embedding models like Nomic-AI manage mathematical vectors. #ERPNext #AI #RAG #Qwen #MachineLearning #SQL #OpenSource #DataScience #Python #softwareengineering #erp www.erpgulf.com

Comments
  • Все стратегии RAG объясняются за 13 минут (без лишних слов) 4 месяца назад
    Все стратегии RAG объясняются за 13 минут (без лишних слов)
    Опубликовано: 4 месяца назад
  • Episode 3: Technical Implementation—Fine-Tuning, Enriched Schemas, and Deployment 2 месяца назад
    Episode 3: Technical Implementation—Fine-Tuning, Enriched Schemas, and Deployment
    Опубликовано: 2 месяца назад
  • Учить Golang или Rust в 2026 2 дня назад
    Учить Golang или Rust в 2026
    Опубликовано: 2 дня назад
  • ZATCA Intermediary Server for Legacy Systems , SAP, Oracle etc | Built on ERPNext 10 месяцев назад
    ZATCA Intermediary Server for Legacy Systems , SAP, Oracle etc | Built on ERPNext
    Опубликовано: 10 месяцев назад
  • Representing Data using JavaScript Object Notation - JSON 2 недели назад
    Representing Data using JavaScript Object Notation - JSON
    Опубликовано: 2 недели назад
  • Building an AI Agent for ERPNext - By ERPGulf  - Episode-1 2 месяца назад
    Building an AI Agent for ERPNext - By ERPGulf - Episode-1
    Опубликовано: 2 месяца назад
  • Почему AI генерит мусор — и как заставить его писать нормальный код 3 недели назад
    Почему AI генерит мусор — и как заставить его писать нормальный код
    Опубликовано: 3 недели назад
  • RAG vs Agentic AI: How LLMs Connect Data for Smarter AI 3 месяца назад
    RAG vs Agentic AI: How LLMs Connect Data for Smarter AI
    Опубликовано: 3 месяца назад
  • Meta сократит 20% айтишников, ИИ обанкротил компанию, Мозг загрузили в аватар | Как Там АйТи #90 3 дня назад
    Meta сократит 20% айтишников, ИИ обанкротил компанию, Мозг загрузили в аватар | Как Там АйТи #90
    Опубликовано: 3 дня назад
  • СПАСЕТ ЛИ ПУТИНА ВОЙНА В ИРАНЕ? БЕСЕДА С ИГОРЕМ ЛИПСИЦЕМ @ИГОРЬ ЛИПСИЦ Трансляция закончилась 11 часов назад
    СПАСЕТ ЛИ ПУТИНА ВОЙНА В ИРАНЕ? БЕСЕДА С ИГОРЕМ ЛИПСИЦЕМ @ИГОРЬ ЛИПСИЦ
    Опубликовано: Трансляция закончилась 11 часов назад
  • Гениальная самоделка Ирана: Самое ненавистное оружие 21 века, которое переписало правила войны 2 дня назад
    Гениальная самоделка Ирана: Самое ненавистное оружие 21 века, которое переписало правила войны
    Опубликовано: 2 дня назад
  • Сергей Дацюк. ИИ скоро осознает себя, но мы этого не заметим. 1 день назад
    Сергей Дацюк. ИИ скоро осознает себя, но мы этого не заметим.
    Опубликовано: 1 день назад
  • 💥Утренний выпуск новостей 19.03.26 2 часа назад
    💥Утренний выпуск новостей 19.03.26
    Опубликовано: 2 часа назад
  • Бывший рекрутер Google объясняет, почему «ложь» помогает получить работу. 2 месяца назад
    Бывший рекрутер Google объясняет, почему «ложь» помогает получить работу.
    Опубликовано: 2 месяца назад
  • Лоуренс Уилкерсон: Поражение США в Иране изменит мир 21 час назад
    Лоуренс Уилкерсон: Поражение США в Иране изменит мир
    Опубликовано: 21 час назад
  • MCP против API: что нужно знать каждому разработчику 4 месяца назад
    MCP против API: что нужно знать каждому разработчику
    Опубликовано: 4 месяца назад
  • The AI + ERPNext Attempt That Failed — And Sparked Our Breakthrough 4 месяца назад
    The AI + ERPNext Attempt That Failed — And Sparked Our Breakthrough
    Опубликовано: 4 месяца назад
  • 20 концепций искусственного интеллекта, объясненных за 40 минут 5 месяцев назад
    20 концепций искусственного интеллекта, объясненных за 40 минут
    Опубликовано: 5 месяцев назад
  • КД 2 за 15 минут - универсальный обмен данными в 1С 7 дней назад
    КД 2 за 15 минут - универсальный обмен данными в 1С
    Опубликовано: 7 дней назад
  • НОЧНОЙ УДАР: Иран атакует Израиль. ПВО не справляется 20 часов назад
    НОЧНОЙ УДАР: Иран атакует Израиль. ПВО не справляется
    Опубликовано: 20 часов назад

Контактный email для правообладателей: u2beadvert@gmail.com © 2017 - 2026

Отказ от ответственности - Disclaimer Правообладателям - DMCA Условия использования сайта - TOS



Карта сайта 1 Карта сайта 2 Карта сайта 3 Карта сайта 4 Карта сайта 5