mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-15 02:11:15 +08:00
9b42ba8f10
* changes * changes * revert changes * changes * add changeset * notebooks script * changes * changes --------- Co-authored-by: Ali Abid <aliabid94@gmail.com> Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com> Co-authored-by: Ali Abdalla <ali.si3luwa@gmail.com>
32 lines
1.2 KiB
Python
32 lines
1.2 KiB
Python
# This demo needs to be run from the repo folder.
|
|
# python demo/fake_gan/run.py
|
|
import random
|
|
|
|
import gradio as gr
|
|
|
|
def fake_gan():
|
|
images = [
|
|
(random.choice(
|
|
[
|
|
"http://www.marketingtool.online/en/face-generator/img/faces/avatar-1151ce9f4b2043de0d2e3b7826127998.jpg",
|
|
"http://www.marketingtool.online/en/face-generator/img/faces/avatar-116b5e92936b766b7fdfc242649337f7.jpg",
|
|
"http://www.marketingtool.online/en/face-generator/img/faces/avatar-1163530ca19b5cebe1b002b8ec67b6fc.jpg",
|
|
"http://www.marketingtool.online/en/face-generator/img/faces/avatar-1116395d6e6a6581eef8b8038f4c8e55.jpg",
|
|
"http://www.marketingtool.online/en/face-generator/img/faces/avatar-11319be65db395d0e8e6855d18ddcef0.jpg",
|
|
]
|
|
), f"label {i}")
|
|
for i in range(3)
|
|
]
|
|
return images
|
|
|
|
with gr.Blocks() as demo:
|
|
gallery = gr.Gallery(
|
|
label="Generated images", show_label=False, elem_id="gallery"
|
|
, columns=[3], rows=[1], object_fit="contain", height="auto")
|
|
btn = gr.Button("Generate images", scale=0)
|
|
|
|
btn.click(fake_gan, None, gallery)
|
|
|
|
if __name__ == "__main__":
|
|
demo.launch()
|