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
    Muhammad Fariyab Zafar 3 weeks ago
    person_name=input("Enter Your Name:") person_weight=input("Enter Your Weight:") person_height=input("Enter Your height:") bmi = person_weight /(person_height**2) print("Your BMI is:",bmi)
    Reply
    Hayat Ullah Khan 4 weeks ago
    name = input("Enter your name") weight=int(input("Enter your weight")) height=float(input("Enter your height"))bmi = weight / (height ** 2) print("Welcome to ",name,"Your BMI is ", bmi)
    Reply
    Hayat Ullah Khan 4 weeks ago
    p1 = input("Enter your name") age1=input("Enter your age") p2 = input("Enter your name") age2=input("Enter your age")if age1>age2: print("The",p1,"is greater than",p2) else: print("The",p2,"is grater than",p1)
    Reply
    Muhammad Shayan 1 month ago
    person_a = input('Enter first name : ') person_a_age = input('Enter your age : ') # person_b = input('Enter second name : ') person_b_age = input('Enter your age : ')if(person_a_age > person_b_age): print(person_a, 'is older than', person_b) else: print(person_a, 'is younger than', person_b)
    Reply
    Quartulain munir 1 month ago
    name = input('Enter your name:') weight = float(input('Enter your weight in kg: ')) height = float(input('Enter your height in meters: ')) bmi = weight / height ** 2 print(f'Hello {name}, your BMI is {bmi:.2f}') if bmi < 18.5: print('You are underweight.') elif 18.5 <= bmi < 24.9: print('You have a normal weight.') else: print('You are overweight.')
    Reply
    Rashid Hussain 3 months ago
    wonderful
    Reply
    MUHAMMAD AFAQ KHAN 3 months ago
    name = input("Enter your name: ") weight = float(input("Enter your weight in kilograms (kg): ")) height = float(input("Enter your height in meters (m): ")) bmi = weight / (height ** 2) print(f"nHello {name}!") print(f"Your BMI is: {bmi:.2f}") if bmi < 18.5: print("You are underweight.") else: print("You are obese.")
    Reply
    Ali Asadullah 3 months ago
    Done
    Reply
    Ahsan 3 months 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 5 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
    0% Complete