Update pages/6_Feature_Engineering.py
Browse files
pages/6_Feature_Engineering.py
CHANGED
|
@@ -115,13 +115,13 @@ st.markdown(
|
|
| 115 |
unsafe_allow_html=True
|
| 116 |
)
|
| 117 |
|
| 118 |
-
st.subheader(":
|
| 119 |
st.markdown("""
|
| 120 |
There a different techniques to convert text into vector format.They are :
|
| 121 |
<ul class="icon-bullet">
|
| 122 |
<li>One-Hot Vectorization </li>
|
| 123 |
<li>Bag of Words(BOW) </li>
|
| 124 |
-
<li>Term Frequency - Inverse Document Frequency(TF-IDF)
|
| 125 |
</ul>
|
| 126 |
""", unsafe_allow_html=True)
|
| 127 |
|
|
@@ -132,4 +132,10 @@ st.markdown("""
|
|
| 132 |
<li>Word2Vec </li>
|
| 133 |
<li>Fasttext</li>
|
| 134 |
</ul>
|
| 135 |
-
""", unsafe_allow_html=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 115 |
unsafe_allow_html=True
|
| 116 |
)
|
| 117 |
|
| 118 |
+
st.subheader(":violet[Vectorization techniques]")
|
| 119 |
st.markdown("""
|
| 120 |
There a different techniques to convert text into vector format.They are :
|
| 121 |
<ul class="icon-bullet">
|
| 122 |
<li>One-Hot Vectorization </li>
|
| 123 |
<li>Bag of Words(BOW) </li>
|
| 124 |
+
<li>Term Frequency - Inverse Document Frequency(TF-IDF)</li>
|
| 125 |
</ul>
|
| 126 |
""", unsafe_allow_html=True)
|
| 127 |
|
|
|
|
| 132 |
<li>Word2Vec </li>
|
| 133 |
<li>Fasttext</li>
|
| 134 |
</ul>
|
| 135 |
+
""", unsafe_allow_html=True)
|
| 136 |
+
|
| 137 |
+
st.sidebar.title("Navigation 🧭")
|
| 138 |
+
file_type = st.sidebar.radio(
|
| 139 |
+
"Choose a Vectorization technique :",
|
| 140 |
+
("One-Hot Vectorization", "Bag of Words(BOW)", "Term Frequency - Inverse Document Frequency(TF-IDF)", "Word2Vec", "Fasttext"))
|
| 141 |
+
|