Spaces:
Running
Running
Update pages/1_Videos_and_Slides.py
Browse files- pages/1_Videos_and_Slides.py +30 -1
pages/1_Videos_and_Slides.py
CHANGED
@@ -1 +1,30 @@
|
|
1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
# Main title
|
4 |
+
st.title("Unlocking PyTorch with Prompt-Engineering")
|
5 |
+
|
6 |
+
# Data for the series
|
7 |
+
content = [
|
8 |
+
{
|
9 |
+
"title": "Unlocking PyTorch with Prompt-Engineering, Part 1",
|
10 |
+
"video": "https://youtu.be/B0zagZ23edI",
|
11 |
+
"slides": "https://www.linkedin.com/pulse/unlocking-pytorch-prompt-engineering-part-1-michael-lively-ndi3e/?trackingId=wxu34JyZQ%2BeiYfxDI5sMoQ%3D%3D"
|
12 |
+
},
|
13 |
+
{
|
14 |
+
"title": "Unlocking PyTorch with Prompt-Engineering, Part 2",
|
15 |
+
"video": "https://youtu.be/KgayiqAlyag",
|
16 |
+
"slides": "https://www.linkedin.com/pulse/unlocking-pytorch-prompt-engineering-part-2-michael-lively-ekute/?trackingId=wxu34JyZQ%2BeiYfxDI5sMoQ%3D%3D"
|
17 |
+
},
|
18 |
+
{
|
19 |
+
"title": "Unlocking PyTorch with Prompt-Engineering, Part 3",
|
20 |
+
"video": "https://youtu.be/HwvOiso6Fl0",
|
21 |
+
"slides": "https://www.linkedin.com/pulse/unlocking-pytorch-prompt-engineering-part-3-resnet-gans-lively-zswte/?trackingId=iMJVnOGTSwuh5RdOuaxQ7A%3D%3D"
|
22 |
+
}
|
23 |
+
]
|
24 |
+
|
25 |
+
for part in content:
|
26 |
+
st.header(part["title"])
|
27 |
+
st.video(part["video"])
|
28 |
+
st.markdown(f"[Slides]({part['slides']})")
|
29 |
+
|
30 |
+
# To run the app, use the command: streamlit run your_script_name.py
|