π6β€4
David Baum - Generative AI and LLMs for Dummies (2024).pdf
1.9 MB
Generative AI and LLMs for Dummies
David Baum, 2024
David Baum, 2024
β€2π2
Microsoft Generative AI Training Course βοΈ
https://github.com/microsoft/generative-ai-for-beginners
https://github.com/microsoft/generative-ai-for-beginners
π2
π A collection of the good Gen AI free courses
πΉ Generative artificial intelligence
1οΈβ£ Generative AI for Beginners course : building generative artificial intelligence apps.
2οΈβ£ Generative AI Fundamentals course : getting to know the basic principles of generative artificial intelligence.
3οΈβ£ Intro to Gen AI course : from learning large language models to understanding the principles of responsible artificial intelligence.
4οΈβ£ Generative AI with LLMs course : Learn business applications of artificial intelligence with AWS experts in a practical way.
5οΈβ£ Generative AI for Everyone course : This course tells you what generative artificial intelligence is, how it works, and what uses and limitations it has.
πΉ Generative artificial intelligence
1οΈβ£ Generative AI for Beginners course : building generative artificial intelligence apps.
2οΈβ£ Generative AI Fundamentals course : getting to know the basic principles of generative artificial intelligence.
3οΈβ£ Intro to Gen AI course : from learning large language models to understanding the principles of responsible artificial intelligence.
4οΈβ£ Generative AI with LLMs course : Learn business applications of artificial intelligence with AWS experts in a practical way.
5οΈβ£ Generative AI for Everyone course : This course tells you what generative artificial intelligence is, how it works, and what uses and limitations it has.
π2β€1
π’ 5-Day Generative AI Intensive Course with #Google is now available as a self-paced Learn Guide!
Access whitepapers, podcasts, code labs, & recorded livestreams. Additionally, there is a bonus assignment for you!
https://www.kaggle.com/learn-guide/5-day-genai
React β€οΈ for more
Access whitepapers, podcasts, code labs, & recorded livestreams. Additionally, there is a bonus assignment for you!
https://www.kaggle.com/learn-guide/5-day-genai
React β€οΈ for more
Kaggle
5-Day Gen AI Intensive Course with Google
Kaggle is the worldβs largest data science community with powerful tools and resources to help you achieve your data science goals.
10 GitHub Repositories to Master LLM
β brexhq/prompt-engineering
Tips and examples to improve your prompt engineering skills.
π GitHub
β mlabonne/llm-course
A full course with tutorials and hands-on LLM projects.
π GitHub
β Hannibal046/Awesome-LLM
Curated list of LLM papers, tools, and tutorials.
π GitHub
β WooooDyy/LLM-Agent-Paper-List
Research papers focused on LLM-based agents.
π GitHub
β avvorstenbosch/Masterclass-LLMs-for-Data-Science
Guide to using LLMs in data workflows, with exercises.
π GitHub
β Shubhamsaboo/awesome-llm-apps
Real-world LLM apps using OpenAI, Gemini, and more.
π GitHub
β BradyFU/Awesome-Multimodal-LLM
Resources on LLMs that handle text, images, and audio.
π GitHub
β HandsOnLLM/Hands-On-LLM
Code examples from the O'Reilly hands-on LLM book.
π GitHub
β SylphAI-Inc/LLM-engineer-handbook
Handbook for building and deploying LLMs.
π GitHub
β rasbt/LLMs-from-scratch
Build a GPT-style model in PyTorch from scratch.
π GitHub
β brexhq/prompt-engineering
Tips and examples to improve your prompt engineering skills.
π GitHub
β mlabonne/llm-course
A full course with tutorials and hands-on LLM projects.
π GitHub
β Hannibal046/Awesome-LLM
Curated list of LLM papers, tools, and tutorials.
π GitHub
β WooooDyy/LLM-Agent-Paper-List
Research papers focused on LLM-based agents.
π GitHub
β avvorstenbosch/Masterclass-LLMs-for-Data-Science
Guide to using LLMs in data workflows, with exercises.
π GitHub
β Shubhamsaboo/awesome-llm-apps
Real-world LLM apps using OpenAI, Gemini, and more.
π GitHub
β BradyFU/Awesome-Multimodal-LLM
Resources on LLMs that handle text, images, and audio.
π GitHub
β HandsOnLLM/Hands-On-LLM
Code examples from the O'Reilly hands-on LLM book.
π GitHub
β SylphAI-Inc/LLM-engineer-handbook
Handbook for building and deploying LLMs.
π GitHub
β rasbt/LLMs-from-scratch
Build a GPT-style model in PyTorch from scratch.
π GitHub
π7
COMMON TERMINOLOGIES IN PYTHON - PART 1
Have you ever gotten into a discussion with a programmer before? Did you find some of the Terminologies mentioned strange or you didn't fully understand them?
In this series, we would be looking at the common Terminologies in python.
It is important to know these Terminologies to be able to professionally/properly explain your codes to people and/or to be able to understand what people say in an instant when these codes are mentioned. Below are a few:
IDLE (Integrated Development and Learning Environment) - this is an environment that allows you to easily write Python code. IDLE can be used to execute a single statements and create, modify, and execute Python scripts.
Python Shell - This is the interactive environment that allows you to type in python code and execute them immediately
System Python - This is the version of python that comes with your operating system
Prompt - usually represented by the symbol ">>>" and it simply means that python is waiting for you to give it some instructions
REPL (Read-Evaluate-Print-Loop) - this refers to the sequence of events in your interactive window in form of a loop (python reads the code inputted>the code is evaluated>output is printed)
Argument - this is a value that is passed to a function when called eg print("Hello World")... "Hello World" is the argument that is being passed.
Function - this is a code that takes some input, known as arguments, processes that input and produces an output called a return value. E.g print("Hello World")... print is the function
Return Value - this is the value that a function returns to the calling script or function when it completes its task (in other words, Output). E.g.
>>> print("Hello World")
Hello World
Where Hello World is your return value.
Note: A return value can be any of these variable types: handle, integer, object, or string
Script - This is a file where you store your python code in a text file and execute all of the code with a single command
Script files - this is a file containing a group of python scripts
Have you ever gotten into a discussion with a programmer before? Did you find some of the Terminologies mentioned strange or you didn't fully understand them?
In this series, we would be looking at the common Terminologies in python.
It is important to know these Terminologies to be able to professionally/properly explain your codes to people and/or to be able to understand what people say in an instant when these codes are mentioned. Below are a few:
IDLE (Integrated Development and Learning Environment) - this is an environment that allows you to easily write Python code. IDLE can be used to execute a single statements and create, modify, and execute Python scripts.
Python Shell - This is the interactive environment that allows you to type in python code and execute them immediately
System Python - This is the version of python that comes with your operating system
Prompt - usually represented by the symbol ">>>" and it simply means that python is waiting for you to give it some instructions
REPL (Read-Evaluate-Print-Loop) - this refers to the sequence of events in your interactive window in form of a loop (python reads the code inputted>the code is evaluated>output is printed)
Argument - this is a value that is passed to a function when called eg print("Hello World")... "Hello World" is the argument that is being passed.
Function - this is a code that takes some input, known as arguments, processes that input and produces an output called a return value. E.g print("Hello World")... print is the function
Return Value - this is the value that a function returns to the calling script or function when it completes its task (in other words, Output). E.g.
>>> print("Hello World")
Hello World
Where Hello World is your return value.
Note: A return value can be any of these variable types: handle, integer, object, or string
Script - This is a file where you store your python code in a text file and execute all of the code with a single command
Script files - this is a file containing a group of python scripts
π2