Update app.py
Browse files
app.py
CHANGED
@@ -112,9 +112,9 @@ title = "Compressive sensing: Tomography reconstruction with L1 prior (Lasso)"
|
|
112 |
|
113 |
des="This example shows the reconstruction of an image from a set of parallel projections, acquired along different angles. Such a dataset is acquired in computed tomography (CT)."
|
114 |
with gr.Blocks(title=title) as demo:
|
115 |
-
gr.Markdown(f"
|
116 |
gr.Markdown(f"{des}")
|
117 |
-
gr.Markdown("
|
118 |
|
119 |
with gr.Row():
|
120 |
l=gr.Slider(minimum=100, maximum=500, step=1, value = 128, label = "Linear size")
|
|
|
112 |
|
113 |
des="This example shows the reconstruction of an image from a set of parallel projections, acquired along different angles. Such a dataset is acquired in computed tomography (CT)."
|
114 |
with gr.Blocks(title=title) as demo:
|
115 |
+
gr.Markdown(f"#{title}")
|
116 |
gr.Markdown(f"{des}")
|
117 |
+
gr.Markdown("This demo is based on this [scikit-learn example](https://scikit-learn.org/stable/auto_examples/applications/plot_tomography_l1_reconstruction.html#sphx-glr-auto-examples-applications-plot-tomography-l1-reconstruction-py).")
|
118 |
|
119 |
with gr.Row():
|
120 |
l=gr.Slider(minimum=100, maximum=500, step=1, value = 128, label = "Linear size")
|