zoya23 commited on
Commit
4dfb49c
·
verified ·
1 Parent(s): 5328fd3

Upload Introduction.py

Browse files
Files changed (1) hide show
  1. pages/Introduction.py +86 -0
pages/Introduction.py ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+
3
+ import streamlit as st
4
+
5
+
6
+ st.title(" Let's Explore Data Science Together🚀")
7
+
8
+
9
+ # What is Data Science?
10
+ st.subheader("What is Data Science? 📊")
11
+ st.markdown(
12
+ """
13
+ Data Science is about understanding and analyzing information (called data) to make better decisions.
14
+ Data can be anything – numbers, words, pictures, or even videos. For example, data could be the number of people who visit a store or the temperature recorded on different days.
15
+
16
+ Scientists use data to find patterns, make predictions, and solve problems. They gather, study, and understand data to help make decisions or discoveries.
17
+
18
+ In simple terms, Data Science combines gathering and analyzing data to understand what's happening and help us make better choices in life or business.
19
+ """
20
+ )
21
+
22
+ st.subheader("**What is Natural Intelligence and Artificial Intelligence?**")
23
+ # Natural Intelligence (NI)
24
+ st.subheader("What is Natural Intelligence? 🧠")
25
+ st.markdown(
26
+ """
27
+ Natural Intelligence is how humans and animals think and learn. It’s our ability to understand things, solve problems, and make decisions using our brain.
28
+
29
+ For example:
30
+ - Humans can easily recognize objects, faces, and even emotions in people.
31
+ - We can learn from our experiences and adapt to new situations.
32
+ """
33
+ )
34
+
35
+ # Artificial Intelligence (AI)
36
+ st.subheader("What is Artificial Intelligence (AI)? 🤖")
37
+ st.markdown(
38
+ """
39
+ Artificial Intelligence (AI) is when machines are designed to think and act like humans. It's a way of teaching computers to learn from data and make decisions, just like we do.
40
+ From Siri answering your questions to chatbots helping you shop, AI is everywhere.
41
+
42
+ We use tools like Python to teach machines how to copy the way we think and learn. AI can do many things, like recognize images, understand speech, and even recommend things to you online.
43
+ For example:
44
+ - Self-driving cars 🚘
45
+ - Movie Recommendations suggesting your next watch show. 👀
46
+ """
47
+ )
48
+
49
+ # Machine Learning (ML)
50
+ st.subheader("What is Machine Learning? 🧠")
51
+ st.markdown(
52
+ """
53
+ Machine Learning is a part of AI. It’s a way for computers to learn from data without being programmed step-by-step. The more data the machine gets, the smarter it gets over time.
54
+
55
+ For example:
56
+ - Predicting house prices 🏡
57
+ - Sorting emails into spam or not 📧
58
+ - A recommendation system learns from your preferences to suggest movies or products you might like.
59
+ """
60
+ )
61
+
62
+ # Deep Learning (DL)
63
+ st.subheader("What is Deep Learning?")
64
+ st.markdown(
65
+ """
66
+ Deep Learning is a type of Machine Learning that works with complex data, like images and sound. It uses something called "neural networks," which are layers of information, similar to how our brain works.
67
+ Lik it helps computers recognize faces in photos by looking at many different features like eyes, noses, and mouths.
68
+
69
+ Example:
70
+ - Virtual assistants like Alexa understanding your voice commands. 🎙️
71
+ - Image Classification💬🏚️
72
+
73
+ """
74
+ )
75
+
76
+ # Generative AI (GenAI)
77
+ st.subheader("What is Generative AI? 🎨")
78
+ st.markdown(
79
+ """
80
+ Generative AI is a special kind of AI that can create new things. It looks at existing data, learns from it, and then creates something new.
81
+
82
+ For example:
83
+ - GPT-3 can write articles, stories, or even poems by learning from large amounts of text.
84
+ - AI can create realistic images, like generating faces or designing art from scratch.
85
+ """
86
+ )