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
    Abdul Samad 6 days ago
    print("Welcome to BMI Calculator!n") name=input("What is your name? ") weight=int(input("Enter Your Weight in kg: ")) print("Enter your Height!") f=int(input("Feet: ")) inch=int(input("Inches: ")) height=(0.3048*f) + (0.0254*inch) bmi=weight/(height*height)print(f"Hello, {name}nYour BMI is: {bmi}")if bmi=18.5 and bmi=25) and (bmi<=29.9): print("OverWeight!") else: print("Obesity!")print('''n Underweight = <18.5 Normal weight = 18.5–24.9 Overweight = 25–29.9 Obesity = BMI of 30 or greater ''')
    Reply
    Muhammad Qasim 2 weeks ago
    # Calculate BMI name =input ("Wel come, Tell me your name for BMI Calculation ") weight = float(input ("your weight ")) feet = float(input ("told me hegiht in feet ")) inch = float(input("told me your hegiht inch")) height = (feet*0.3048) + (inch *0.0254)BMI_formula = weight / (height ** 2) if BMI_formula < 18.5: print (name, "you are underweight") elif 18.5 <= BMI_formula <= 24.9: print (name, "your weight normalweight") elif 25 <= BMI_formula <= 29.9: print(name, "your weight Overweight") else: print(name, "Obesity") print(f"{name}, is your {BMI_formula:.2f}")
    Reply
    Abdullah Nizamani 3 weeks ago
    name_a = input("Enter your name Person A: ") name_b = input("Enter your name Person B: ")age_a = input(f"Enter your age {name_a}: ") age_b = input(f"ENter your age {name_b}: ")if age_a > age_b: print(name_a, "is older than", name_b) elif age_a == age_b: print(name_a, "and", name_b, "are the same age") else: print(name_b, "is older than", name_a)
    Reply
    Muhammad Usman 3 weeks ago
    person_a= input("Your name here") person_b= input("Your Name")age_1= 20 age_2= 30if age_1 > age_2: print(Person_a,"bara hai") else: print(person_b,"bara hai")
    Reply
    Junaid Ahmed 1 month ago
    person_a = input("What is your name? ") person_b = input("What is your name? ") age_a = input("How old are you? ") age_b = input("How old are you? ")if age_a > age_b: print(person_a + " is older than " + person_b) else: print(person_b + " is older than " + person_a)
    Reply
    shafiq ahmed 1 month ago
    easy hy sir aap ke sath
    Reply
    shafiq ahmed 1 month ago
    excellent lecture sir
    Reply
    Muhammad Zohaib 1 month ago
    weight = int(input()); height = float(input()); x = weight/float(height*height); if x =18.5 and x= 25 and x = 30: print('Obesity')
    Reply
    Muhammad Attaullah 1 month ago
    name = input("Enter your name: ") age = int(input("Enter your age: ")) weight = float(input("Enter your weight in kg: ")) height = float(input("Enter your height in m: ")) bmi = weight / (height * height) print(name," BMI is: ",bmi)
    Reply
    Mansoor Ullah 2 months ago
    # Calculating the BMI of two people and then comparing it. We are going to do this with Input function, and we will also apply conditions to check whether they have same or different BMI # units : Matric # Asking Names, Weight (kg), Height (m) # Formula = Weight (kg) / [Height (m)]^2Person_1_name = input ("what is your name ?") Person_2_name = input (" What is your name ?")Person_1_Height = float (input ("Tell me your Height in meters ")) Person_2_Height = float (input ("Tell me your Height in meters "))Person_1_Weight = float(input ("Tell me your Weight in kg ")) Person_2_Weight = float(input ("Tell me your Weight in kg "))Person_1_BMI = Person_1_Weight / (Person_1_Height ** 2) print(Person_1_BMI)Person_2_BMI = Person_2_Weight / (Person_2_Height ** 2) print(Person_2_BMI)if Person_1_BMI < Person_2_BMI: print(Person_1_name,"'s BMI is less than", Person_2_name,"'s BMI") elif Person_1_BMI == Person_2_BMI: print(Person_1_name,"'s BMI is same as", Person_2_name,"'s BMI") else: print(Person_1_name,"'s BMI is greater than", Person_2_name,"'s BMI")
    Reply
    0% Complete