Python | Machine Learning | Coding | R pinned «You can buy promotion or ads in our channel Channel: @codeprogrammer Format: 4h in top/2days Price: 13$ Contact t.me/HusseinSheikho»
👨🏻💻 In a recent GitHub report, with the expansion of artificial intelligence, Python could finally overtake JavaScript and become the most popular language on GitHub in 2024. This happened after 10 years of JavaScript dominance and it is not very strange.
┌
├
https://t.me/CodeProgrammer
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Hey guys,
As you all know, the purpose of this community is to share notes and grow together. Hence, today I am sharing with you an app called DevBytes. It keeps you updated about dev and tech news.
This brilliant app provides curated, bite-sized updates on the latest tech news/dev content. Whether it’s new frameworks, AI breakthroughs, or cloud services, DevBytes brings the essentials straight to you.
If you're tired of information overload and want a smarter way to stay informed, give DevBytes a try.
Download here: https://play.google.com/store/apps/details?id=com.candelalabs.devbytes&hl=en-IN
It’s time to read less and know more!
As you all know, the purpose of this community is to share notes and grow together. Hence, today I am sharing with you an app called DevBytes. It keeps you updated about dev and tech news.
This brilliant app provides curated, bite-sized updates on the latest tech news/dev content. Whether it’s new frameworks, AI breakthroughs, or cloud services, DevBytes brings the essentials straight to you.
If you're tired of information overload and want a smarter way to stay informed, give DevBytes a try.
Download here: https://play.google.com/store/apps/details?id=com.candelalabs.devbytes&hl=en-IN
It’s time to read less and know more!
Google Play
DevBytes-For Busy Developers – Apps on Google Play
Get the latest tech news, coding tips, and programming insights for developers.
This media is not supported in your browser
VIEW IN TELEGRAM
What is a 𝗩𝗲𝗰𝘁𝗼𝗿 𝗗𝗮𝘁𝗮𝗯𝗮𝘀𝗲?
With the rise of Foundational Models, Vector Databases skyrocketed in popularity. The truth is that a Vector Database is also useful outside of a Large Language Model context.
When it comes to Machine Learning, we often deal with Vector Embeddings. Vector Databases were created to perform specifically well when working with them:
➡️ Storing.
➡️ Updating.
➡️ Retrieving.
When we talk about retrieval, we refer to retrieving set of vectors that are most similar to a query in a form of a vector that is embedded in the same Latent space. This retrieval procedure is called Approximate Nearest Neighbour (ANN) search.
A query here could be in a form of an object like an image for which we would like to find similar images. Or it could be a question for which we want to retrieve relevant context that could later be transformed into an answer via a LLM.
Let’s look into how one would interact with a Vector Database:
𝗪𝗿𝗶𝘁𝗶𝗻𝗴/𝗨𝗽𝗱𝗮𝘁𝗶𝗻𝗴 𝗗𝗮𝘁𝗮.
1. Choose a ML model to be used to generate Vector Embeddings.
2. Embed any type of information: text, images, audio, tabular. Choice of ML model used for embedding will depend on the type of data.
3. Get a Vector representation of your data by running it through the Embedding Model.
4. Store additional metadata together with the Vector Embedding. This data would later be used to pre-filter or post-filter ANN search results.
5. Vector DB indexes Vector Embedding and metadata separately. There are multiple methods that can be used for creating vector indexes, some of them: Random Projection, Product Quantization, Locality-sensitive Hashing.
6. Vector data is stored together with indexes for Vector Embeddings and metadata connected to the Embedded objects.
𝗥𝗲𝗮𝗱𝗶𝗻𝗴 𝗗𝗮𝘁𝗮.
7. A query to be executed against a Vector Database will usually consist of two parts:
➡️ Data that will be used for ANN search. e.g. an image for which you want to find similar ones.
➡️ Metadata query to exclude Vectors that hold specific qualities known beforehand. E.g. given that you are looking for similar images of apartments - exclude apartments in a specific location.
8. You execute Metadata Query against the metadata index. It could be done before or after the ANN search procedure.
9. You embed the data into the Latent space with the same model that was used for writing the data to the Vector DB.
10. ANN search procedure is applied and a set of Vector embeddings are retrieved. Popular similarity measures for ANN search include: Cosine Similarity, Euclidean Distance, Dot Product.
How are you using Vector DBs? Let me know in the comment section!
#RAG #LLM #DataEngineering
https://t.me/CodeProgrammer✅
With the rise of Foundational Models, Vector Databases skyrocketed in popularity. The truth is that a Vector Database is also useful outside of a Large Language Model context.
When it comes to Machine Learning, we often deal with Vector Embeddings. Vector Databases were created to perform specifically well when working with them:
When we talk about retrieval, we refer to retrieving set of vectors that are most similar to a query in a form of a vector that is embedded in the same Latent space. This retrieval procedure is called Approximate Nearest Neighbour (ANN) search.
A query here could be in a form of an object like an image for which we would like to find similar images. Or it could be a question for which we want to retrieve relevant context that could later be transformed into an answer via a LLM.
Let’s look into how one would interact with a Vector Database:
𝗪𝗿𝗶𝘁𝗶𝗻𝗴/𝗨𝗽𝗱𝗮𝘁𝗶𝗻𝗴 𝗗𝗮𝘁𝗮.
1. Choose a ML model to be used to generate Vector Embeddings.
2. Embed any type of information: text, images, audio, tabular. Choice of ML model used for embedding will depend on the type of data.
3. Get a Vector representation of your data by running it through the Embedding Model.
4. Store additional metadata together with the Vector Embedding. This data would later be used to pre-filter or post-filter ANN search results.
5. Vector DB indexes Vector Embedding and metadata separately. There are multiple methods that can be used for creating vector indexes, some of them: Random Projection, Product Quantization, Locality-sensitive Hashing.
6. Vector data is stored together with indexes for Vector Embeddings and metadata connected to the Embedded objects.
𝗥𝗲𝗮𝗱𝗶𝗻𝗴 𝗗𝗮𝘁𝗮.
7. A query to be executed against a Vector Database will usually consist of two parts:
8. You execute Metadata Query against the metadata index. It could be done before or after the ANN search procedure.
9. You embed the data into the Latent space with the same model that was used for writing the data to the Vector DB.
10. ANN search procedure is applied and a set of Vector embeddings are retrieved. Popular similarity measures for ANN search include: Cosine Similarity, Euclidean Distance, Dot Product.
How are you using Vector DBs? Let me know in the comment section!
#RAG #LLM #DataEngineering
https://t.me/CodeProgrammer
Please open Telegram to view this post
VIEW IN TELEGRAM
Media is too big
VIEW IN TELEGRAM
📹 3blue1brown presented the shortest and most understandable lecture on neural networks!
In the new episode, he talks about the mechanism of attention and transformers. The lecture has become even more concise and exciting!
Ideal for absolute beginners and even those who are far from technical.
The author managed to explain the key aspects of the neural network in just 9 minutes using bright graphics and simple examples.
📌 Original
📂 Tags: #DataScience #Python #ML #AI #LLM #BIGDATA #Courses #Transformer
http://t.me/codeprogrammer⭐️
In the new episode, he talks about the mechanism of attention and transformers. The lecture has become even more concise and exciting!
Ideal for absolute beginners and even those who are far from technical.
The author managed to explain the key aspects of the neural network in just 9 minutes using bright graphics and simple examples.
http://t.me/codeprogrammer
Please open Telegram to view this post
VIEW IN TELEGRAM
In the #AIPythonforBeginners course series you'll learn how to identify strings, integers, and floats with the type() function, and build a solid Python foundation for your AI journey.
Enroll Free: https://learn.deeplearning.ai/courses/ai-python-for-beginners
http://t.me/codeprogrammer
Please open Telegram to view this post
VIEW IN TELEGRAM
Python | Machine Learning | Coding | R
Hey guys, As you all know, the purpose of this community is to share notes and grow together. Hence, today I am sharing with you an app called DevBytes. It keeps you updated about dev and tech news. This brilliant app provides curated, bite-sized updates…
I highly recommend downloading the app, there is a solid guide to mastering AI.
http://t.me/codeprogrammer
Please open Telegram to view this post
VIEW IN TELEGRAM
Python List Methods clearly Explained
📂 Tags: #DataScience #Python #ML #AI #LLM #BIGDATA #Courses #Transformer
http://t.me/codeprogrammer⭐️
http://t.me/codeprogrammer
Please open Telegram to view this post
VIEW IN TELEGRAM
http://t.me/codeprogrammer
Please open Telegram to view this post
VIEW IN TELEGRAM
List of Running Processes using Python
📂 Tags: #DataScience #Python #ML #AI #LLM #BIGDATA #Courses #Transformer
http://t.me/codeprogrammer⭐️
http://t.me/codeprogrammer
Please open Telegram to view this post
VIEW IN TELEGRAM
Pandas is getting outdated.
5 reasons you should move to FireDucks 👇
1. Requires changing ONLY ONE line of code:
↳ Replace "𝗶𝗺𝗽𝗼𝗿𝘁 𝗽𝗮𝗻𝗱𝗮𝘀 𝗮𝘀 𝗽𝗱" with "𝗶𝗺𝗽𝗼𝗿𝗲 𝗳𝗶𝗿𝗲𝗱𝘂𝗰𝗸𝘀.𝗽𝗮𝗻𝗱𝗮𝘀 𝗮𝘀 𝗽𝗱"
↳ The rest of the entire code remains the same.
↳ So, if you know Pandas, you already know how to use FireDucks.
↳ Done!
2. Ridiculously faster as per official benchmarks:
↳ Modin had an average speed-up of 0.9x over Pandas.
↳ Polars had an average speed-up of 39x over Pandas.
↳ But FireDucks had an average speed-up of 50x over Pandas.
3. Pandas is single-core; FireDucks is multi-core.
4. Pandas follows eager execution; FireDucks is based on lazy execution. This way, FireDucks can build a logical execution plan and apply possible optimizations.
5. That said, even under eager execution, FireDucks is way faster than Pandas, as depicted in the image below.
📂 Tags: #DataScience #Python #ML #AI #LLM #BIGDATA #Courses #Pandas #FireDucks
http://t.me/codeprogrammer⭐️
5 reasons you should move to FireDucks 👇
1. Requires changing ONLY ONE line of code:
↳ Replace "𝗶𝗺𝗽𝗼𝗿𝘁 𝗽𝗮𝗻𝗱𝗮𝘀 𝗮𝘀 𝗽𝗱" with "𝗶𝗺𝗽𝗼𝗿𝗲 𝗳𝗶𝗿𝗲𝗱𝘂𝗰𝗸𝘀.𝗽𝗮𝗻𝗱𝗮𝘀 𝗮𝘀 𝗽𝗱"
↳ The rest of the entire code remains the same.
↳ So, if you know Pandas, you already know how to use FireDucks.
↳ Done!
2. Ridiculously faster as per official benchmarks:
↳ Modin had an average speed-up of 0.9x over Pandas.
↳ Polars had an average speed-up of 39x over Pandas.
↳ But FireDucks had an average speed-up of 50x over Pandas.
3. Pandas is single-core; FireDucks is multi-core.
4. Pandas follows eager execution; FireDucks is based on lazy execution. This way, FireDucks can build a logical execution plan and apply possible optimizations.
5. That said, even under eager execution, FireDucks is way faster than Pandas, as depicted in the image below.
http://t.me/codeprogrammer
Please open Telegram to view this post
VIEW IN TELEGRAM
5 Free Courses for Mastering LLMs
Link: https://machinelearningmastery.com/5-free-courses-mastering-llms
https://t.me/CodeProgrammer✅
Link: https://machinelearningmastery.com/5-free-courses-mastering-llms
https://t.me/CodeProgrammer
Please open Telegram to view this post
VIEW IN TELEGRAM
Forwarded from Tomas
📈How to make $15,000 in a month in 2024?
Easy!!! Lisa is now the hippest trader who is showing crazy results in the market!
She was able to make over $15,000 in the last month! ❗️
Right now she has started a marathon on her channel and is running it absolutely free. 💡
To participate in the marathon, you will need to :
1. Subscribe to the channel SIGNALS BY LISA TRADER 📈
2. Write in private messages : “Marathon” and start participating!
👉CLICK HERE👈
Easy!!! Lisa is now the hippest trader who is showing crazy results in the market!
She was able to make over $15,000 in the last month! ❗️
Right now she has started a marathon on her channel and is running it absolutely free. 💡
To participate in the marathon, you will need to :
1. Subscribe to the channel SIGNALS BY LISA TRADER 📈
2. Write in private messages : “Marathon” and start participating!
👉CLICK HERE👈
Master #DataAnalytics for real-world problems. I have curated a list of 40 Data Analytics Projects (solved & explained) that will help you build analytics skills using #Python.
Includes projects like:
1. Rainfall Trends in India Analysis
2. Netflix Content Strategy Analysis
3. Creating a Mutual Fund Plan
4. Stock Market Portfolio Optimization
5. Metro Operations Optimization
6. Analyzing the Impact of Carbon Emissions
Find this list of projects here:
https://thecleverprogrammer.com/2024/11/01/data-analytics-projects-with-python/
📂 Tags: #DataScience #Python #ML #AI #LLM #BIGDATA #Courses #Pandas #deeplearning #Projects
http://t.me/codeprogrammer⭐️
Includes projects like:
1. Rainfall Trends in India Analysis
2. Netflix Content Strategy Analysis
3. Creating a Mutual Fund Plan
4. Stock Market Portfolio Optimization
5. Metro Operations Optimization
6. Analyzing the Impact of Carbon Emissions
Find this list of projects here:
https://thecleverprogrammer.com/2024/11/01/data-analytics-projects-with-python/
http://t.me/codeprogrammer
Please open Telegram to view this post
VIEW IN TELEGRAM
Best LLMs Courses
Link: https://www.mltut.com/best-large-language-models-courses/
#MachineLearning #DeepLearning #BigData #Datascience #ML #HealthTech #DataVisualization #ArtificialInteligence #SoftwareEngineering #GenAI #deeplearning #ChatGPT #OpenAI #python #AI #keras #SQL #Statistics #LLMs #AIagents
http://t.me/codeprogrammer⭐️
Link: https://www.mltut.com/best-large-language-models-courses/
#MachineLearning #DeepLearning #BigData #Datascience #ML #HealthTech #DataVisualization #ArtificialInteligence #SoftwareEngineering #GenAI #deeplearning #ChatGPT #OpenAI #python #AI #keras #SQL #Statistics #LLMs #AIagents
http://t.me/codeprogrammer
Please open Telegram to view this post
VIEW IN TELEGRAM
👨🏻💻 The first time I used Pandas, I was supposed to quickly clean and organize a raw and complex dataset with the help of Pandas functions. Using the groupby function, I was able to categorize the data and get in-depth analysis of customer behavior. Best of all, it was when I used loc and iloc that I could easily filter the data.
┌
└
#MachineLearning #DeepLearning #BigData #Datascience #ML #Pandas #DataVisualization #ArtificialInteligence #SoftwareEngineering #GenAI #deeplearning #ChatGPT #OpenAI #python #AI #keras #SQL #Statistics #LLMs #AIagents
http://t.me/codeprogrammer
Please open Telegram to view this post
VIEW IN TELEGRAM
Regression & Classification Loss Functions
#MachineLearning #DeepLearning #BigData #Datascience #ML #Pandas #DataVisualization #ArtificialInteligence #SoftwareEngineering #GenAI #deeplearning #ChatGPT #OpenAI #python #AI #keras #SQL #Statistics #LLMs #AIagents
http://t.me/codeprogrammer⭐️
#MachineLearning #DeepLearning #BigData #Datascience #ML #Pandas #DataVisualization #ArtificialInteligence #SoftwareEngineering #GenAI #deeplearning #ChatGPT #OpenAI #python #AI #keras #SQL #Statistics #LLMs #AIagents
http://t.me/codeprogrammer
Please open Telegram to view this post
VIEW IN TELEGRAM
Python Network Programming Cheat Sheet 🖥
#MachineLearning #DeepLearning #BigData #Datascience #ML #Pandas #DataVisualization #ArtificialInteligence #SoftwareEngineering #GenAI #deeplearning #ChatGPT #OpenAI #python #AI #keras #SQL #Statistics #LLMs #AIagents
http://t.me/codeprogrammer✅
#MachineLearning #DeepLearning #BigData #Datascience #ML #Pandas #DataVisualization #ArtificialInteligence #SoftwareEngineering #GenAI #deeplearning #ChatGPT #OpenAI #python #AI #keras #SQL #Statistics #LLMs #AIagents
http://t.me/codeprogrammer
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM