Course Content
How and Why to Register
Dear, to register for the 6 months AI and Data Science Mentorship Program, click this link and fill the form give there: https://shorturl.at/fuMX6
0/2
Day-17: Complete EDA on Google PlayStore Apps
0/1
Day-25: Quiz Time, Data Visualization-4
0/1
Day-27: Data Scaling/Normalization/standardization and Encoding
0/2
Day-30: NumPy (Part-3)
0/1
Day-31: NumPy (Part-4)
0/1
Day-32a: NumPy (Part-5)
0/1
Day-32b: Data Preprocessing / Data Wrangling
0/1
Day-37: Algebra in Data Science
0/1
Day-56: Statistics for Data Science (Part-5)
0/1
Day-69: Machine Learning (Part-3)
0/1
Day-75: Machine Learning (Part-9)
0/1
Day-81: Machine Learning (Part-15)-Evaluation Metrics
0/2
Day-82: Machine Learning (Part-16)-Metrics for Classification
0/1
Day-85: Machine Learning (Part-19)
0/1
Day-89: Machine Learning (Part-23)
0/1
Day-91: Machine Learning (Part-25)
0/1
Day-93: Machine Learning (Part-27)
0/1
Day-117: Deep Learning (Part-14)-Complete CNN Project
0/1
Day-119: Deep Learning (Part-16)-Natural Language Processing (NLP)
0/2
Day-121: Time Series Analysis (Part-1)
0/1
Day-123: Time Series Analysis (Part-3)
0/1
Day-128: Time Series Analysis (Part-8): Complete Project
0/1
Day-129: git & GitHub Crash Course
0/1
Day-131: Improving Machine/Deep Learning Model’s Performance
0/2
Day-133: Transfer Learning and Pre-trained Models (Part-2)
0/1
Day-134 Transfer Learning and Pre-trained Models (Part-3)
0/1
Day-137: Generative AI (Part-3)
0/1
Day-139: Generative AI (Part-5)-Tensorboard
0/1
Day-145: Streamlit for webapp development and deployment (Part-1)
0/3
Day-146: Streamlit for webapp development and deployment (Part-2)
0/1
Day-147: Streamlit for webapp development and deployment (Part-3)
0/1
Day-148: Streamlit for webapp development and deployment (Part-4)
0/2
Day-149: Streamlit for webapp development and deployment (Part-5)
0/1
Day-150: Streamlit for webapp development and deployment (Part-6)
0/1
Day-151: Streamlit for webapp development and deployment (Part-7)
0/1
Day-152: Streamlit for webapp development and deployment (Part-8)
0/1
Day-153: Streamlit for webapp development and deployment (Part-9)
0/1
Day-154: Streamlit for webapp development and deployment (Part-10)
0/1
Day-155: Streamlit for webapp development and deployment (Part-11)
0/1
Day-156: Streamlit for webapp development and deployment (Part-12)
0/1
Day-157: Streamlit for webapp development and deployment (Part-13)
0/1
How to Earn using Data Science and AI skills
0/1
Day-160: Flask for web app development (Part-3)
0/1
Day-161: Flask for web app development (Part-4)
0/1
Day-162: Flask for web app development (Part-5)
0/1
Day-163: Flask for web app development (Part-6)
0/1
Day-164: Flask for web app development (Part-7)
0/2
Day-165: Flask for web app deployment (Part-8)
0/1
Day-167: FastAPI (Part-2)
0/1
Day-168: FastAPI (Part-3)
0/1
Day-169: FastAPI (Part-4)
0/1
Day-170: FastAPI (Part-5)
0/1
Day-171: FastAPI (Part-6)
0/1
Day-174: FastAPI (Part-9)
0/1
Six months of AI and Data Science Mentorship Program
    Join the conversation
    Ahsan 4 days ago
    person_a_name = input("Enter person A name: ") person_a_age = int(input("Enter person A age: ")) # convert to int person_b_name = input("Enter person B name: ") person_b_age = int(input("Enter person B age: ")) # convert to intif person_a_age > person_b_age: print(f"{person_a_name} is elder than {person_b_name}") elif person_a_age < person_b_age: print(f"{person_b_name} is elder than {person_a_name}") else: print(f"{person_a_name} and {person_b_name} are of the same age")
    Reply
    Danyal Rashid 2 months ago
    # program to take weight and height from user and calculate BMI weight = float(input("Enter your weight in kg: ")) height = float(input("Enter your height in meters: ")) bmi = weight / (height ** 2) print("Your BMI is: " + str(bmi))
    Reply
    sajjad javed 3 months ago
    Learning
    Reply
    Pervaiz Ahmed 4 months ago
    name1 = input('What is your name1? ') name1_weight_in_kg = float(input('How much weight in kg? ')) name1_height_in_meter = float(input('How much height in meter? ')) def calculate_bmi(name1_weight_in_kg, name1_height_in_meter): bmi = name1_weight_in_kg / (name1_height_in_meter ** 2) return bmi # Call the function to calculate BMI bmi = calculate_bmi(name1_weight_in_kg, name1_height_in_meter)# Print the result print(f"{name1}'s BMI: {bmi:.2f}")
    Reply
    Pervaiz Ahmed 4 months ago
    # For BMI name1 = input('What is your name1? ') name1_weight_in_kg = float(input('How much weight in kg? ')) name1_height_in_meter = float(input('How much height in meter? ')) def calculate_bmi(name1_weight_in_kg, name1_height_in_meter): bmi = name1_weight_in_kg / (name1_height_in_meter ** 2) return bmi # Call the function to calculate BMI bmi = calculate_bmi(name1_weight_in_kg, name1_height_in_meter)# Print the result print(f"{name1}'s BMI: {bmi:.2f}")
    Reply
    Abdullah Imran 5 months ago
    PROGRAM: a=int(input("Enter Your Age:")) b= float(input("Enter Your Weight:")) c= float(input("Enter Your Height:")) BMI=b/(c ** 2) print("Your BMI is:",BMI)
    Reply
    Ibrahim Zeeshan 6 months ago
    sir aap itna achha tareqa se parhata hai hame samage aa rahi hai
    Reply
    Ibrahim Zeeshan 6 months ago
    ibrahim
    Reply
    Saad Khalid Abbasi 6 months ago
    person_1 = input("Please enter the name of Person 1: ") person_2 = input("Please enter the name of Person 2: ")age_1 = input(f"Please enter {person_1}'s age: ") age_2 = input(f"Please enter {person_2}'s age: ")if age_1>age_2: print(person_1,"is older than ",person_2) else: print(person_2,"is older than ",person_1)
    Reply
    Afreen Tariq 6 months ago
    name = input("what is your name?:") weight = float(input("what is your weight?:")) height = float(input("what is your height?:"))bmi = weight / (height ** 2)if bmi < 18.5: print("Underweight") elif 18.5<=bmi <= 24.9: print("normal") elif 25 <= bmi <= 29.9: print("Overweight") else: print("obese")
    Reply
    0% Complete