Update app.py
Browse files
app.py
CHANGED
@@ -148,13 +148,13 @@ with gr.Blocks(theme='pikto/theme@>=0.0.1,<0.0.3') as pan:
|
|
148 |
Stream <a href="https://github.com/playgroundai/liked_images" target="_blank">PlaygroundAI Images</a> ina beautiful grid</h4><br>
|
149 |
</div>""")
|
150 |
|
151 |
-
|
152 |
-
gr.Column(): #(elem_id = "col-container"):
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
|
159 |
gr.HTML('''<center><a href="https://huggingface.co/spaces/ysharma/Stream_PlaygroundAI_Images?duplicate=true"><img src="https://bit.ly/3gLdBN6" alt="Duplicate Space"></a></center>
|
160 |
</p></div>''')
|
|
|
148 |
Stream <a href="https://github.com/playgroundai/liked_images" target="_blank">PlaygroundAI Images</a> ina beautiful grid</h4><br>
|
149 |
</div>""")
|
150 |
|
151 |
+
with gr.Column(): #(elem_id = "col-container"):
|
152 |
+
#gr.Column(): #(elem_id = "col-container"):
|
153 |
+
b1 = gr.Button("Load More Images").style(full_width=False)
|
154 |
+
df = gr.Textbox(visible=False,elem_id='dataframe', value=response_dict)
|
155 |
+
row_count = gr.Number(visible=False, value=19 )
|
156 |
+
img_search = gr.HTML(label = 'Images from PlaygroundAI dataset', elem_id="img_search",
|
157 |
+
value=initial_imgs ) #initial[:-1] )
|
158 |
|
159 |
gr.HTML('''<center><a href="https://huggingface.co/spaces/ysharma/Stream_PlaygroundAI_Images?duplicate=true"><img src="https://bit.ly/3gLdBN6" alt="Duplicate Space"></a></center>
|
160 |
</p></div>''')
|