Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -52,6 +52,43 @@ st.sidebar.write("---")
|
|
52 |
st.sidebar.markdown("Yiqiao Yin: [Site](https://www.y-yin.io/) | [LinkedIn](https://www.linkedin.com/in/yiqiaoyin/)")
|
53 |
|
54 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
# Reset everything
|
56 |
if clear_button:
|
57 |
st.session_state.messages = []
|
|
|
52 |
st.sidebar.markdown("Yiqiao Yin: [Site](https://www.y-yin.io/) | [LinkedIn](https://www.linkedin.com/in/yiqiaoyin/)")
|
53 |
|
54 |
|
55 |
+
with st.expander("More Detailed Tutorials"):
|
56 |
+
st.sidebar.markdown(
|
57 |
+
r"""
|
58 |
+
# Beginner's Guide to DS, ML, and AI Playlist
|
59 |
+
|
60 |
+
This playlist has many interesting content. Most importantly, we released coaching materials that consists of a 3-part video series that guides you through the fascinating world of Data Science, Machine Learning, and Artificial Intelligence.
|
61 |
+
|
62 |
+
## Video Series Overview
|
63 |
+
|
64 |
+
### Video 1: Process Your Own PDF Doc into LLM Finetune-Ready Format
|
65 |
+
|
66 |
+
Learn how to transform PDF documents into AI model fine-tuning ready formats. This video will take you through the steps to make your PDF data AI-ready.
|
67 |
+
|
68 |
+
- [Watch Video](https://youtu.be/hr2kSC1evQM)
|
69 |
+
- [Tutorial Notebook](https://github.com/yiqiao-yin/WYNAssociates/blob/main/docs/ref-deeplearning/ex24f%20-%20process%20custom%20data%20from%20pdf%20and%20push%20to%20huggingface%20to%20prep%20for%20fine%20tune%20task%20of%20llama%202%20using%20lora.ipynb)
|
70 |
+
|
71 |
+
### Video 2: Fine-tune Llama2-7b LLM Using Custom Data
|
72 |
+
|
73 |
+
Dive into customizing the Llama-2 model with your unique dataset. This installment turns your data into a bespoke AI model.
|
74 |
+
|
75 |
+
- [Watch Video](https://youtu.be/tDkY2gpvylE)
|
76 |
+
- [Guide to Fine-Tuning](https://github.com/yiqiao-yin/WYNAssociates/blob/main/docs/ref-deeplearning/ex24f%20-%20fine%20tune%20Llama%202%20using%20ysa%20data%20in%20colab.ipynb)
|
77 |
+
|
78 |
+
### Video 3: Deploy Inference Endpoint on HuggingFace!
|
79 |
+
|
80 |
+
Discover how to make your AI model accessible to the world by deploying it on HuggingFace. This video turns your project into a global phenomenon.
|
81 |
+
|
82 |
+
- [Watch Video](https://youtu.be/382yy-mCeCA)
|
83 |
+
- [Deployment Guide](https://github.com/yiqiao-yin/WYNAssociates/blob/main/docs/ref-deeplearning/ex24f%20-%20inference%20endpoint%20interaction%20from%20huggingface.ipynb)
|
84 |
+
- [HuggingFace Space](https://huggingface.co/spaces/eagle0504/streamlit-demo)
|
85 |
+
|
86 |
+
Join us on this journey to transform static data into dynamic AI models, from data preparation and model fine-tuning to global deployment.
|
87 |
+
|
88 |
+
"""
|
89 |
+
)
|
90 |
+
|
91 |
+
|
92 |
# Reset everything
|
93 |
if clear_button:
|
94 |
st.session_state.messages = []
|