Instructions to use Baragi-AI/LPC-FourDirection-Walk-Flux-Klein-9B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Baragi-AI/LPC-FourDirection-Walk-Flux-Klein-9B with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline from diffusers.utils import load_image # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("black-forest-labs/FLUX.2-klein-base-9B", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("Baragi-AI/LPC-FourDirection-Walk-Flux-Klein-9B") prompt = "Turn this cat into a dog" input_image = load_image("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/cat.png") image = pipe(image=input_image, prompt=prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
File size: 623 Bytes
4c3e3fc | 1 2 3 4 5 6 7 8 9 10 11 12 | This distribution includes a derivative of FLUX.2 [klein] Base 9B.
This FLUX Model is licensed by Black Forest Labs Inc. under the FLUX
Non-Commercial License. Copyright Black Forest Labs Inc. IN NO EVENT SHALL
BLACK FOREST LABS INC. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
IN CONNECTION WITH USE OF THIS MODEL.
Modified by Baragi AI as LPC Four-Direction Walk, a LoRA for LPC character
and walking-sprite editing. This is not an official Black Forest Labs product
and is not endorsed, approved, or validated by Black Forest Labs.
|