mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-21 01:01:05 +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>
21 lines
495 B
Python
21 lines
495 B
Python
import gradio as gr
|
|
import numpy as np
|
|
import time
|
|
|
|
def fake_diffusion(steps):
|
|
rng = np.random.default_rng()
|
|
for i in range(steps):
|
|
time.sleep(1)
|
|
image = rng.random(size=(600, 600, 3))
|
|
yield image
|
|
image = np.ones((1000,1000,3), np.uint8)
|
|
image[:] = [255, 124, 0]
|
|
yield image
|
|
|
|
demo = gr.Interface(fake_diffusion,
|
|
inputs=gr.Slider(1, 10, 3, step=1),
|
|
outputs="image")
|
|
|
|
if __name__ == "__main__":
|
|
demo.launch()
|