--- tags: - text-to-image - lora - diffusers - template:diffusion-lora widget: - text: '-' output: url: cozi_z_1.png - text: '-' output: url: cozi_z_2.png - text: '-' output: url: cozi_z_3.png - text: '-' output: url: cozi_z_4.png base_model: black-forest-labs/FLUX.1-dev instance_prompt: coziz license: other license_name: flux-1-dev-non-commercial-license license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md --- # Cozi Zuehlsdorff Flux Model ## Model description Cozi Noelle Zuehlsdorff, born August 3, 1998, in Mission Viejo, CA, is an American actress and recording artist, best known for her role as Hazel Haskett in the movie "Dolphin Tale" (2011) and its sequel, "Dolphin Tale 2" (2014). She also starred in the films "Pure Country: Pure Heart" (2017) and "Freaky Friday" (2018), and appeared on television series such "Mighty Med," "KC Undercover," and "Liv and Maddie." Interestingly, Zuehlsdorff was originally a main cast member on the latter show before it was retooled and her part was cut; she later made guest appearances in two episodes as a different character. In November 2014, her song "Brave Souls" was featured on the "Dolphin Tale 2" soundtrack, and she released her debut EP, "Originals." Zuehlsdorff has also collaborated with many artists, including Hellberg on the track "The Girl." ## Trigger words You should use `coziz` to trigger the image generation. ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers) ```py from diffusers import AutoPipelineForText2Image import torch pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda') pipeline.load_lora_weights('mmaluchnick/cozi-zuehlsdorff-flux-model', weight_name='lora.safetensors') image = pipeline('your prompt').images[0] ``` For more details, including weighting, merging and fusing LoRAs, check the [documentation on loading LoRAs in diffusers](https://huggingface.co/docs/diffusers/main/en/using-diffusers/loading_adapters)