Spaces:
Runtime error
Runtime error
Commit
·
23f9eed
1
Parent(s):
a465226
entropy memory views
Browse files
app.py
CHANGED
|
@@ -247,14 +247,14 @@ with gr.Blocks(title="Sophia, Torah Codes",css=css,js=js) as app:
|
|
| 247 |
with gr.Row():
|
| 248 |
with gr.Column():
|
| 249 |
c_time2 = gr.Textbox(label="Memory refreshed every second")
|
| 250 |
-
|
| 251 |
-
|
| 252 |
-
|
| 253 |
-
|
| 254 |
-
|
| 255 |
-
|
| 256 |
-
|
| 257 |
-
|
| 258 |
|
| 259 |
|
| 260 |
demo.load(lambda: datetime.datetime.now(), None, c_time2, every=1)
|
|
|
|
| 247 |
with gr.Row():
|
| 248 |
with gr.Column():
|
| 249 |
c_time2 = gr.Textbox(label="Memory refreshed every second")
|
| 250 |
+
gr.Textbox(
|
| 251 |
+
"Change the value of the slider to calibrate the memory",
|
| 252 |
+
label="",
|
| 253 |
+
)
|
| 254 |
+
period = gr.Slider(
|
| 255 |
+
label="Period of plot", value=1, minimum=0, maximum=10, step=1
|
| 256 |
+
)
|
| 257 |
+
plot = gr.LinePlot(show_label=False)
|
| 258 |
|
| 259 |
|
| 260 |
demo.load(lambda: datetime.datetime.now(), None, c_time2, every=1)
|