eagle0504 commited on
Commit
a458c56
1 Parent(s): 5b7cf25

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -17
app.py CHANGED
@@ -52,39 +52,35 @@ 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
- 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
 
 
52
  st.sidebar.markdown("Yiqiao Yin: [Site](https://www.y-yin.io/) | [LinkedIn](https://www.linkedin.com/in/yiqiaoyin/)")
53
 
54
 
55
+ with st.sidebar.expander("More Detailed Tutorials"):
56
  st.sidebar.markdown(
57
  r"""
58
+ To fine-tune LLM such as Llama2 on custom data, please use the following tutorials as resources. For the options above such as `Llama2 on YSA` and `Llama2 on BRK Letters`, they are developed based on the content of the following videos.
59
+
 
 
60
  ## Video Series Overview
61
+
62
  ### Video 1: Process Your Own PDF Doc into LLM Finetune-Ready Format
63
+
64
  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.
65
+
66
  - [Watch Video](https://youtu.be/hr2kSC1evQM)
67
  - [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)
68
+
69
  ### Video 2: Fine-tune Llama2-7b LLM Using Custom Data
70
+
71
  Dive into customizing the Llama-2 model with your unique dataset. This installment turns your data into a bespoke AI model.
72
+
73
  - [Watch Video](https://youtu.be/tDkY2gpvylE)
74
  - [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)
75
+
76
  ### Video 3: Deploy Inference Endpoint on HuggingFace!
77
+
78
  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.
79
+
80
  - [Watch Video](https://youtu.be/382yy-mCeCA)
81
  - [Deployment Guide](https://github.com/yiqiao-yin/WYNAssociates/blob/main/docs/ref-deeplearning/ex24f%20-%20inference%20endpoint%20interaction%20from%20huggingface.ipynb)
82
  - [HuggingFace Space](https://huggingface.co/spaces/eagle0504/streamlit-demo)
83
+
 
 
84
  """
85
  )
86