❔ Question 75: #MachineLearning
What is the primary goal of using cross-validation in model evaluation?
What is the primary goal of using cross-validation in model evaluation?
Anonymous Quiz
21%
To measure the model's performance on a single validation set.
61%
To assess the model’s performance on multiple subsets of the dataset to ensure robustness .
9%
To increase the size of the training dataset.
9%
To simplify the model's architecture and reduce complexity.
Python Data Science Jobs & Interviews
❔ Question 75: #MachineLearning
What is the primary goal of using cross-validation in model evaluation?
What is the primary goal of using cross-validation in model evaluation?
❤️ Cross-validation is a model evaluation technique designed to assess how well a machine learning model generalizes to unseen data.
✅ Cross-validation works by partitioning the dataset into multiple subsets, or folds. The model is trained on some of these folds and validated on the remaining ones, rotating the validation set across all folds. This approach provides a more comprehensive evaluation by ensuring that every data point is used for both training and validation. It helps to assess the model’s robustness and performance across different subsets of the data, reducing the risk of overfitting to any particular split and offering a more accurate estimate of how the model will perform on new, unseen data.
https://t.iss.one/DataScienceQ
✅ Cross-validation works by partitioning the dataset into multiple subsets, or folds. The model is trained on some of these folds and validated on the remaining ones, rotating the validation set across all folds. This approach provides a more comprehensive evaluation by ensuring that every data point is used for both training and validation. It helps to assess the model’s robustness and performance across different subsets of the data, reducing the risk of overfitting to any particular split and offering a more accurate estimate of how the model will perform on new, unseen data.
https://t.iss.one/DataScienceQ
Telegram
Python Data Science Jobs & Interviews
Your go-to hub for Python and Data Science—featuring questions, answers, quizzes, and interview tips to sharpen your skills and boost your career in the data-driven world.
Admin: @Hussein_Sheikho
Admin: @Hussein_Sheikho
❤3👍3
Question: What is the output of print tinylist * 2 if tinylist = [123, 'john']?
Anonymous Quiz
57%
[123, 'john', 123, 'john']
23%
[246, 'johnjohn']
14%
[123, 123, 'john', 'john']
6%
[246, 'john']
👍3
Which of the following is NOT a type of machine learning?
Anonymous Quiz
3%
Supervised leaning
8%
Unsupervised learning
71%
Predictive learning
18%
Reinforcement learning
👍3
Please open Telegram to view this post
VIEW IN TELEGRAM
👍5❤2
For each role except for data analyst where programming is not explicitly required, it’s important to learn a programming language like Python. Knowing SQL is equally as important for all roles.
Data science is the first role that embraces machine learning, and as you’re headging towards AI, you’ll see its subsets like deep learning, reinforcement learning, as well as computer vision and NLP.
https://t.iss.one/DataScienceQ
Data science is the first role that embraces machine learning, and as you’re headging towards AI, you’ll see its subsets like deep learning, reinforcement learning, as well as computer vision and NLP.
https://t.iss.one/DataScienceQ
👍4
Friendly reminder: Your hard work is appreciated. 💜
❤6❤🔥2
What is the most important step in the data science process?
Anonymous Quiz
29%
Data collection
39%
Data cleaning
26%
Data analysis
6%
Data visualization
🔥5
Python Data Science Jobs & Interviews
What is the most important step in the data science process?
Explanation :
While all steps are crucial, clean and accurate data is the foundation for any successful data science project!
While all steps are crucial, clean and accurate data is the foundation for any successful data science project!
👍5
What type of project do you enjoy working on the most?
1. Personal projects
2. Open-source contributions
3. Freelance work
4. Corporate projects
5. Academic projects
If any other, add in comments 👇👇
1. Personal projects
2. Open-source contributions
3. Freelance work
4. Corporate projects
5. Academic projects
If any other, add in comments 👇👇
👍7
Which of the following is a common programming language used in data science?
Anonymous Quiz
67%
Python
6%
R
3%
Java
24%
Both A & B
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.
👍4❤2
import array as arr
My_Array=arr.array('i',[1,2,3,4,5])
My_Array[::-1]
Output: array('i', [5, 4, 3, 2, 1])
Please open Telegram to view this post
VIEW IN TELEGRAM
👍6
⚡️ Read the article
https://t.iss.one/DataScienceQ
Please open Telegram to view this post
VIEW IN TELEGRAM
👍5
Forwarded from Tomas
🤑EARN YOUR $100 TODAY! EASY!
Lisa Trader has launched a free marathon on her VIP channel.
Now absolutely everyone can earn from trading. It has become even easier to earn in the cryptocurrency market, you can start today!
WHAT DO YOU NEED TO START?
1. Subscribe to the channel SIGNALS BY LISA TRADER 📈.
2. Write “MARATHON” in private messages. She will then tell you how to get on the vip channel for absolutely FREE!
👉CLICK HERE👈
👉CLICK HERE👈
👉CLICK HERE👈
Lisa Trader has launched a free marathon on her VIP channel.
Now absolutely everyone can earn from trading. It has become even easier to earn in the cryptocurrency market, you can start today!
WHAT DO YOU NEED TO START?
1. Subscribe to the channel SIGNALS BY LISA TRADER 📈.
2. Write “MARATHON” in private messages. She will then tell you how to get on the vip channel for absolutely FREE!
👉CLICK HERE👈
👉CLICK HERE👈
👉CLICK HERE👈
👍4
1. In the outer_func function, x is created with the value 2.
2. Next, the inner_func function is declared, it does not remember the value of x or y immediately, but will receive it only when it is used.
3. x becomes equal to x + 2, i.e. 4, y is declared with the value 2
4. the return block (x(4) + y(2) = 6) is executed.
5. Despite declaring the value y = 3, the inner_func function will be called only after returning the value y = 2. Therefore, the output will be 6.
https://t.iss.one/DataScienceQ
Please open Telegram to view this post
VIEW IN TELEGRAM
👍14❤1
LOOKING FOR A NEW SOURCE OF INCOME?
Average earnings from 100$ a day
Lisa is looking for people who want to earn money. If you are responsible, motivated and want to change your life. Welcome to her channel.
WHAT YOU NEED TO WORK:
1. phone or computer
2. Free 15-20 minutes a day
3. desire to earn
❗️ Requires 20 people ❗️
Access is available at the link below
👇
https://t.iss.one/+FcwoGw3QeO40NmIx
Average earnings from 100$ a day
Lisa is looking for people who want to earn money. If you are responsible, motivated and want to change your life. Welcome to her channel.
WHAT YOU NEED TO WORK:
1. phone or computer
2. Free 15-20 minutes a day
3. desire to earn
❗️ Requires 20 people ❗️
Access is available at the link below
👇
https://t.iss.one/+FcwoGw3QeO40NmIx
Forwarded from Python | Machine Learning | Coding | R
This channels is for Programmers, Coders, Software Engineers.
0️⃣ Python
1️⃣ Data Science
2️⃣ Machine Learning
3️⃣ Data Visualization
4️⃣ Artificial Intelligence
5️⃣ Data Analysis
6️⃣ Statistics
7️⃣ Deep Learning
8️⃣ programming Languages
✅ https://t.iss.one/addlist/8_rRW2scgfRhOTc0
✅ https://t.iss.one/Python53
Please open Telegram to view this post
VIEW IN TELEGRAM
👍2
Forwarded from Tomas
LOOKING FOR A NEW SOURCE OF INCOME?
Average earnings from 100$ a day
Lisa is looking for people who want to earn money. If you are responsible, motivated and want to change your life. Welcome to her channel.
WHAT YOU NEED TO WORK:
1. phone or computer
2. Free 15-20 minutes a day
3. desire to earn
❗️ Requires 20 people ❗️
Access is available at the link below
👇
https://t.iss.one/+aZQRLmmFFbw1NzIx
Average earnings from 100$ a day
Lisa is looking for people who want to earn money. If you are responsible, motivated and want to change your life. Welcome to her channel.
WHAT YOU NEED TO WORK:
1. phone or computer
2. Free 15-20 minutes a day
3. desire to earn
❗️ Requires 20 people ❗️
Access is available at the link below
👇
https://t.iss.one/+aZQRLmmFFbw1NzIx
👍3