Spaces:
Sleeping
Sleeping
File size: 15,232 Bytes
0b4562b 5db3c1f 447bd94 0b4562b 3edcad7 447bd94 42a331b 447bd94 4d5b25f 02a442c 3216b1d 02a442c 3216b1d 447bd94 4d5b25f fcc18a6 3216b1d 447bd94 3216b1d 02a442c 447bd94 fcc18a6 447bd94 0b4562b 447bd94 0b4562b 447bd94 fcc18a6 0b4562b fcc18a6 0b4562b fcc18a6 0b4562b 02a442c 0b4562b 02a442c 0b4562b fcc18a6 3216b1d fcc18a6 3216b1d 0b4562b fcc18a6 0b4562b fcc18a6 0b4562b fcc18a6 0b4562b 447bd94 0b4562b 447bd94 0b4562b cde4a6b 0b4562b 9a9ea5b 0b4562b 3edcad7 9a9ea5b 0b4562b 9a9ea5b 0b4562b 3edcad7 9a9ea5b 0b4562b 7f796c3 0194c79 7f796c3 0b4562b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 |
"""
Hugging Face Space for STARFlow
Text-to-Image and Text-to-Video Generation
This app allows you to run STARFlow inference on Hugging Face GPU infrastructure.
"""
import os
import gradio as gr
import torch
import subprocess
import pathlib
from pathlib import Path
# Fix OpenMP warning
os.environ['OMP_NUM_THREADS'] = '1'
# Try to import huggingface_hub for downloading checkpoints
try:
from huggingface_hub import hf_hub_download
HF_HUB_AVAILABLE = True
except ImportError:
HF_HUB_AVAILABLE = False
print("β οΈ huggingface_hub not available. Install with: pip install huggingface_hub")
# Check if running on Hugging Face Spaces
HF_SPACE = os.environ.get("SPACE_ID") is not None
# Default checkpoint paths (if uploaded to Space Files)
DEFAULT_IMAGE_CHECKPOINT = "ckpts/starflow_3B_t2i_256x256.pth"
DEFAULT_VIDEO_CHECKPOINT = "ckpts/starflow-v_7B_t2v_caus_480p_v3.pth"
# Model Hub repositories (if using Hugging Face Model Hub)
# Set these to your Model Hub repo IDs if you upload checkpoints there
# Format: "username/repo-name"
IMAGE_CHECKPOINT_REPO = "GlobalStudio/starflow-3b-checkpoint" # Update this after creating Model Hub repo
VIDEO_CHECKPOINT_REPO = "GlobalStudio/starflow-v-7b-checkpoint" # Update this after creating Model Hub repo
def get_checkpoint_path(checkpoint_file, default_local_path, repo_id=None, filename=None):
"""Get checkpoint path, downloading from Hub if needed."""
# If user uploaded a file, use it
if checkpoint_file is not None:
if hasattr(checkpoint_file, 'name'):
return checkpoint_file.name
return str(checkpoint_file)
# Try local path first
if os.path.exists(default_local_path):
return default_local_path
# Try downloading from Model Hub if configured
if repo_id and filename and HF_HUB_AVAILABLE:
try:
# Use /workspace if available (persistent), otherwise /tmp
cache_dir = "/workspace/checkpoints" if os.path.exists("/workspace") else "/tmp/checkpoints"
os.makedirs(cache_dir, exist_ok=True)
# Check if already downloaded
possible_path = os.path.join(cache_dir, "models--" + repo_id.replace("/", "--"), "snapshots", "*", filename)
import glob
existing = glob.glob(possible_path)
if existing:
checkpoint_path = existing[0]
print(f"β
Using cached checkpoint: {checkpoint_path}")
return checkpoint_path
# Download with progress tracking
import time
start_time = time.time()
print(f"π₯ Downloading checkpoint from {repo_id}...")
print(f"File size: ~15.5 GB - This may take 10-30 minutes")
checkpoint_path = hf_hub_download(
repo_id=repo_id,
filename=filename,
cache_dir=cache_dir,
local_files_only=False,
resume_download=True, # Resume if interrupted
)
elapsed = time.time() - start_time
print(f"β
Download completed in {elapsed/60:.1f} minutes")
print(f"β
Checkpoint at: {checkpoint_path}")
return checkpoint_path
except Exception as e:
error_detail = str(e)
if "404" in error_detail or "not found" in error_detail.lower():
return None, f"Checkpoint not found in Model Hub.\n\nPlease verify:\n1. Repo exists: https://huggingface.co/{repo_id}\n2. File exists: {filename}\n3. Repo is Public (not Private)\n\nError: {error_detail}"
return None, f"Error downloading checkpoint: {error_detail}\n\nThis may take 10-30 minutes for a 14GB file. Please wait or check your internet connection."
# No checkpoint found
return None, f"Checkpoint not found. Please upload a checkpoint file or configure Model Hub repository."
# Verify CUDA availability (will be True on HF Spaces with GPU hardware)
if torch.cuda.is_available():
print(f"β
CUDA available! Device: {torch.cuda.get_device_name(0)}")
print(f" CUDA Version: {torch.version.cuda}")
print(f" PyTorch Version: {torch.__version__}")
else:
print("β οΈ CUDA not available. Make sure GPU hardware is selected in Space settings.")
def generate_image(prompt, aspect_ratio, cfg, seed, checkpoint_file, config_path):
"""Generate image from text prompt."""
# Get checkpoint path (from upload, local, or Model Hub)
result = get_checkpoint_path(
checkpoint_file,
DEFAULT_IMAGE_CHECKPOINT,
IMAGE_CHECKPOINT_REPO,
"starflow_3B_t2i_256x256.pth"
)
if isinstance(result, tuple) and result[0] is None:
return None, result[1] # Error message
checkpoint_path = result
# Show status
status_msg = f"Using checkpoint: {checkpoint_path}\n"
if not os.path.exists(checkpoint_path):
return None, f"Error: Checkpoint file not found at {checkpoint_path}.\n\nPlease verify:\n1. Model Hub repo exists: {IMAGE_CHECKPOINT_REPO}\n2. File name matches: starflow_3B_t2i_256x256.pth\n3. Repo is Public (not Private)"
if not config_path or not os.path.exists(config_path):
return None, "Error: Config file not found. Please ensure config file exists."
status_msg += "Starting image generation...\n"
status_msg += "This may take 1-3 minutes for first run (model loading).\n"
try:
# Create output directory
output_dir = Path("outputs")
output_dir.mkdir(exist_ok=True)
# Run sampling command
# Set logdir to outputs directory for easier file finding
cmd = [
"python", "sample.py",
"--model_config_path", config_path,
"--checkpoint_path", checkpoint_path,
"--caption", prompt,
"--sample_batch_size", "1",
"--cfg", str(cfg),
"--aspect_ratio", aspect_ratio,
"--seed", str(seed),
"--save_folder", "1",
"--finetuned_vae", "none",
"--jacobi", "1",
"--jacobi_th", "0.001",
"--jacobi_block_size", "16",
"--logdir", str(output_dir) # Set logdir to outputs
]
status_msg += "Running generation...\n"
status_msg += "Note: First run includes checkpoint download (~10-20 min) and model loading (~2-5 min).\n"
# Run with timeout (45 minutes max - allows for download + generation)
result = subprocess.run(cmd, capture_output=True, text=True, cwd=os.getcwd(), timeout=2700)
if result.returncode != 0:
error_msg = f"Error during generation:\n{result.stderr}\n\nStdout:\n{result.stdout}"
return None, error_msg
status_msg += "Generation complete. Looking for output...\n"
# Find the generated image
# The sample.py script saves to logdir/model_name/...
# We need to find the most recent output
output_files = list(output_dir.glob("**/*.png")) + list(output_dir.glob("**/*.jpg"))
if output_files:
latest_file = max(output_files, key=lambda p: p.stat().st_mtime)
return str(latest_file), status_msg + "β
Success! Image generated."
else:
return None, status_msg + f"Error: Generated image not found in {output_dir}. Check stdout:\n{result.stdout}"
except Exception as e:
return None, f"Error: {str(e)}"
def generate_video(prompt, aspect_ratio, cfg, seed, target_length, checkpoint_file, config_path, input_image):
"""Generate video from text prompt."""
# Get checkpoint path (from upload, local, or Model Hub)
result = get_checkpoint_path(
checkpoint_file,
DEFAULT_VIDEO_CHECKPOINT,
VIDEO_CHECKPOINT_REPO,
"starflow-v_7B_t2v_caus_480p_v3.pth"
)
if isinstance(result, tuple) and result[0] is None:
return None, result[1] # Error message
checkpoint_path = result
if not os.path.exists(checkpoint_path):
return None, f"Error: Checkpoint file not found at {checkpoint_path}."
if not config_path or not os.path.exists(config_path):
return None, "Error: Config file not found. Please ensure config file exists."
# Handle input image
input_image_path = None
if input_image is not None:
if hasattr(input_image, 'name'):
input_image_path = input_image.name
else:
input_image_path = str(input_image)
try:
# Create output directory
output_dir = Path("outputs")
output_dir.mkdir(exist_ok=True)
# Run sampling command
cmd = [
"python", "sample.py",
"--model_config_path", config_path,
"--checkpoint_path", checkpoint_path,
"--caption", prompt,
"--sample_batch_size", "1",
"--cfg", str(cfg),
"--aspect_ratio", aspect_ratio,
"--seed", str(seed),
"--out_fps", "16",
"--save_folder", "1",
"--jacobi", "1",
"--jacobi_th", "0.001",
"--finetuned_vae", "none",
"--disable_learnable_denoiser", "0",
"--jacobi_block_size", "32",
"--target_length", str(target_length)
]
if input_image_path and os.path.exists(input_image_path):
cmd.extend(["--input_image", input_image_path])
else:
cmd.extend(["--input_image", "none"])
result = subprocess.run(cmd, capture_output=True, text=True, cwd=os.getcwd())
if result.returncode != 0:
return None, f"Error: {result.stderr}"
# Find the generated video
output_files = list(output_dir.glob("**/*.mp4")) + list(output_dir.glob("**/*.gif"))
if output_files:
latest_file = max(output_files, key=lambda p: p.stat().st_mtime)
return str(latest_file), "Success! Video generated."
else:
return None, "Error: Generated video not found."
except Exception as e:
return None, f"Error: {str(e)}"
# Create Gradio interface
with gr.Blocks(title="STARFlow - Text-to-Image & Video Generation") as demo:
gr.Markdown("""
# STARFlow: Scalable Transformer Auto-Regressive Flow
Generate high-quality images and videos from text prompts using STARFlow models.
**Checkpoints are automatically downloaded from Model Hub on first use.**
""")
with gr.Tabs():
with gr.Tab("Text-to-Image"):
with gr.Row():
with gr.Column():
image_prompt = gr.Textbox(
label="Prompt",
placeholder="a film still of a cat playing piano",
lines=3
)
# Checkpoint upload hidden - using Model Hub instead
image_checkpoint = gr.File(
label="Model Checkpoint (.pth file) - Optional if already uploaded to Space",
file_types=[".pth"],
visible=False # Hidden - using Model Hub
)
image_config = gr.Textbox(
label="Config Path",
value="configs/starflow_3B_t2i_256x256.yaml",
placeholder="configs/starflow_3B_t2i_256x256.yaml"
)
image_aspect = gr.Dropdown(
choices=["1:1", "2:3", "3:2", "16:9", "9:16", "4:5", "5:4"],
value="1:1",
label="Aspect Ratio"
)
image_cfg = gr.Slider(1.0, 10.0, value=3.6, step=0.1, label="CFG Scale")
image_seed = gr.Number(value=999, label="Seed", precision=0)
image_btn = gr.Button("Generate Image", variant="primary")
with gr.Column():
image_output = gr.Image(label="Generated Image")
image_status = gr.Textbox(label="Status", interactive=False)
image_btn.click(
fn=generate_image,
inputs=[image_prompt, image_aspect, image_cfg, image_seed, image_checkpoint, image_config],
outputs=[image_output, image_status],
show_progress=True
)
with gr.Tab("Text-to-Video"):
with gr.Row():
with gr.Column():
video_prompt = gr.Textbox(
label="Prompt",
placeholder="a corgi dog looks at the camera",
lines=3
)
# Checkpoint upload hidden - using Model Hub instead
video_checkpoint = gr.File(
label="Model Checkpoint (.pth file) - Optional if already uploaded to Space",
file_types=[".pth"],
visible=False # Hidden - using Model Hub
)
video_config = gr.Textbox(
label="Config Path",
value="configs/starflow-v_7B_t2v_caus_480p.yaml",
placeholder="configs/starflow-v_7B_t2v_caus_480p.yaml"
)
video_aspect = gr.Dropdown(
choices=["16:9", "1:1", "4:3"],
value="16:9",
label="Aspect Ratio"
)
video_cfg = gr.Slider(1.0, 10.0, value=3.5, step=0.1, label="CFG Scale")
video_seed = gr.Number(value=99, label="Seed", precision=0)
video_length = gr.Slider(81, 481, value=81, step=80, label="Target Length (frames)")
video_input_image = gr.File(
label="Input Image (optional, for image-to-video)",
file_types=["image"]
)
video_btn = gr.Button("Generate Video", variant="primary")
with gr.Column():
video_output = gr.Video(label="Generated Video")
video_status = gr.Textbox(label="Status", interactive=False)
video_btn.click(
fn=generate_video,
inputs=[video_prompt, video_aspect, video_cfg, video_seed, video_length,
video_checkpoint, video_config, video_input_image],
outputs=[video_output, video_status],
show_progress=True
)
if __name__ == "__main__":
# Password protection - users don't need HF accounts!
# Change these to your desired username/password
# For multiple users, use: auth=[("user1", "pass1"), ("user2", "pass2")]
demo.launch(
server_name="0.0.0.0",
server_port=7860,
auth=("starflow", "im30"), # Change password!
share=False # Set to True if you want public Gradio link
)
|