Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1050,6 +1050,22 @@ if query:
|
|
1050 |
st.video("https://www.youtube.com/watch?v=" + video_ids[2])
|
1051 |
st.markdown("---")
|
1052 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1053 |
# else:
|
1054 |
# st.error("The password you entered is incorrect.")
|
1055 |
|
|
|
1050 |
st.video("https://www.youtube.com/watch?v=" + video_ids[2])
|
1051 |
st.markdown("---")
|
1052 |
|
1053 |
+
# Add a section header for useful resources
|
1054 |
+
st.header("Learn More About Word2Vec the algorithm behind OncoDigger")
|
1055 |
+
|
1056 |
+
# Add links to videos and webpages
|
1057 |
+
# Add links to videos and webpages
|
1058 |
+
st.markdown("""
|
1059 |
+
Here are some useful resources to help you learn more about Word2Vec:
|
1060 |
+
|
1061 |
+
1. [Word2Vec Tutorial - The Skip-Gram Model](http://mccormickml.com/2016/04/19/word2vec-tutorial-the-skip-gram-model/) - A blog post by Chris McCormick providing a detailed explanation of the skip-gram model used in Word2Vec.
|
1062 |
+
2. [Word2Vec Tutorial Part 2 - Negative Sampling](http://mccormickml.com/2017/01/11/word2vec-tutorial-part-2-negative-sampling/) - A follow-up blog post by Chris McCormick discussing negative sampling in Word2Vec.
|
1063 |
+
3. [Efficient Estimation of Word Representations in Vector Space](https://arxiv.org/pdf/1301.3781.pdf) - The original research paper by Mikolov et al. that introduced the Word2Vec algorithm.
|
1064 |
+
|
1065 |
+
4. [Word2Vec Tutorial: Vector Representation of Words](https://www.youtube.com/watch?v=64qSgA66P-8) - A YouTube video by Sentdex explaining the Word2Vec algorithm and its implementation in Python.
|
1066 |
+
5. [Word2Vec: How to Implement Word2Vec in Python](https://www.youtube.com/watch?v=ISPId9Lhc1g&t=6s) - A YouTube video by Data Talks demonstrating how to implement Word2Vec in Python using the Gensim library.
|
1067 |
+
""")
|
1068 |
+
|
1069 |
# else:
|
1070 |
# st.error("The password you entered is incorrect.")
|
1071 |
|