Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -13,9 +13,17 @@ import streamlit as st
|
|
13 |
import numpy as np
|
14 |
# For visualization
|
15 |
import plotly.express as px
|
|
|
|
|
|
|
|
|
|
|
16 |
pd.options.plotting.backend = "plotly"
|
17 |
|
18 |
st.header('DeSci Value Flow Model')
|
|
|
|
|
|
|
19 |
|
20 |
def p_researcher1(params, substep, state_history, previous_state):
|
21 |
losses = 0
|
|
|
13 |
import numpy as np
|
14 |
# For visualization
|
15 |
import plotly.express as px
|
16 |
+
|
17 |
+
from PIL import Image
|
18 |
+
# Additional dependencies
|
19 |
+
|
20 |
+
|
21 |
pd.options.plotting.backend = "plotly"
|
22 |
|
23 |
st.header('DeSci Value Flow Model')
|
24 |
+
image = Image.open('desci.png')
|
25 |
+
st.image(image, caption='DeSci value flow schema')
|
26 |
+
|
27 |
|
28 |
def p_researcher1(params, substep, state_history, previous_state):
|
29 |
losses = 0
|