Introduction to Generative AI
Generative AI refers to the technology that generates content such as text, images, and videos based on user input. It utilizes models, which are mathematical equations trained on vast amounts of multimodal data, to produce outputs. One common type of model used in generative AI is the large language model (LLM), which predicts the next word in a sequence based on input queries.
- ▪Generative AI generates content based on user input like text, images, and videos.
- ▪Models used in generative AI are trained on multimodal data to create mathematical equations.
- ▪Large language models (LLMs) predict the next word in a sequence based on the input provided.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3911149) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Indumathi R Posted on May 24 Introduction to Generative AI #ai #beginners #machinelearning #tutorial What is Generative AI ? For the given user input(user query), output like text,image, video etc will be generated. This is called generative AI. How it generates content? A model will be used to generate output. i.e model will receive input and based on that, it will generate a output.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).