Update app.py
Browse files
app.py
CHANGED
@@ -54,7 +54,7 @@ st.markdown(' As we can see only $h$ and $d$ passed for $m_a$ model, not only th
|
|
54 |
st.code('run.compile(idx=(1,3,7))')
|
55 |
run.compile(idx=(1,3,7))
|
56 |
st.code('run.train(epochs=10)')
|
57 |
-
if st.button('Start Training⏳'
|
58 |
run.train(epochs=10)
|
59 |
st.code('run.plot3d()')
|
60 |
st.write(run.plot3d())
|
@@ -69,7 +69,7 @@ st.markdown('---\nTry it out yourself! Select a column from 1 to 10')
|
|
69 |
number = st.number_input('Here',min_value=1, max_value=10, step=1)
|
70 |
|
71 |
if number:
|
72 |
-
if st.button('Compile And Train💅'
|
73 |
st.code(f'run.compile(idx=(1,3,{number}))')
|
74 |
run.compile(idx=(1,3,number))
|
75 |
st.code('run.train(epochs=10)')
|
|
|
54 |
st.code('run.compile(idx=(1,3,7))')
|
55 |
run.compile(idx=(1,3,7))
|
56 |
st.code('run.train(epochs=10)')
|
57 |
+
if st.button('Start Training⏳'):
|
58 |
run.train(epochs=10)
|
59 |
st.code('run.plot3d()')
|
60 |
st.write(run.plot3d())
|
|
|
69 |
number = st.number_input('Here',min_value=1, max_value=10, step=1)
|
70 |
|
71 |
if number:
|
72 |
+
if st.button('Compile And Train💅'):
|
73 |
st.code(f'run.compile(idx=(1,3,{number}))')
|
74 |
run.compile(idx=(1,3,number))
|
75 |
st.code('run.train(epochs=10)')
|