Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -9,7 +9,7 @@ from cadCAD.engine import ExecutionContext, Executor
|
|
9 |
from cadCAD import configs
|
10 |
import streamlit as st
|
11 |
|
12 |
-
|
13 |
# Additional dependencies
|
14 |
|
15 |
# For analytics
|
@@ -19,6 +19,8 @@ import plotly.express as px
|
|
19 |
pd.options.plotting.backend = "plotly"
|
20 |
|
21 |
st.header('CeSci Value Flow Model')
|
|
|
|
|
22 |
|
23 |
def p_value_flow(params, substep, state_history, previous_state):
|
24 |
funding = 0
|
|
|
9 |
from cadCAD import configs
|
10 |
import streamlit as st
|
11 |
|
12 |
+
from PIL import Image
|
13 |
# Additional dependencies
|
14 |
|
15 |
# For analytics
|
|
|
19 |
pd.options.plotting.backend = "plotly"
|
20 |
|
21 |
st.header('CeSci Value Flow Model')
|
22 |
+
image = Image.open('cesci.jpg')
|
23 |
+
st.image(image, caption='CeSci value flow schema')
|
24 |
|
25 |
def p_value_flow(params, substep, state_history, previous_state):
|
26 |
funding = 0
|