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
    Mansoor Ullah 3 weeks 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
    M Fazeel Mubashir 4 weeks ago
    #asking for input from the user the_height = float(input("Enter your height in cm:")) the_weight = float(input("Enter the weight in kg:"))#defining a function for BMI the_BMI = the_weight / (the_height/100)**2#printing the BMI print("Your Body Mass Index is", the_BMI)#if_elif_else conditions if the_BMI <= 18.5: print("You are under weight") elif the_BMI <=24.9: print("You are normal weight") elif the_BMI <=29.9: print("You are over weight") else: print("You are obese")
    Reply
    Syeda Naheed Abbas 1 month ago
    name = input('Enter your name: ') weight = int(input('Enter your weight in kgs: ')) height = float(input('Enter your height in meters: ')) bmi_calculator = round(weight / (height ** 2), 2) print(f'Hello {name}! Your BMI is {bmi_calculator}')
    Reply
    Syeda Naheed Abbas 1 month ago
    name = input('Enter your name: ') weight = int(input('Enter your weight in kgs: ')) height = float(input('Enter your height in meters: ')) bmi_calculator = round(weight / (height ** 2), 2) print(f'Hello {name}! Your BMI is {bmi_calculator}')
    Reply
    Zaineb Khalid 2 months ago
    personA=input("Enter a name of 1st person:") personB=input("Enter a name of 2nd person:") Age_A=input("Enter your age :") Age_B=input("Enter your age :") if Age_AAge_B: Print(personB,"is younger than",personA) else: print(personA,"and",personB,"are of the same age") My code
    Reply
    Muhammad Asad Malik 6 months ago
    person_name = input("What is your name?") person_weight_str = input("What is your weight?") person_height_str = input("What is your height?") person_weight = float(person_weight_str) person_height = float(person_height_str) # Calculate BMI using the formula: (weight / (height * height)) x bmi = (person_weight / (person_height * person_height)) print("nHello, {0}, you weigh about {1} kilograms and are about {2} cm tall. Your BMI is {3}.".format(person_name, person_weight, person_height, bmi)) if bmi < 18.5: print("You are underweight.") elif 18.5 <= bmi < 25: print("You are normal.") elif 25 <= bmi < 30: print("You are overweight.") elif 30 <= bmi < 35: print("You are obese.") else: print("You are clinically obese.")
    Reply
    Jannat-ul- Mawa 6 months ago
    person_name = input("Enter your name:") person_weight = int(input("Enetr your weight in kgs:")) person_height = float(input("Enetr your height in meters:"))bmi_calculator = round(person_weight/(person_height)**2,2)print(f"Body Mass index of {person_name} is {bmi_calculator} ")
    Reply
    Muhammad Asad Malik 7 months ago
    person1_name = input("What is your name p1?") person2_name = input("What is your name p2?") person1_age = input("What is your age p1?") person2_age = input("What is your age p2?") if person1_age>person2_age: print(person1_name, "is bigger than", person2_name) else: print(person2_name, "is bigger than", person1_name)
    Reply
    zeeshan haider 7 months ago
    bmi_calculator = input("what is your name ") weight = float(input("what is your weight ")) hight = float(input("what is your hight ")) # formula of bmi is wight of body is divided by hight meter square bmi = weight/(hight*hight) print("your bmi is", bmi)
    Reply
    zeeshan haider 7 months ago
    person_a = input("person a ka name kia hai ") person_a = input("person a is age kia hai ") person_b = input("person b ka name kia hai ") person_b = input("person b ki age kia hai") if person_a > person_b: print("person a bara hai yr b sa ") elif person_a<person_b: print("person a chota hai person b sa ") else: print("dono ki age same hai yara")
    Reply
    0% Complete