Data Science & Machine Learning
77.6K subscribers
911 photos
1 video
68 files
831 links
Join this channel to learn data science, artificial intelligence and machine learning with funny quizzes, interesting projects and amazing resources for free

For collaborations: @love_data
Download Telegram
What will be the output?

nums = [10, 20, 30] print(nums[1])
Anonymous Quiz
23%
10
75%
20
2%
30
❤2
Which method adds an element at the end of a list?
Anonymous Quiz
9%
A) add()
77%
B) append()
9%
C) insert()
5%
D) push()
❤2
Which data structure stores values in key–value pairs?
Anonymous Quiz
7%
A) List
9%
B) Tuple
79%
C) Dictionary
6%
D) Set
❤2
What will be the output?

nums = {1, 2, 2, 3} print(nums)
Anonymous Quiz
43%
A) {1, 2, 2, 3}
38%
B) {1, 2, 3}
14%
C) Error
5%
D) [1, 2, 3]
🤔5❤2
Amazon Interview Process for Data Scientist position

📍Round 1- Phone Screen round
This was a preliminary round to check my capability, projects to coding, Stats, ML, etc.

After clearing this round the technical Interview rounds started. There were 5-6 rounds (Multiple rounds in one day).

📍 𝗥𝗼𝘂𝗻𝗱 𝟮- 𝗗𝗮𝘁𝗮 𝗦𝗰𝗶𝗲𝗻𝗰𝗲 𝗕𝗿𝗲𝗮𝗱𝘁𝗵:
In this round the interviewer tested my knowledge on different kinds of topics.

📍𝗥𝗼𝘂𝗻𝗱 𝟯- 𝗗𝗲𝗽𝘁𝗵 𝗥𝗼𝘂𝗻𝗱:
In this round the interviewers grilled deeper into 1-2 topics. I was asked questions around:
Standard ML tech, Linear Equation, Techniques, etc.

📍𝗥𝗼𝘂𝗻𝗱 𝟰- 𝗖𝗼𝗱𝗶𝗻𝗴 𝗥𝗼𝘂𝗻𝗱-
This was a Python coding round, which I cleared successfully.

📍𝗥𝗼𝘂𝗻𝗱 𝟱- This was 𝗛𝗶𝗿𝗶𝗻𝗴 𝗠𝗮𝗻𝗮𝗴𝗲𝗿 where my fitment for the team got assessed.

📍𝗟𝗮𝘀𝘁 𝗥𝗼𝘂𝗻𝗱- 𝗕𝗮𝗿 𝗥𝗮𝗶𝘀𝗲𝗿- Very important round, I was asked heavily around Leadership principles & Employee dignity questions.

So, here are my Tips if you’re targeting any Data Science role:
-> Never make up stuff & don’t lie in your Resume.
-> Projects thoroughly study.
-> Practice SQL, DSA, Coding problem on Leetcode/Hackerank.
-> Download data from Kaggle & build EDA (Data manipulation questions are asked)

Best Data Science & Machine Learning Resources: https://topmate.io/coding/914624

ENJOY LEARNING 👍👍
❤8
✅ Python Loops (for & while)

Loops help repeat tasks automatically — very important for data processing and automation.

🔹 1. What are Loops?
Loops repeat a block of code multiple times.
👉 Used in:
✅ Data cleaning
✅ Data analysis
✅ Machine learning
✅ Automation

🔥 2. for Loop (Most Used) ⭐
Used to iterate over a sequence (list, string, range).

✅ Basic Syntax
for variable in sequence:
    # code

✅ Example — Print Numbers
for i in range(5):
    print(i)

Output: 0 1 2 3 4
👉 range(5) → generates numbers from 0 to 4.

✅ Loop Through List (Very Important)
numbers = [10, 20, 30]
for num in numbers:
    print(num)

👉 Used heavily in data science.

🔥 3. while Loop
Runs until condition becomes False.

✅ Syntax
while condition:
    # code

✅ Example
x = 1
while x <= 5:
    print(x)
    x += 1

Output: 1 2 3 4 5
👉 Important: Update condition to avoid infinite loop.

🔹 4. Loop Control Statements (Very Important)

✅ break → stop loop
for i in range(5):
    if i == 3:
        break
    print(i)

Output: 0 1 2

✅ continue → skip current iteration
for i in range(5):
    if i == 3:
        continue
    print(i)

Output: 0 1 2 4

🎯 Today’s Goal
✅ Use for loop
✅ Use while loop
✅ Understand break & continue

Double Tap ♥️ For More
❤16👍1
Which loop is mostly used to iterate over a list or sequence in Python?
Anonymous Quiz
18%
A) while loop
13%
B) do-while loop
66%
C) for loop
2%
D) repeat loop
❤3
Which statement stops a loop immediately?
Anonymous Quiz
4%
A) stop
9%
B) exit
86%
C) break
2%
D) continue
❤2
What happens if we don’t update the condition inside a while loop?
Anonymous Quiz
10%
A) Syntax error
17%
B) Program stops automatically
68%
C) Infinite loop
5%
D) Nothing happens
❤2
Which function generates a sequence of numbers for looping?
Anonymous Quiz
19%
A) loop()
55%
B) range()
11%
C) generate()
15%
D) sequence()
❤2
✅ Python Functions 🐍⚙️

Functions are very important in data science. They help you write reusable, clean, and modular code.

🔹 1. What is a Function?
A function is a block of code that performs a specific task.
👉 Instead of writing the same code again and again, we create a function.

🔥 2. Creating a Function

✅ Basic Syntax
def function_name():
# code


✅ Example
def greet():
print("Hello Deepak")
greet()

Output: Hello Deepak

🔹 3. Function with Parameters

Parameters allow input to functions.

def greet(name):
print("Hello", name)
greet("Rahul")

# Output: Hello Rahul

🔹 4. Function with Return Value (Very Important ⭐)

Instead of printing, functions can return values.

def add(a, b):
return a + b
result = add(5, 3)
print(result)

# Output: 8

👉 return sends value back.

🔹 5. Default Parameters

def greet(name="Guest"):
print("Hello", name)
greet()
greet("Amit")


🔹 6. Why Functions Matter in Data Science?
✅ Data cleaning functions
✅ Feature engineering functions
✅ Reusable ML pipelines
✅ Code organization

🎯 Today’s Goal
✔ Understand def
✔ Use parameters
✔ Use return
✔ Call functions properly

Double Tap ♥️ For More
❤25👏1
🔍 Machine Learning Cheat Sheet 🔍

1. Key Concepts:
- Supervised Learning: Learn from labeled data (e.g., classification, regression).
- Unsupervised Learning: Discover patterns in unlabeled data (e.g., clustering, dimensionality reduction).
- Reinforcement Learning: Learn by interacting with an environment to maximize reward.

2. Common Algorithms:
- Linear Regression: Predict continuous values.
- Logistic Regression: Binary classification.
- Decision Trees: Simple, interpretable model for classification and regression.
- Random Forests: Ensemble method for improved accuracy.
- Support Vector Machines: Effective for high-dimensional spaces.
- K-Nearest Neighbors: Instance-based learning for classification/regression.
- K-Means: Clustering algorithm.
- Principal Component Analysis(PCA)

3. Performance Metrics:
- Classification: Accuracy, Precision, Recall, F1-Score, ROC-AUC.
- Regression: Mean Absolute Error (MAE), Mean Squared Error (MSE), R^2 Score.

4. Data Preprocessing:
- Normalization: Scale features to a standard range.
- Standardization: Transform features to have zero mean and unit variance.
- Imputation: Handle missing data.
- Encoding: Convert categorical data into numerical format.

5. Model Evaluation:
- Cross-Validation: Ensure model generalization.
- Train-Test Split: Divide data to evaluate model performance.

6. Libraries:
- Python: Scikit-Learn, TensorFlow, Keras, PyTorch, Pandas, Numpy, Matplotlib.
- R: caret, randomForest, e1071, ggplot2.

7. Tips for Success:
- Feature Engineering: Enhance data quality and relevance.
- Hyperparameter Tuning: Optimize model parameters (Grid Search, Random Search).
- Model Interpretability: Use tools like SHAP and LIME.
- Continuous Learning: Stay updated with the latest research and trends.

🚀 Dive into Machine Learning and transform data into insights! 🚀

Best Data Science & Machine Learning Resources: https://topmate.io/coding/914624

All the best 👍👍
❤9
✅ Conditional Statements (if–else) 🐍⚡

Conditional statements allow programs to make decisions based on conditions.

👉 Used heavily in:
✔ Data filtering
✔ Business rules
✔ Machine learning logic

🔹 1. if Statement
Used to execute code when a condition is True.

✅ Syntax
if condition:
# code


Example
age = 20
if age >= 18:
print("You can vote")

# Output: You can vote

🔹 2. if–else Statement
Used when there are two possible outcomes.

Syntax
if condition:
# code if true
else:
# code if false


Example
age = 16
if age >= 18:
print("Eligible to vote")
else:
print("Not eligible")


🔹 3. if–elif–else Statement
Used when there are multiple conditions.

Syntax
if condition1:
# code
elif condition2:
# code
else:
# code


Example
marks = 75
if marks >= 90:
print("Grade A")
elif marks >= 60:
print("Grade B")
else:
print("Grade C")


🔹 4. Nested if Statement
An if statement inside another if.

age = 20
citizen = True
if age >= 18:
if citizen:
print("Eligible to vote")


🔹 5. Short if (Ternary Operator)
age = 20
print("Adult") if age >= 18 else print("Minor")


🎯 Today’s Goal
✔ Understand if
✔ Use if–else
✔ Use elif for multiple conditions
✔ Learn nested conditions

👉 Conditional logic is used in data filtering and decision models.

Double Tap ♥️ For More
❤16👏1
Which keyword is used to check a condition in Python?
Anonymous Quiz
10%
A) check
82%
B) if
4%
C) when
4%
D) condition
❤3
What will be the output?

x = 10 if x > 5: print("Yes") else: print("No")
Anonymous Quiz
88%
Yes
12%
No
❤3
Which keyword is used to check multiple conditions?
Anonymous Quiz
14%
A) elseif
60%
B) elif
23%
C) else if
4%
D) multiple
❤4
🔹 Q4. What will be the output?

x = 7 if x > 10: print("A") elif x > 5: print("B") else: print("C")
Anonymous Quiz
13%
A
75%
B
10%
C
2%
D
❤2
What will be the output?

age = 16 print("Adult") if age >= 18 else print("Minor")
Anonymous Quiz
24%
Adult
76%
Minor
❤5😁1
Now, let's move to the next topic of Data Science Roadmap:

✅ Python Dictionaries 📚

Dictionaries are one of the most important data structures in Python, especially in data science and real-world datasets. They store data in key–value pairs.

🔹 1. What is a Dictionary?
A dictionary stores data in key:value format.

✅ Example:

student = { "name": "Rahul", "age": 22, "course": "Data Science" }
print(student)


Output: {'name': 'Rahul', 'age': 22, 'course': 'Data Science'}

✔ Uses curly brackets {}

🔹 2. Access Dictionary Values

Use the key to access values.

student = { "name": "Rahul", "age": 22 }
print(student["name"])


Output: Rahul

🔹 3. Add New Elements

student = { "name": "Rahul", "age": 22 }
student["city"] = "Delhi"
print(student)


Output: {'name': 'Rahul', 'age': 22, 'city': 'Delhi'}

🔹 4. Modify Values

student["age"] = 23


🔹 5. Remove Elements

student.pop("age")


🔹 6. Important Dictionary Methods
⭐

✅ Get Method:
print(student.get("name"))


Output: Rahul

✅ Keys Method:
print(student.keys())


Output: dict_keys(['name', 'age'])

✅ Values Method:
print(student.values())


Output: dict_values(['Rahul', 22])

✅ Items Method:
print(student.items())


Output: dict_items([('name', 'Rahul'), ('age', 22)])

🔹 7. Loop Through Dictionary

student = { "name": "Rahul", "age": 22 }

for key, value in student.items():
print(key, value)


Output:
name Rahul
age 22

🎯 Today’s Goal
✔ Understand key–value pairs
✔ Access dictionary values
✔ Add or update data
✔ Loop through dictionary

👉 Dictionaries are widely used in APIs, JSON data, and machine learning datasets.

Double Tap ♥️ For More
❤21🥰1