themeetjani commited on
Commit
0b59253
1 Parent(s): 0ee5e57

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -19,7 +19,7 @@ def get_base64_of_bin_file(png_file):
19
  def build_markup_for_logo(
20
  png_file,
21
  background_position="50% 10%",
22
- margin_top="5%",
23
  image_width="60%",
24
  image_height="",
25
  ):
@@ -68,9 +68,11 @@ st.markdown(paragraph, unsafe_allow_html=True)
68
  st.markdown("<h3 style='text-align: center; color: black;'>What is GenAI?!!! </h2>", unsafe_allow_html=True)
69
  g_p = """"<span style="color:black;">GenAI" stands for "General Artificial Intelligence," which refers to the concept of developing intelligent systems capable of performing tasks across a broad spectrum of domains, similar to the versatility and adaptability observed in human intelligence. In a short summary, "GenAI" embodies the pursuit of creating AI systems that can comprehend, learn, and apply knowledge across various contexts, aiming for a more generalized and flexible form of artificial intelligence.</span>"""
70
  st.markdown(g_p, unsafe_allow_html=True)
 
71
 
72
  d_l = """<span style="color:black;">Deep learning is a subfield of machine learning that involves training artificial neural networks with multiple layers (deep neural networks) to perform tasks such as image and speech recognition, natural language processing, and other complex pattern recognition tasks. The depth of the network allows it to automatically learn hierarchical representations of data, extracting features at different levels of abstraction. Deep learning has shown remarkable success in various applications, especially when dealing with large amounts of data, enabling the development of sophisticated models for complex tasks.</span>"""
73
  st.markdown(d_l, unsafe_allow_html=True)
 
74
 
75
  m_l = """<span style="color:black;">Machine learning is a branch of artificial intelligence (AI) that focuses on developing algorithms and models that enable computers to learn patterns and make predictions or decisions without being explicitly programmed. It involves the use of data to train algorithms, allowing machines to improve their performance on a specific task over time. Machine learning is applied in various domains, including image and speech recognition, natural language processing, recommendation systems, and more, to extract insights, recognize patterns, and make predictions based on input data.</span>"""
76
  st.markdown(m_l, unsafe_allow_html=True)
 
19
  def build_markup_for_logo(
20
  png_file,
21
  background_position="50% 10%",
22
+ margin_top="20%",
23
  image_width="60%",
24
  image_height="",
25
  ):
 
68
  st.markdown("<h3 style='text-align: center; color: black;'>What is GenAI?!!! </h2>", unsafe_allow_html=True)
69
  g_p = """"<span style="color:black;">GenAI" stands for "General Artificial Intelligence," which refers to the concept of developing intelligent systems capable of performing tasks across a broad spectrum of domains, similar to the versatility and adaptability observed in human intelligence. In a short summary, "GenAI" embodies the pursuit of creating AI systems that can comprehend, learn, and apply knowledge across various contexts, aiming for a more generalized and flexible form of artificial intelligence.</span>"""
70
  st.markdown(g_p, unsafe_allow_html=True)
71
+ st.markdown("<h3 style='text-align: center; color: black;'>What is Deep Learning?!!! </h2>", unsafe_allow_html=True)
72
 
73
  d_l = """<span style="color:black;">Deep learning is a subfield of machine learning that involves training artificial neural networks with multiple layers (deep neural networks) to perform tasks such as image and speech recognition, natural language processing, and other complex pattern recognition tasks. The depth of the network allows it to automatically learn hierarchical representations of data, extracting features at different levels of abstraction. Deep learning has shown remarkable success in various applications, especially when dealing with large amounts of data, enabling the development of sophisticated models for complex tasks.</span>"""
74
  st.markdown(d_l, unsafe_allow_html=True)
75
+ st.markdown("<h3 style='text-align: center; color: black;'>What is Machine Learning?!!! </h2>", unsafe_allow_html=True)
76
 
77
  m_l = """<span style="color:black;">Machine learning is a branch of artificial intelligence (AI) that focuses on developing algorithms and models that enable computers to learn patterns and make predictions or decisions without being explicitly programmed. It involves the use of data to train algorithms, allowing machines to improve their performance on a specific task over time. Machine learning is applied in various domains, including image and speech recognition, natural language processing, recommendation systems, and more, to extract insights, recognize patterns, and make predictions based on input data.</span>"""
78
  st.markdown(m_l, unsafe_allow_html=True)