Instructions to use Shreeyut/BYJF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Shreeyut/BYJF with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("black-forest-labs/FLUX.1-dev", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("Shreeyut/BYJF") prompt = "A candid full body shot of a young european woman wearing a BJYF rib-knit bodycon dress, standing in an elegant indoor space with dark wooden paneling and ornate arched doorways. She's wearing a maroon fluffy crop coat draped over her shoulders, a maroon belt at her waist, and maroon glitter boots. She stands straight with arms at sides, legs together, and head facing forward in a static pose. The scene is illuminated with bright, airy lighting that creates a sophisticated atmosphere. The BJYF dress is white and form-fitting, crafted from ribbed knit fabric that follows the body's natural contours from top to bottom. The dress features delicate spaghetti straps and a refined scoop neckline, with its full-length silhouette extending gracefully to the floor. The maroon fluffy crop coat drapes elegantly over her shoulders, adding a luxurious layer of texture and warmth. At the waist, a maroon belt with square-shaped rhinestone embellishments cinches the dress, creating a defined silhouette. The maroon glitter-embellished boots peek out beneath the dress hem, adding a touch of sparkle. Her makeup is dewy, enhancing her natural glow. The bright, airy lighting bathes the scene in a warm radiance, creating a beautiful contrast against the rich, dark wooden surroundings while highlighting the textures of the outfit and architectural details. The overall composition exudes elegance and sophistication, with the subject's direct gaze and neutral expression adding to the polished atmosphere." image = pipe(prompt).images[0] - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Commit ·
f60e727
verified ·
0
Parent(s):
initial commit
Browse files- .gitattributes +55 -0
- README.md +46 -0
.gitattributes
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 5 |
+
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
| 6 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
| 8 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
| 9 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
| 10 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
| 11 |
+
*.lz4 filter=lfs diff=lfs merge=lfs -text
|
| 12 |
+
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
| 13 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
| 14 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
| 15 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
| 16 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
| 17 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 18 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 19 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
| 20 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
| 21 |
+
*.pickle filter=lfs diff=lfs merge=lfs -text
|
| 22 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
| 23 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 24 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 25 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
| 26 |
+
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 27 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
| 28 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
| 29 |
+
*.tar filter=lfs diff=lfs merge=lfs -text
|
| 30 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
| 31 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
| 32 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
| 33 |
+
*.xz filter=lfs diff=lfs merge=lfs -text
|
| 34 |
+
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 35 |
+
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
# Audio files - uncompressed
|
| 38 |
+
*.pcm filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
*.sam filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
*.raw filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
# Audio files - compressed
|
| 42 |
+
*.aac filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
*.flac filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
*.mp3 filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
*.ogg filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
*.wav filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
# Image files - uncompressed
|
| 48 |
+
*.bmp filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
*.gif filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
*.png filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
*.tiff filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
# Image files - compressed
|
| 53 |
+
*.jpg filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
*.jpeg filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
*.webp filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- text-to-image
|
| 4 |
+
- lora
|
| 5 |
+
- diffusers
|
| 6 |
+
- template:diffusion-lora
|
| 7 |
+
widget:
|
| 8 |
+
- text: >-
|
| 9 |
+
A candid full body shot of a young european woman wearing a BJYF rib-knit
|
| 10 |
+
bodycon dress, standing in an elegant indoor space with dark wooden paneling
|
| 11 |
+
and ornate arched doorways. She's wearing a maroon fluffy crop coat draped
|
| 12 |
+
over her shoulders, a maroon belt at her waist, and maroon glitter boots.
|
| 13 |
+
She stands straight with arms at sides, legs together, and head facing
|
| 14 |
+
forward in a static pose. The scene is illuminated with bright, airy
|
| 15 |
+
lighting that creates a sophisticated atmosphere. The BJYF dress is white
|
| 16 |
+
and form-fitting, crafted from ribbed knit fabric that follows the body's
|
| 17 |
+
natural contours from top to bottom. The dress features delicate spaghetti
|
| 18 |
+
straps and a refined scoop neckline, with its full-length silhouette
|
| 19 |
+
extending gracefully to the floor. The maroon fluffy crop coat drapes
|
| 20 |
+
elegantly over her shoulders, adding a luxurious layer of texture and
|
| 21 |
+
warmth. At the waist, a maroon belt with square-shaped rhinestone
|
| 22 |
+
embellishments cinches the dress, creating a defined silhouette. The maroon
|
| 23 |
+
glitter-embellished boots peek out beneath the dress hem, adding a touch of
|
| 24 |
+
sparkle. Her makeup is dewy, enhancing her natural glow. The bright, airy
|
| 25 |
+
lighting bathes the scene in a warm radiance, creating a beautiful contrast
|
| 26 |
+
against the rich, dark wooden surroundings while highlighting the textures
|
| 27 |
+
of the outfit and architectural details. The overall composition exudes
|
| 28 |
+
elegance and sophistication, with the subject's direct gaze and neutral
|
| 29 |
+
expression adding to the polished atmosphere.
|
| 30 |
+
output:
|
| 31 |
+
url: images/BJYF.webp
|
| 32 |
+
base_model: black-forest-labs/FLUX.1-dev
|
| 33 |
+
instance_prompt: null
|
| 34 |
+
|
| 35 |
+
---
|
| 36 |
+
# BJYF
|
| 37 |
+
|
| 38 |
+
<Gallery />
|
| 39 |
+
|
| 40 |
+
|
| 41 |
+
|
| 42 |
+
## Download model
|
| 43 |
+
|
| 44 |
+
Weights for this model are available in Safetensors format.
|
| 45 |
+
|
| 46 |
+
[Download](/Shreeyut/BYJF/tree/main) them in the Files & versions tab.
|