banner_image ×
SeaArt AI Entreprise

# Import necessary libraries from stable_diffusion import StableDiffusionPipelin

# Import necessary libraries
from stable_diffusion import StableDiffusionPipeline
import torch
from PIL import Image

# Load the Stable Diffusion model
pipe = StableDiffusionPipeline.from_pretrained("stable-diffusion-v1-4")

# Define the prompt
prompt = (
    "Elegant scene in a Spanish office: A woman in a white oversized men's shirt, barely covering her hips, with one shoulder exposed. "
    "Her hair is braided into a single braid, with a Bitcoin-shaped hairpin. She is barefoot, relaxed, with a slightly worn appearance, "
    "playing bowling with a bowling ball featuring a Bitcoin symbol. Her eyes are blue, her nose is large, and her lips are narrow. "
    "Her nipples are visible through the shirt. On the table, there is spilled milk, and some milk is left on her lips. "
    "The scene combines elements of Vatican secretaries with a relaxed, sensual atmosphere in a bowling setting."
)

# Configuration settings
clip_guidance_scale = 18  # Strength of adherence to the description
hr_scale = 2.5  # High resolution for detailed output
hr_upscaler = "R-ESRGAN"  # High-quality upscaling method
latent_shift = torch.randn(1, 4, 64, 64) * 0.01  # Slight adjustments to the latent space for natural variations
prompt_weighting = (
    "Woman in oversized shirt::2.0 | Bitcoin hairpin::1.8 | Relaxed atmosphere::1.7 | Bowling with Bitcoin symbol::1.8 | "
    "Blue eyes, large nose, narrow lips::1.6 | Spilled milk::1.5"
)  # Emphasizing key elements of the scene
cross_attention_strength = 1.0  # Strong focus on the main elements of the scene
symmetry = "none"  # No symmetry for a natural composition
symmetry_loss_weight = 0.1  # Minimal influence of symmetry
color_match_strength = 0.85  # Harmonious color blending
perlin_noise_scale = 0.03  # Low noise level for smooth textures
fractal_noise = False  # Disable fractal noise
depth_map = None  # No depth map
parallax_effect = False  # No parallax effect

# Generate the image
image = pipe(
    prompt=prompt_weighting,
    clip_gu
chatIcon
Aujourd'hui, j'ai du contenu spécial, réservé pour vous.
Créer un Compagnon AI
image

# Import necessary libraries from stable_diffusion import StableDiffusionPipeline import torch from PIL import Image # Load the Stable Diffusion model pipe = StableDiffusionPipeline.from_pretrained("stable-diffusion-v1-4") # Define the prompt prompt = ( "Elegant scene in a Spanish office: A woman in a white oversized men's shirt, barely covering her hips, with one shoulder exposed. " "Her hair is braided into a single braid, with a Bitcoin-shaped hairpin. She is barefoot, relaxed, with a slightly worn appearance, " "playing bowling with a bowling ball featuring a Bitcoin symbol. Her eyes are blue, her nose is large, and her lips are narrow. " "Her nipples are visible through the shirt. On the table, there is spilled milk, and some milk is left on her lips. " "The scene combines elements of Vatican secretaries with a relaxed, sensual atmosphere in a bowling setting." ) # Configuration settings clip_guidance_scale = 18 # Strength of adherence to the description hr_scale = 2.5 # High resolution for detailed output hr_upscaler = "R-ESRGAN" # High-quality upscaling method latent_shift = torch.randn(1, 4, 64, 64) * 0.01 # Slight adjustments to the latent space for natural variations prompt_weighting = ( "Woman in oversized shirt::2.0 | Bitcoin hairpin::1.8 | Relaxed atmosphere::1.7 | Bowling with Bitcoin symbol::1.8 | " "Blue eyes, large nose, narrow lips::1.6 | Spilled milk::1.5" ) # Emphasizing key elements of the scene cross_attention_strength = 1.0 # Strong focus on the main elements of the scene symmetry = "none" # No symmetry for a natural composition symmetry_loss_weight = 0.1 # Minimal influence of symmetry color_match_strength = 0.85 # Harmonious color blending perlin_noise_scale = 0.03 # Low noise level for smooth textures fractal_noise = False # Disable fractal noise depth_map = None # No depth map parallax_effect = False # No parallax effect # Generate the image image = pipe( prompt=prompt_weighting, clip_gu

avatar
H
HelgaBlue
Generation Data
Enregistrements
Prompts
Copier les Paramètres
# Import necessary libraries from stable_diffusion import StableDiffusionPipeline import torch from PIL import Image # Load the Stable Diffusion model pipe = StableDiffusionPipeline . from_pretrained("stable-diffusion-v1-4") # Define the prompt prompt = ( "Elegant scene in a Spanish office: A woman in a white oversized men's shirt , barely covering her hips , with one shoulder exposed . " "Her hair is braided into a single braid , with a Bitcoin-shaped hairpin . She is barefoot , relaxed , with a slightly worn appearance , " "playing bowling with a bowling ball featuring a Bitcoin symbol . Her eyes are blue , her nose is large , and her lips are narrow . " "Her nipples are visible through the shirt . On the table , there is spilled milk , and some milk is left on her lips . " "The scene combines elements of Vatican secretaries with a relaxed , sensual atmosphere in a bowling setting . " ) # Configuration settings clip_guidance_scale = 18 # Strength of adherence to the description hr_scale = 2 . 5 # High resolution for detailed output hr_upscaler = "R-ESRGAN" # High-quality upscaling method latent_shift = torch . randn(1 , 4 , 64 , 64) * 0 . 01 # Slight adjustments to the latent space for natural variations prompt_weighting = ( "Woman in oversized shirt::2 . 0 | Bitcoin hairpin::1 . 8 | Relaxed atmosphere::1 . 7 | Bowling with Bitcoin symbol::1 . 8 | " "Blue eyes , large nose , narrow lips::1 . 6 | Spilled milk::1 . 5" ) # Emphasizing key elements of the scene cross_attention_strength = 1 . 0 # Strong focus on the main elements of the scene symmetry = "none" # No symmetry for a natural composition symmetry_loss_weight = 0 . 1 # Minimal influence of symmetry color_match_strength = 0 . 85 # Harmonious color blending perlin_noise_scale = 0 . 03 # Low noise level for smooth textures fractal_noise = False # Disable fractal noise depth_map = None # No depth map parallax_effect = False # No parallax effect # Generate the image image = pipe( prompt=prompt_weighting , clip_gu
Info
Prompts
# Import necessary libraries from stable_diffusion import StableDiffusionPipeline import torch from PIL import Image # Load the Stable Diffusion model pipe = StableDiffusionPipeline.from_pretrained("stable-diffusion-v1-4") # Define the prompt prompt = ( "Elegant scene in a Spanish office: A woman in a white oversized men's shirt, barely covering her hips, with one shoulder exposed. " "Her hair is braided into a single braid, with a Bitcoin-shaped hairpin. She is barefoot, relaxed, with a slightly worn appearance, " "playing bowling with a bowling ball featuring a Bitcoin symbol. Her eyes are blue, her nose is large, and her lips are narrow. " "Her nipples are visible through the shirt. On the table, there is spilled milk, and some milk is left on her lips. " "The scene combines elements of Vatican secretaries with a relaxed, sensual atmosphere in a bowling setting." ) # Configuration settings clip_guidance_scale = 18 # Strength of adherence to the description hr_scale = 2.5 # High resolution for detailed output hr_upscaler = "R-ESRGAN" # High-quality upscaling method latent_shift = torch.randn(1, 4, 64, 64) * 0.01 # Slight adjustments to the latent space for natural variations prompt_weighting = ( "Woman in oversized shirt::2.0 | Bitcoin hairpin::1.8 | Relaxed atmosphere::1.7 | Bowling with Bitcoin symbol::1.8 | " "Blue eyes, large nose, narrow lips::1.6 | Spilled milk::1.5" ) # Emphasizing key elements of the scene cross_attention_strength = 1.0 # Strong focus on the main elements of the scene symmetry = "none" # No symmetry for a natural composition symmetry_loss_weight = 0.1 # Minimal influence of symmetry color_match_strength = 0.85 # Harmonious color blending perlin_noise_scale = 0.03 # Low noise level for smooth textures fractal_noise = False # Disable fractal noise depth_map = None # No depth map parallax_effect = False # No parallax effect # Generate the image image = pipe( prompt=prompt_weighting, clip_gu
Échelle CFG
7
Étapes
25
Échantillonneur
euler
Graine Aléatoire
467672603
Planificateur
karras
Dimension de l'Image
688 X 1024
Modèle
SeaArt Infinity
Créer
Taille
688X1024
Date
Aug 24, 2024
Mode
Studio
Type
cell
Checkpoint & LoRA
SeaArt Infinity
Checkpoint
SeaArt Infinity
#Réaliste
#Femme
#SeaArt Infinity
0 commentaire(s)
0
0
0

Apps AI Rapides de SeaArt

ai_video_generationimg
Génération de Vidéos AI

Libérez votre imagination, l'AI crée des miracles visuels pour vous.

face_swap_titleimg
Échangez le visage gratuitement en ligne

Créez des vidéos et des photos hilarantes & réalistes en échangeant le visage rapidement

gender_swapimg
Changement de Genre

Changez de genre dans vos photos et vidéos avec l'outil de changement de genre AI de SeaArt. Profitez de transformations amusantes et réalistes sans effort, gratuitement en ligne !

anime2realityimg
Anime vers Réalité

Donnez vie instantanément à vos personnages d'anime préférés.

ghibli_filter_h1img
Filtre Ghibli

Transformez n'importe quelle photo en art de style Ghibli unique en un seul clic.

kiss_vidimg
Générateur de Vidéos de Baiser AI

Transformez des photos en vidéos de baiser réalistes en quelques secondes.

Explorer plus d'applications AI 

Suggestions

ControlNet
avatar
H
HelgaBlue
0
1
ControlNet
avatar
J
Jentix
2
2
ControlNet
avatar
H
HelgaBlue
0
1
ControlNet
avatar
H
HelgaBlue
0
0
ControlNet
avatar
J
Jentix
2
1
ControlNet
avatar
C
ch asad abbas guru
1
0
ControlNet
avatar
3
3KBIGBOSS
0
0
ControlNet
avatar
C
Ciki Warlas
0
0
ControlNet
avatar
J
Jaya Abadi
1
1
ControlNet
avatar
H
HelgaBlue
0
0
ControlNet
avatar
J
Junior
1
3
ControlNet
avatar
S
soner oğuztürk
0
0
ControlNet
avatar
S
suresh poudel
0
0
ControlNet
avatar
D
Dimas Santoso
0
0
ControlNet
avatar
T
Toshi
0
0
ControlNet
avatar
S
shu
0
0
ControlNet
avatar
I
Infinite Indigo
0
0
ControlNet
avatar
L
Leidy Ramos
0
0
ControlNet
avatar
R
avatar_frame
reva azuna
0
0
ControlNet
avatar
B
Batu İnce
1
1
ControlNet
avatar
P
Pat
2
1
ControlNet
avatar
M
Melih
0
0
ControlNet
avatar
D
Daniele Delfino
0
1
ControlNet
avatar
D
Designer48924
0
0
ControlNet
avatar
R
Rara Wijaya
1
1
ControlNet
avatar
B
BobNoName
0
0
ControlNet
avatar
H
Henrique Gustavo
0
0
ControlNet
avatar
L
lllocoGa
0
0
ControlNet
avatar
N
Nawan501
0
0
ControlNet
avatar
I
Indra gusman
0
1
ControlNet
avatar
M
mia taylor
0
0
ControlNet
avatar
F
avatar_frame
Filthy Old Man
7
3
ControlNet
avatar
A
Angelo Will
0
0
ControlNet
logo
Français
Applications
Générer l'image Compagnons AI IA Swift Entraînement de modèle Canvas Outil Rapide Flux de Travail
À propos de lui/elle
Studio Classement AI Chat Blog AI Actualités AI
Aide
Tutoriel Service clientèle
Obtenir l'Application
icon
Download on the
APP Store
icon
GET IT ON
Google Play
Suivez-Nous
iconiconiconiconiconiconicon
© 2025 SeaArt, Inc.
Copyright Policy
Conditions d'utilisation
Politique de confidentialité 特定商取引法 資金決済法に基づく表示
Plus