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
    Syeda Naheed Abbas 2 weeks ago
    Done
    Reply
    Jannat-ul- Mawa 1 month ago
    Sir Aammar, ap ki examples bhut mazzy ki hoti hn, like hansi aa jati hy sun kr or topic ki b achy sy samjh lag jati hy examples sy😁
    Reply
    Muhammad Adnan 5 months ago
    #question 1 # def a(a,b): # return a/b # print(a(2,2))# x =lambda a,b: a/b # print(x(2,2)) #question 2 # def x(a,b): # return a*b # print(x(4,4))# x=lambda a,b: a*b # print(x(5,5)) #question 3 # def a(a,b): # return a-b # print(a(9,7)) #lambda function # x =lambda a,b: a-b # print(x(10,5))#question 4 def a(a,b): return a/b print((a(-8,-4)))x=lambda a,b:a/b print(x(8,2))
    Reply
    Ilya Haider 6 months ago
    3 ka fac hoga 3*2*1
    Reply
    Ilya Haider 6 months ago
    it gives error
    Reply
    Ilya Haider 6 months ago
    braces r missing
    Reply
    rayyan ashraf 7 months ago
    #Recursion function for even and odd def even(n): if n % 2 == 0: return "even" else: return "odd" print(even(45))
    Reply
    Abid Hussain 8 months ago
    I had an interview on recursion last week at Stirling University, but unfortunately failed due to Poor PPT presentation, If possible please make one lecture on PPT presentation especially how to present codes in PPT. Thanks a lot for your efforts
    Reply
    Mr. Arshad 8 months ago
    thanks
    Reply
    Mr. Arshad 8 months ago
    #ASSIGNMENT RELATED TO LAMBDA AND FUNCTION OF PYTHON# lambda function is unknown function can take any of number in argument with only one expression #lambda function # def add(a , b): # result = a + b # return result # add(3 , 4) # add = lambda a,b : a + b # add(3, 4) # f = lambda x,y:x+y# print(f(5,4)) # x = lambda a : a + 10 # print(x(5))# x = lambda a, b : a * b # print(x(5, 6)) # x = lambda a, b : a / b # print(x(12, 6))# x = lambda a, b, c : a + b + c # print(x(5, 6, 2)) def myfunc(n): return lambda a : a * nmydoubler = myfunc(2)print(mydoubler(11))#python function # def my_function(fname): # print(fname + "your")# my_function("Emil") # my_function("Tobias") # my_function("Linus")def my_function(): print("Hello from Arshad") my_function()def my_function(child3, child2, child1): print("The elder child is " + child1)my_function(child1 = "Arshad", child2 = "Amjid", child3 = "Asif")def my_favourite(food): for x in food: print(x)fruits = ["apple", "banana", "cherry"]my_favourite
    Reply
    0% Complete