Spaces:
Sleeping
Sleeping
added changes
Browse files
app.py
CHANGED
@@ -62,6 +62,13 @@ def loss_fn(params):
|
|
62 |
x = jnp.linspace(0, 1, 100)
|
63 |
|
64 |
st.title("Radius of the Circle: Optimization Playground")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
|
66 |
col1, col2 = st.columns(2)
|
67 |
|
|
|
62 |
x = jnp.linspace(0, 1, 100)
|
63 |
|
64 |
st.title("Radius of the Circle: Optimization Playground")
|
65 |
+
st.markdown(
|
66 |
+
"""
|
67 |
+
Inspired from: https://twitter.com/iwontoffendyou/status/1704935240907518367
|
68 |
+
|
69 |
+
Optimize the radius of the circle such that it is tangent to the parabola, unit circle and the x=0 line
|
70 |
+
"""
|
71 |
+
)
|
72 |
|
73 |
col1, col2 = st.columns(2)
|
74 |
|