Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,32 +1,21 @@
|
|
1 |
import streamlit as st
|
2 |
from PIL import Image
|
3 |
|
4 |
-
image = Image.open("
|
5 |
-
st.image(image, width = 200)
|
6 |
|
|
|
|
|
7 |
col1, col2 = st.columns(2,gap="small")
|
8 |
-
with col1:
|
9 |
-
image = Image.open("RAII.png")
|
10 |
-
st.image(image, width = 200)
|
11 |
-
with col2:
|
12 |
-
image = Image.open("RAII.png")
|
13 |
-
st.image(image, width = 200)
|
14 |
|
15 |
-
col1, col2 = st.columns(2,gap="small")
|
16 |
with col1:
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
image = Image.open("RAII.png")
|
21 |
-
st.image(image, width = 200)
|
22 |
|
23 |
-
col1, col2 = st.columns(2,gap="small")
|
24 |
-
with col1:
|
25 |
-
image = Image.open("RAII.png")
|
26 |
-
st.image(image, width = 200)
|
27 |
with col2:
|
28 |
-
|
29 |
-
|
|
|
30 |
|
31 |
change_link_color = """
|
32 |
<style>
|
@@ -42,4 +31,3 @@ st.markdown(change_link_color , unsafe_allow_html=True)
|
|
42 |
st.write('<h4> FAQs <a href="https://www.responsible.ai/faq">π</a> Press Release <a href="https://www.responsible.ai/post/responsible-ai-institute-launches-raise-benchmarks-to-operationalize-scale-responsible-ai-policies?postId=af70f3b3-a320-42c7-b9f3-f829b67619c4">π</a> Methodology <a href="https://www.responsible.ai/post/raise-corporate-ai-policy-benchmark-methodology?postId=19034c80-baea-4e90-8235-10394a760139">π</a></h4>', unsafe_allow_html=True)
|
43 |
|
44 |
|
45 |
-
|
|
|
1 |
import streamlit as st
|
2 |
from PIL import Image
|
3 |
|
4 |
+
image = Image.open("rai_raise_main_badge_pos_102.png")
|
|
|
5 |
|
6 |
+
st.image(image, width = 200)
|
7 |
+
st.title("RAISE CORPORATE AI POLICY BENCHMARK")
|
8 |
col1, col2 = st.columns(2,gap="small")
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
|
|
|
10 |
with col1:
|
11 |
+
video_file = open('Rai Nov 23 Copy 01.mp4', 'rb')
|
12 |
+
video_bytes = video_file.read()
|
13 |
+
st.video(video_bytes)
|
|
|
|
|
14 |
|
|
|
|
|
|
|
|
|
15 |
with col2:
|
16 |
+
video_file1 = open('Demo.mp4', 'rb')
|
17 |
+
video_bytes1 = video_file1.read()
|
18 |
+
st.video(video_bytes1)
|
19 |
|
20 |
change_link_color = """
|
21 |
<style>
|
|
|
31 |
st.write('<h4> FAQs <a href="https://www.responsible.ai/faq">π</a> Press Release <a href="https://www.responsible.ai/post/responsible-ai-institute-launches-raise-benchmarks-to-operationalize-scale-responsible-ai-policies?postId=af70f3b3-a320-42c7-b9f3-f829b67619c4">π</a> Methodology <a href="https://www.responsible.ai/post/raise-corporate-ai-policy-benchmark-methodology?postId=19034c80-baea-4e90-8235-10394a760139">π</a></h4>', unsafe_allow_html=True)
|
32 |
|
33 |
|
|