Harika22 commited on
Commit
fd420f1
·
verified ·
1 Parent(s): 1bf0b4b

Update pages/7_Advance_vectorization_techniques.py

Browse files
pages/7_Advance_vectorization_techniques.py CHANGED
@@ -510,17 +510,15 @@ elif file_type == "Fasttext":
510
  unsafe_allow_html=True,
511
  )
512
 
513
- st.markdown(
514
- """
515
- <h3 style='color: #1D3557;'>Context Words & Focus Words</h3>
516
- <pre style="background-color:#F7F7F7; padding: 10px; border-radius: 5px;">
517
- Context Words: <app, pp, pl, le> --> "is"
518
- Focus Words: <go, oo, od> --> "good"
519
- </pre>
520
- """,
521
- unsafe_allow_html=True,
522
- )
523
-
524
  st.markdown(
525
  """
526
  <h3 style='color: #6A0572;'>Vocabulary</h3>
 
510
  unsafe_allow_html=True,
511
  )
512
 
513
+ st.markodown('''
514
+ - Example : d1 = apple is good for health
515
+ - d2 = biryani is not good for health
516
+ - Creates a table for context words, focus words
517
+ - <ap , pp, pl, le> < is> - context words
518
+ - <go , oo, od> - focus words
519
+ - character 2- gram
520
+ - It gives average 2-d vector representation of word
521
+ ''')
 
 
522
  st.markdown(
523
  """
524
  <h3 style='color: #6A0572;'>Vocabulary</h3>