Instructions to use profpeng/blinksidemission with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use profpeng/blinksidemission with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Wan-AI/Wan2.2-I2V-A14B", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("profpeng/blinksidemission") prompt = "-" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Commit ·
48eabcf
verified ·
0
Parent(s):
initial commit
Browse files- .gitattributes +55 -0
- README.md +48 -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,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- text-to-image
|
| 4 |
+
- lora
|
| 5 |
+
- diffusers
|
| 6 |
+
- template:diffusion-lora
|
| 7 |
+
widget:
|
| 8 |
+
- output:
|
| 9 |
+
url: images/Screenshot 2026-04-10 at 7.24.39 PM.png
|
| 10 |
+
text: '-'
|
| 11 |
+
base_model: Wan-AI/Wan2.2-I2V-A14B
|
| 12 |
+
instance_prompt: null
|
| 13 |
+
|
| 14 |
+
---
|
| 15 |
+
# blinksidemission
|
| 16 |
+
|
| 17 |
+
<Gallery />
|
| 18 |
+
|
| 19 |
+
## Model description
|
| 20 |
+
|
| 21 |
+
White
|
| 22 |
+
Close-up
|
| 23 |
+
The video starts with a shot of a woman. The video then zoom transitions to the same woman having sex with a man in a missionary position. The camera transitions close-up, static shot from a side-profile angle. The light-skinned man is positioned over the woman with his head out of frame. The woman lies on her back, with her head turned facing the camera she is looking directly at the camera. The man's penis is in her vagina. her hands lay at her sides.
|
| 24 |
+
|
| 25 |
+
Medium
|
| 26 |
+
The video starts with showing a woman. The video then jumpcuts to the same woman having sex with a white man in a missionary position. The camera shot type is a wide shot from a side-angle, and the camera is static. The man's head is clearly in the frame, and he is leaning down to kiss the woman while he thrusts. The man has his hands planted on the bed to support himself as he moves. The woman has her legs wrapped around the man's waist, with her feet pointed toward upwards. She is facing to the side looking at the camera. Her hands are resting on the man's upper arms/shoulders as they interact.
|
| 27 |
+
|
| 28 |
+
|
| 29 |
+
Wide
|
| 30 |
+
The video starts with a shot of a woman. The video then zoom transitions to the same woman having sex with a man in a missionary position. The camera transitions to a wide-angle, static shot from a side-profile angle. The light-skinned man is positioned over the woman with his head out of frame. The woman lies on her back, with her head turned facing the camera she is looking directly at the camera. The man's penis is in her vagina. her hands lay at her sides.
|
| 31 |
+
|
| 32 |
+
Black
|
| 33 |
+
Close-up
|
| 34 |
+
The video starts with a shot of a woman. The video then zoom transitions to the same woman having sex with a man in a missionary position. The camera transitions close-up, static shot from a side-profile angle. The dark-skinned man is positioned over the woman with his head out of frame. The woman lies on her back, with her head turned facing the camera she is looking directly at the camera. The man's penis is in her vagina. her hands lay at her sides.
|
| 35 |
+
|
| 36 |
+
Medium
|
| 37 |
+
The video starts with showing a woman. The video then jumpcuts to the same woman having sex with a black man in a missionary position. The camera shot type is a wide shot from a side-angle, and the camera is static. The man's head is clearly in the frame, and he is leaning down to kiss the woman while he thrusts. The man has his hands planted on the bed to support himself as he moves. The woman has her legs wrapped around the man's waist, with her feet pointed toward upwards. She is facing to the side looking at the camera. Her hands are resting on the man's upper arms/shoulders as they interact.
|
| 38 |
+
|
| 39 |
+
|
| 40 |
+
Wide
|
| 41 |
+
The video starts with a shot of a woman. The video then zoom transitions to the same woman having sex with a man in a missionary position. The camera transitions to a wide-angle, static shot from a side-profile angle. The dark-skinned man is positioned over the woman with his head out of frame. The woman lies on her back, with her head turned facing the camera she is looking directly at the camera. The man's penis is in her vagina. her hands lay at her sides.
|
| 42 |
+
|
| 43 |
+
|
| 44 |
+
|
| 45 |
+
## Download model
|
| 46 |
+
|
| 47 |
+
|
| 48 |
+
[Download](/profpeng/blinksidemission/tree/main) them in the Files & versions tab.
|