Spaces:
Sleeping
Sleeping
Update pages/7_Advance_vectorization_techniques.py
Browse files
pages/7_Advance_vectorization_techniques.py
CHANGED
|
@@ -56,7 +56,7 @@ st.markdown("""
|
|
| 56 |
.icon-bullet li::before {
|
| 57 |
content: "◆";
|
| 58 |
padding-right: 10px;
|
| 59 |
-
color:
|
| 60 |
}
|
| 61 |
/* Sidebar styling */
|
| 62 |
.sidebar .sidebar-content {
|
|
@@ -299,7 +299,7 @@ if file_type == "Word2Vec":
|
|
| 299 |
"""
|
| 300 |
<div class='box'>
|
| 301 |
<h3 style='color: black;'>What is CBOW?</h3>
|
| 302 |
-
<
|
| 303 |
</div>
|
| 304 |
""",
|
| 305 |
unsafe_allow_html=True,
|
|
@@ -359,7 +359,7 @@ if file_type == "Word2Vec":
|
|
| 359 |
|
| 360 |
st.markdown(
|
| 361 |
"""
|
| 362 |
-
<h3 style='color:
|
| 363 |
<p>The tabular data is passed to an <strong>Artificial Neural Network (ANN)</strong> which learns:</p>
|
| 364 |
<ul>
|
| 365 |
<li>How <span class='highlight'>context words</span> are related to <span class='highlight'>focus words</span>.</li>
|
|
@@ -373,7 +373,7 @@ if file_type == "Word2Vec":
|
|
| 373 |
"""
|
| 374 |
<div class='box'>
|
| 375 |
<h3 style='color: #6A0572;'>What is Skipgram?</h3>
|
| 376 |
-
<
|
| 377 |
</div>
|
| 378 |
""",
|
| 379 |
unsafe_allow_html=True,
|
|
|
|
| 56 |
.icon-bullet li::before {
|
| 57 |
content: "◆";
|
| 58 |
padding-right: 10px;
|
| 59 |
+
color: red;
|
| 60 |
}
|
| 61 |
/* Sidebar styling */
|
| 62 |
.sidebar .sidebar-content {
|
|
|
|
| 299 |
"""
|
| 300 |
<div class='box'>
|
| 301 |
<h3 style='color: black;'>What is CBOW?</h3>
|
| 302 |
+
<h3><strong>CBOW (Continuous Bag of Words)</strong> is a technique where we use surrounding words (context) to predict the target word (focus word).</h3>
|
| 303 |
</div>
|
| 304 |
""",
|
| 305 |
unsafe_allow_html=True,
|
|
|
|
| 359 |
|
| 360 |
st.markdown(
|
| 361 |
"""
|
| 362 |
+
<h3 style='color: white;'> Training with Artificial Neural Networks</h3>
|
| 363 |
<p>The tabular data is passed to an <strong>Artificial Neural Network (ANN)</strong> which learns:</p>
|
| 364 |
<ul>
|
| 365 |
<li>How <span class='highlight'>context words</span> are related to <span class='highlight'>focus words</span>.</li>
|
|
|
|
| 373 |
"""
|
| 374 |
<div class='box'>
|
| 375 |
<h3 style='color: #6A0572;'>What is Skipgram?</h3>
|
| 376 |
+
<h3><strong>Skipgram</strong> is a technique where we use focus words to predict the context words.</h3>
|
| 377 |
</div>
|
| 378 |
""",
|
| 379 |
unsafe_allow_html=True,
|