Project euler Problems Operators Assignment # Assigning memory location to a variable a = 5 Arthimetic + – * // (integer division quotient) % (modulus remainder) / (division) Equality == (equals) != (not equals) Logical and or not Comparision < <= > >= Problem 1 Problem statement memory locations result = 0 limit = 10… Continue reading Gen-AI Developer Classroom notes 22/Feb/2025
Tag: Generativeai
Gen-AI Developer Classroom notes 20/Feb/2025
Flow Control Program is statements to be executed in an order Flow control is all about controlling the sequence we will skip certain lines or execute certain lines multiple times We have two types conditional statements: They help in skipping statements popular: if (if else, if elseif, ) switch/case looping constructs: The help in executing… Continue reading Gen-AI Developer Classroom notes 20/Feb/2025
Gen-AI Developer Classroom notes 19/Feb/2025
Programming Foundations contd… Higher level languages Let’s understand the program for what it is
Gen AI Developer Notes 18/02/25
Tools and Frameworks Introduction to Programming Brainstorming ideas What we will be doing Traditional Programming How to come up with algorithms Lets solve celsius to farnheit Lets solve gst of a movie ticket (price including gst)
Gen AI Developer notes – 17/02/2025
Setups Setup Notes for windows Setup Notes for Mac Accounts Tools
Gen AI Classroom Notes – 14/02/2025
# How LLMS Work * To understand this we need to understand * Transformer * Attention * Temperature: Temparature of llm models make word prediction creative * Attention “` “` * Word Embeddings: These are all the words, these words are represented as vector in high dimensional space * Prompt: … Continue reading Gen AI Classroom Notes – 14/02/2025
Gen AI Classroom Notes -13/02/2025
# How Neural Networks work * Every nueron has an activation function and synapses have weights * To simplify lets think of a neural network for making a decision whether to hire an employee or not * Lets consider three weights * experince = 0.6 * skills = 0.3 … Continue reading Gen AI Classroom Notes -13/02/2025
Gen AI Classroom Notes – 12/02/2025
Supervised Machine Learning Supervised machine learning is a type of machine learning where the model learns from labeled data to make predictions. How It Works Types of Supervised Learning Real-World Applications In short, supervised learning is like teaching a child with correct answers first, so they can make predictions on their own later! Regression Regression is a type… Continue reading Gen AI Classroom Notes – 12/02/2025
