Spaces:
Sleeping
Sleeping
Update pages/7_Advance_vectorization_techniques.py
Browse files
pages/7_Advance_vectorization_techniques.py
CHANGED
|
@@ -39,7 +39,7 @@ st.markdown("""
|
|
| 39 |
p {
|
| 40 |
font-family: 'Georgia', serif;
|
| 41 |
line-height: 1.8;
|
| 42 |
-
color:
|
| 43 |
margin-bottom: 20px;
|
| 44 |
}
|
| 45 |
/* List styling with checkmark bullets */
|
|
@@ -103,7 +103,7 @@ st.markdown("""
|
|
| 103 |
/* Custom button style */
|
| 104 |
.streamlit-button {
|
| 105 |
background-color: #00FFFF;
|
| 106 |
-
color:
|
| 107 |
font-weight: bold;
|
| 108 |
}
|
| 109 |
</style>
|
|
@@ -298,7 +298,7 @@ if file_type == "Word2Vec":
|
|
| 298 |
st.markdown(
|
| 299 |
"""
|
| 300 |
<div class='box'>
|
| 301 |
-
<h3 style='color:
|
| 302 |
<p><strong>CBOW (Continuous Bag of Words)</strong> is a technique where we use surrounding words (context) to predict the target word (focus word).</p>
|
| 303 |
</div>
|
| 304 |
""",
|
|
|
|
| 39 |
p {
|
| 40 |
font-family: 'Georgia', serif;
|
| 41 |
line-height: 1.8;
|
| 42 |
+
color: black;
|
| 43 |
margin-bottom: 20px;
|
| 44 |
}
|
| 45 |
/* List styling with checkmark bullets */
|
|
|
|
| 103 |
/* Custom button style */
|
| 104 |
.streamlit-button {
|
| 105 |
background-color: #00FFFF;
|
| 106 |
+
color: white;
|
| 107 |
font-weight: bold;
|
| 108 |
}
|
| 109 |
</style>
|
|
|
|
| 298 |
st.markdown(
|
| 299 |
"""
|
| 300 |
<div class='box'>
|
| 301 |
+
<h3 style='color: black;'>What is CBOW?</h3>
|
| 302 |
<p><strong>CBOW (Continuous Bag of Words)</strong> is a technique where we use surrounding words (context) to predict the target word (focus word).</p>
|
| 303 |
</div>
|
| 304 |
""",
|