lovis93 commited on
Commit
4805775
·
verified ·
1 Parent(s): 3142ee2

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +4 -58
README.md CHANGED
@@ -22,7 +22,7 @@ library_name: diffusers
22
 
23
  # Qwen-Image-Edit-2511-Multiple-Angles-LoRA
24
 
25
- > **The first multi-angle camera control LoRA for Qwen-Image-Edit-2511**
26
  >
27
  > 96 camera positions • Trained on 3000+ Gaussian Splatting renders • Built with [fal.ai](https://fal.ai)
28
 
@@ -328,60 +328,6 @@ While Qwen-Image-Edit-2511 has built-in viewpoint capabilities, this LoRA provid
328
 
329
  ---
330
 
331
- ## Code Examples
332
-
333
- ### Python with Diffusers
334
-
335
- ```python
336
- import torch
337
- from PIL import Image
338
- from diffusers import QwenImageEditPlusPipeline
339
-
340
- # Load base model
341
- pipeline = QwenImageEditPlusPipeline.from_pretrained(
342
- "Qwen/Qwen-Image-Edit-2511",
343
- torch_dtype=torch.bfloat16
344
- )
345
- pipeline.to('cuda')
346
-
347
- # Load Multi-Angles LoRA
348
- pipeline.load_lora_weights("fal/Qwen-Image-Edit-2511-Multiple-Angles-LoRA")
349
-
350
- # Generate
351
- image = Image.open("input.png")
352
- prompt = "<sks> front-right quarter view low-angle shot close-up"
353
-
354
- output = pipeline(
355
- image=image,
356
- prompt=prompt,
357
- generator=torch.manual_seed(0),
358
- true_cfg_scale=4.0,
359
- num_inference_steps=40,
360
- guidance_scale=1.0,
361
- )
362
-
363
- output.images[0].save("output.png")
364
- ```
365
-
366
- ### Python with fal.ai
367
-
368
- ```python
369
- import fal_client
370
-
371
- result = fal_client.subscribe(
372
- "fal-ai/qwen-image-edit",
373
- arguments={
374
- "image_url": "https://your-image-url.jpg",
375
- "prompt": "<sks> back view high-angle shot wide shot",
376
- "lora_path": "fal/Qwen-Image-Edit-2511-Multiple-Angles-LoRA",
377
- "lora_scale": 0.9,
378
- },
379
- )
380
- print(result["images"][0]["url"])
381
- ```
382
-
383
- ---
384
-
385
  ## Training Details
386
 
387
  | Parameter | Value |
@@ -391,7 +337,7 @@ print(result["images"][0]["url"])
391
  | **Training Data** | 3000+ Gaussian Splatting renders |
392
  | **Camera Poses** | 96 unique positions (4×8×3) |
393
  | **Data Source** | Synthetic 3D renders with precise camera control |
394
- | **Dataset & Training** | Created by [@lovis93](https://huggingface.co/lovis93) ([@odinlovis](https://x.com/odinlovis)) |
395
 
396
  ---
397
 
@@ -415,9 +361,9 @@ print(result["images"][0]["url"])
415
 
416
  ## Author
417
 
418
- Created by **Lovis Odin** [@lovis93](https://huggingface.co/lovis93) • [@odinlovis](https://x.com/odinlovis)
419
 
420
- Dataset created and model trained using [fal.ai Qwen Image Edit 2511 Trainer](https://fal.ai/models/fal-ai/qwen-image-edit-2511-trainer)
421
 
422
  ---
423
 
 
22
 
23
  # Qwen-Image-Edit-2511-Multiple-Angles-LoRA
24
 
25
+ > **The most powerful multi-angle camera control LoRA for Qwen-Image-Edit-2511**
26
  >
27
  > 96 camera positions • Trained on 3000+ Gaussian Splatting renders • Built with [fal.ai](https://fal.ai)
28
 
 
328
 
329
  ---
330
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
331
  ## Training Details
332
 
333
  | Parameter | Value |
 
337
  | **Training Data** | 3000+ Gaussian Splatting renders |
338
  | **Camera Poses** | 96 unique positions (4×8×3) |
339
  | **Data Source** | Synthetic 3D renders with precise camera control |
340
+ | **Dataset & Training** | Built by Lovis Odin at fal |
341
 
342
  ---
343
 
 
361
 
362
  ## Author
363
 
364
+ Built by **Lovis Odin** ([@lovis93](https://huggingface.co/lovis93) • [@odinlovis](https://x.com/odinlovis)) at [fal](https://fal.ai)
365
 
366
+ Trained using [fal Qwen Image Edit 2511 Trainer](https://fal.ai/models/fal-ai/qwen-image-edit-2511-trainer)
367
 
368
  ---
369