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
    Int: An integer, a whole number without a fractional part, such as 99, 100, 105 Float: A floating-point number, a number that includes a decimal point, such as 99.5, 100.0, 105.25 String: A sequence of characters enclosed in quotes, such as "hello", "123", "Python" List of string: A collection of strings, enclosed in square brackets, such as ["apple", "banana", "cherry"] Tuple: An ordered, immutable collection of elements, enclosed in parentheses, such as (1, 2, 3) or ("a", "b", "c") Dictionary: A collection of key-value pairs, enclosed in curly braces, such as {"name": "Alice", "age": 25} Set: An unordered collection of unique elements, enclosed in curly braces, such as {1, 2, 3} or {"apple", "banana", "cherry"}
    Reply
    syeda fatima 2 months ago
    int stand for integer is a whole number (not a fractional number) that can be positive, negative, or zero. Examples of integers are: -5, 1, 5, 8, 97. A list of integers a collection of distinct types of values or items. The elements in the list are separated by using commas (,) and are surrounded by square brackets [] . For Example : (1,2,3,4 ). A float point number, is a positive or negative whole number with a decimal point. For example, 5.5, 0.25, and -103.342. String is a collection of alphabets, words or other characters. For example: "Hello World" List of String : First use square brackets [ and ] to create a list. Then place the list items inside the brackets separated by commas. For example: ["Hello world", "Codanics" ]. A tuple is an ordered sequence of elements of different data types, such as integer, float, string, list or even a tuple. A dictionaries are mutable data structures that allow you to store key-value pairs. SET can hold one or more of the values declared for its data type .
    Reply
    Muhammad Asif Iqbal 5 months ago
    "int" mean integer = whole number "float" mean floating point values = decimal numbers
    Reply
    saima saeed 6 months ago
    The term "int" typically refers to the data type "integer" in computer programming. An integer is a whole number that does not have a fractional or decimal part. In various programming languages, including C, C++, Java, and others, "int" is a keyword used to declare a variable as an integer type.The keyword "float" is often used to declare variables that store floating-point values. For example, in C or C++:The keyword "float" is often used to declare variables that store floating-point values. For example, in C or C++:Language and Words:A dictionary is a reference book or online resource that provides definitions, explanations, and sometimes translations of words. It typically includes information about the pronunciation, origin, usage, and grammatical details of words. Dictionaries are important tools for individuals learning a language or seeking clarification on the meanings of words. Data Structure in Computer Science:In computer science, a dictionary (or map, associative array, or hash table in some programming languages) is a data structure that stores key-value pairs. Each key is associated with a corresponding value, and the dictionary allows efficient retrieval of the value using the key. Dictionaries are widely used in programming for tasks like data storage, indexing, and quick retrieval of information.c
    Reply
    Ilya Haider 6 months ago
    int:Stands for integer. Represents whole numbers without any decimal points. Example: x = 5 float:Stands for floating-point. Represents numbers with decimal points. Example: y = 3.14 string:Represents a sequence of characters. Enclosed in single (') or double (") quotes. Example: text = "Hello, World!" list:An ordered and mutable collection of elements. Elements can be of any data type, including other lists. Enclosed in square brackets ([]). Example: my_list = [1, 2, 3, "four", 5.0] list of int:A list containing elements of type int. Example: int_list = [1, 2, 3, 4, 5] list of string:A list containing elements of type string. Example: str_list = ["apple", "banana", "cherry"] dictionary:An unordered collection of key-value pairs. Keys must be unique, and they are used to access values. Enclosed in curly braces ({}). Example: my_dict = {"name": "John", "age": 25, "city": "New York"} set:An unordered and unindexed collection of unique elements. Enclosed in curly braces ({}). Example: my_set = {1, 2, 3, 4, 5}
    Reply
    Ilya Haider 6 months ago
    inverted comas r missed saima is also wrong
    Reply
    Ilya Haider 6 months ago
    Numeric Types:int: Integer type (e.g., 10, -3, 42) float: Floating-point type (e.g., 3.14, -0.5, 2.0) Sequence Types:str: String type (e.g., "Hello, World!", 'Python') list: List type (e.g., [1, 2, 3], ['apple', 'orange']) tuple: Tuple type (e.g., (1, 2, 3), ('a', 'b')) Set Types:set: Unordered collection of unique elements (e.g., {1, 2, 3}, {'apple', 'orange'}) Mapping Type:dict: Dictionary type (e.g., {'key1': 'value1', 'key2': 'value2'}) Boolean Type:bool: Boolean type (True or False) None Type:NoneType: Represents the absence of a value (e.g., None) Binary Types:bytes: Immutable sequence of bytes (e.g., b'hello') bytearray: Mutable sequence of bytes (e.g., bytearray(b'hello')) memoryview: A view object that exposes an array’s buffer interface (e.g., memoryview(b'hello')) Other Numeric Types:complex: Complex number type (e.g., 3 + 4j)
    Reply
    Muhammad Waqas 7 months ago
    integer: a whole number either positive or negative. eg: a=10 float: dacimal values or fractional numbers. eg: a=1.4 string: A sequence of characters used to represent text. eg: a="waqas" tuple: immutable or unchangeable ordered sequence of elements. eg: a=(1,2,3) dictionary: set of keys and each value associated to that key. eg: a={a:1,b:2} set: unique elements of the same type in sorted order. eg: a={1,2,3}
    Reply
    Masroor Ahmed 7 months ago
    10.0 salam o alekum al the way from pakistan [1, 2, 3] ['maria', 'ghufran', 'bhuran'] (1, 2, 3) {'maria': 5, 'ghufran': 5.5, 'bhuran': 5.8} {1, 2, 3}
    Reply
    Masroor Ahmed 7 months ago
    integers -- whole numbers such as 5 200 float-- numbers with a decimal point 2.3 4.5 150.0 strings -- ordered sequence of characters "hello" "Jimmy" list -- order sequence of objects [10, "hello",100.3] tuples -- order immutable sequence of objects (10,"hello",200.3) dictionaries -- unoredered key: value pairs: {"mykey" : "value", "name": frankie") set -- unoreded collection of unique objects {"a","b"} booleans -- logical value indicating true or false
    Reply
    0% Complete