Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1,31 +1,21 @@
|
|
|
|
1 |
import gradio as gr
|
2 |
import numpy as np
|
3 |
import random
|
4 |
import spaces
|
5 |
import torch
|
6 |
-
from diffusers import DiffusionPipeline
|
7 |
|
8 |
dtype = torch.bfloat16
|
9 |
device = "cuda" if torch.cuda.is_available() else "cpu"
|
10 |
|
11 |
-
pipe = DiffusionPipeline.from_pretrained("black-forest-labs/FLUX.1-schnell", torch_dtype=dtype).to(device)
|
12 |
-
|
13 |
MAX_SEED = np.iinfo(np.int32).max
|
14 |
MAX_IMAGE_SIZE = 2048
|
15 |
|
16 |
-
@spaces.GPU()
|
17 |
def infer(prompt, seed=42, randomize_seed=False, width=1024, height=1024, num_inference_steps=4, progress=gr.Progress(track_tqdm=True)):
|
18 |
if randomize_seed:
|
19 |
seed = random.randint(0, MAX_SEED)
|
20 |
generator = torch.Generator().manual_seed(seed)
|
21 |
-
image =
|
22 |
-
prompt = prompt,
|
23 |
-
width = width,
|
24 |
-
height = height,
|
25 |
-
num_inference_steps = num_inference_steps,
|
26 |
-
generator = generator,
|
27 |
-
guidance_scale=0.0
|
28 |
-
).images[0]
|
29 |
return image, seed
|
30 |
|
31 |
examples = [
|
|
|
1 |
+
from huggingface_hub.inference_api import InferenceApi
|
2 |
import gradio as gr
|
3 |
import numpy as np
|
4 |
import random
|
5 |
import spaces
|
6 |
import torch
|
|
|
7 |
|
8 |
dtype = torch.bfloat16
|
9 |
device = "cuda" if torch.cuda.is_available() else "cpu"
|
10 |
|
|
|
|
|
11 |
MAX_SEED = np.iinfo(np.int32).max
|
12 |
MAX_IMAGE_SIZE = 2048
|
13 |
|
|
|
14 |
def infer(prompt, seed=42, randomize_seed=False, width=1024, height=1024, num_inference_steps=4, progress=gr.Progress(track_tqdm=True)):
|
15 |
if randomize_seed:
|
16 |
seed = random.randint(0, MAX_SEED)
|
17 |
generator = torch.Generator().manual_seed(seed)
|
18 |
+
image = InferenceApi(prompt)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
return image, seed
|
20 |
|
21 |
examples = [
|