Update pages/introds.py
Browse files- pages/introds.py +66 -0
pages/introds.py
CHANGED
@@ -138,3 +138,69 @@ st.markdown(
|
|
138 |
""",
|
139 |
unsafe_allow_html=True
|
140 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
138 |
""",
|
139 |
unsafe_allow_html=True
|
140 |
)
|
141 |
+
# Content for ML
|
142 |
+
st.markdown(
|
143 |
+
"""
|
144 |
+
<div class="division">
|
145 |
+
<h2>What is Machine Learning ?</h2>
|
146 |
+
<p>
|
147 |
+
Machine learning (ML) is a branch of
|
148 |
+
and computer science that focuses on the using data and algorithms to enable AI to imitate the way that humans learn, gradually improving its accuracy.
|
149 |
+
</p>
|
150 |
+
<ul>
|
151 |
+
<li><strong>Traffic prediction:</strong>Real Time location of the vehicle form Google Map app and sensors.Average time has taken on past days at the same time..</li>
|
152 |
+
<li><strong>Self-driving cars:</strong>One of the most exciting applications of machine learning is self-driving cars. Machine learning plays a significant role in self-driving cars. Tesla, the most popular car manufacturing company is working on self-driving car. It is using unsupervised learning method to train the car models to detect people and objects while driving.</li>
|
153 |
+
<li><strong>Stock Market trading:</strong>Machine learning is widely used in stock market trading. In the stock market, there is always a risk of up and downs in shares, so for this machine learning's long short term memory neural network is used for the prediction of stock market trends..</li>
|
154 |
+
</ul>
|
155 |
+
</div>
|
156 |
+
<div class="division">
|
157 |
+
<h2>Methods in MACHINE LEARNING</h2>
|
158 |
+
<ul>
|
159 |
+
<li><strong>Superwised ML:</strong>In supervised learning, the AI model is trained based on the given input and its expected output, i.e., the label of the input. The model creates a mapping equation based on the inputs and outputs and predicts the label of the inputs in the future based on that mapping equation.</li>
|
160 |
+
<li><strong>Unsuperwised ML:</strong>In unsupervised learning, the AI model is trained only on the inputs, without their labels. The model classifies the input data into classes that have similar features. The label of the input is then predicted in the future based on the similarity of its features with one of the classes..</li>
|
161 |
+
<li><strong>Reinforcement ML:</strong>In reinforcement learning, the AI model tries to take the best possible action in a given situation to maximize the total profit. The model learns by getting feedback on its past outcomes..</li>
|
162 |
+
</ul>
|
163 |
+
</div>
|
164 |
+
""",
|
165 |
+
unsafe_allow_html=True
|
166 |
+
)
|
167 |
+
# Content for Generative AI
|
168 |
+
st.markdown(
|
169 |
+
"""
|
170 |
+
<div class="division">
|
171 |
+
<h2>What is Generative AI ?</h2>
|
172 |
+
<p>
|
173 |
+
Generative AI is artificial intelligence designed to create unique text or image results in response to user prompts.
|
174 |
+
The technology uses machine learning to return an output based on the user’s prompt.
|
175 |
+
AI engineers train the technology using large data sets, which the model consults when determining the best possible answer to a prompt.
|
176 |
+
Another way to look at generative AI is as a form of predictive artificial intelligence.
|
177 |
+
Based on the information provided, generative AI will predict which words and in which order will give the best answer to the user's prompts.
|
178 |
+
</ul>
|
179 |
+
</div>
|
180 |
+
<div class="division">
|
181 |
+
<h2>Apllications with GenAI in daily life </h2>
|
182 |
+
<ul>
|
183 |
+
<li><strong>Advertising and marketing:</strong>Generative artificial intelligence offers many solutions to professionals working in advertising and marketing, such as generating text and images needed for marketing or finding new ways to interact with customers. Here are some examples of generative AI applications in advertising and marketing.</li>
|
184 |
+
<li><strong>Media and entertainment:</strong>Media and entertainment could embrace generative AI in several ways, considering the industry primarily engages in the same task as the tech: generating unique content. Generative AI can help create and edit visual content, create short highlight videos of sporting events, and make working with content management systems easier..</li>
|
185 |
+
<li><strong>Manufacturing:</strong>In manufacturing, professionals can use generative AI to look for ways to improve efficiency, anticipate maintenance needs before they cause problems, help engineers create better designs faster, and create a more resilient supply chain. Let’s explore these potential manufacturing solutions.</li>
|
186 |
+
</ul>
|
187 |
+
</div>
|
188 |
+
""",
|
189 |
+
unsafe_allow_html=True
|
190 |
+
)
|
191 |
+
|
192 |
+
|
193 |
+
|
194 |
+
|
195 |
+
|
196 |
+
|
197 |
+
|
198 |
+
|
199 |
+
|
200 |
+
|
201 |
+
|
202 |
+
|
203 |
+
|
204 |
+
|
205 |
+
|
206 |
+
|