banner_image ×
SeaArt AI บริษัท

From stable_diffusion import StableDiffusionPipeline import torch from PIL impor

from stable_diffusion import StableDiffusionPipeline
import torch
from PIL import Image

# Load the Stable Diffusion model
pipe = StableDiffusionPipeline.from_pretrained("stable-diffusion-v1-4")
pipe = pipe.to("cuda")  # Use GPU if available

# Define the detailed open-world action-RPG prompt
prompts = {
    "open_world_action_rpg_scene": (
        "A dynamic and immersive scene from an open-world action RPG, where a powerful, majestic whale character, adorned with a glowing Bitcoin chain, "
        "glides through a vast, open oceanic world. The environment is rich with detail, featuring towering underwater ruins, vibrant coral reefs, and schools of fish. "
        "The whale, a legendary creature in the game, is a key quest figure, and it is depicted as both a guide and a formidable ally. "
        "Nearby, the protagonist, a skilled and agile warrior in customized, ocean-themed armor, swims with purpose, equipped with a trident and various gear for underwater exploration. "
        "The protagonist is ready for action, eyes fixed on a distant objective, while the whale emits a soft, ethereal glow, highlighting its importance. "
        "The open world is teeming with life, from bioluminescent creatures to hidden treasures scattered across the seabed, inviting players to explore every nook and cranny. "
        "The overall scene is a blend of action, exploration, and the thrill of discovery, capturing the essence of an open-world RPG where players forge their own path through a richly detailed environment."
    )
}

# Generate the image for the prompt
for name, prompt in prompts.items():
    # Generate the image using the prompt
    image = pipe(prompt).images[0]
    
    # Save the generated image
    filename = f"{name.lower().replace(' ', '_')}.png"
    image.save(filename)
    print(f"Saved image: {filename}")

    # Optionally, show the generated image
    image.show()
chatIcon
บางเรื่องเรารู้กันแค่สองคน
สร้างตัวละคร AI
image

from stable_diffusion import StableDiffusionPipeline import torch from PIL import Image # Load the Stable Diffusion model pipe = StableDiffusionPipeline.from_pretrained("stable-diffusion-v1-4") pipe = pipe.to("cuda") # Use GPU if available # Define the detailed open-world action-RPG prompt prompts = { "open_world_action_rpg_scene": ( "A dynamic and immersive scene from an open-world action RPG, where a powerful, majestic whale character, adorned with a glowing Bitcoin chain, " "glides through a vast, open oceanic world. The environment is rich with detail, featuring towering underwater ruins, vibrant coral reefs, and schools of fish. " "The whale, a legendary creature in the game, is a key quest figure, and it is depicted as both a guide and a formidable ally. " "Nearby, the protagonist, a skilled and agile warrior in customized, ocean-themed armor, swims with purpose, equipped with a trident and various gear for underwater exploration. " "The protagonist is ready for action, eyes fixed on a distant objective, while the whale emits a soft, ethereal glow, highlighting its importance. " "The open world is teeming with life, from bioluminescent creatures to hidden treasures scattered across the seabed, inviting players to explore every nook and cranny. " "The overall scene is a blend of action, exploration, and the thrill of discovery, capturing the essence of an open-world RPG where players forge their own path through a richly detailed environment." ) } # Generate the image for the prompt for name, prompt in prompts.items(): # Generate the image using the prompt image = pipe(prompt).images[0] # Save the generated image filename = f"{name.lower().replace(' ', '_')}.png" image.save(filename) print(f"Saved image: {filename}") # Optionally, show the generated image image.show()

avatar
H
HelgaBlue
Generation Data
บันทึก
คำพรอมต์
คัดลอกคำพรอมต์
from stable_diffusion import StableDiffusionPipeline import torch from PIL import Image # Load the Stable Diffusion model pipe = StableDiffusionPipeline . from_pretrained("stable-diffusion-v1-4") pipe = pipe . to("cuda") # Use GPU if available # Define the detailed open-world action-RPG prompt prompts = { "open_world_action_rpg_scene": ( "A dynamic and immersive scene from an open-world action RPG , where a powerful , majestic whale character , adorned with a glowing Bitcoin chain , " "glides through a vast , open oceanic world . The environment is rich with detail , featuring towering underwater ruins , vibrant coral reefs , and schools of fish . " "The whale , a legendary creature in the game , is a key quest figure , and it is depicted as both a guide and a formidable ally . " "Nearby , the protagonist , a skilled and agile warrior in customized , ocean-themed armor , swims with purpose , equipped with a trident and various gear for underwater exploration . " "The protagonist is ready for action , eyes fixed on a distant objective , while the whale emits a soft , ethereal glow , highlighting its importance . " "The open world is teeming with life , from bioluminescent creatures to hidden treasures scattered across the seabed , inviting players to explore every nook and cranny . " "The overall scene is a blend of action , exploration , and the thrill of discovery , capturing the essence of an open-world RPG where players forge their own path through a richly detailed environment . " ) } # Generate the image for the prompt for name , prompt in prompts . items(): # Generate the image using the prompt image = pipe(prompt) . images[0] # Save the generated image filename = f"{name . lower() . replace(' ' , '_')} . png" image . save(filename) print(f"Saved image: {filename}") # Optionally , show the generated image image . show()
ข้อมูล
คำพรอมต์
from stable_diffusion import StableDiffusionPipeline import torch from PIL import Image # Load the Stable Diffusion model pipe = StableDiffusionPipeline.from_pretrained("stable-diffusion-v1-4") pipe = pipe.to("cuda") # Use GPU if available # Define the detailed open-world action-RPG prompt prompts = { "open_world_action_rpg_scene": ( "A dynamic and immersive scene from an open-world action RPG, where a powerful, majestic whale character, adorned with a glowing Bitcoin chain, " "glides through a vast, open oceanic world. The environment is rich with detail, featuring towering underwater ruins, vibrant coral reefs, and schools of fish. " "The whale, a legendary creature in the game, is a key quest figure, and it is depicted as both a guide and a formidable ally. " "Nearby, the protagonist, a skilled and agile warrior in customized, ocean-themed armor, swims with purpose, equipped with a trident and various gear for underwater exploration. " "The protagonist is ready for action, eyes fixed on a distant objective, while the whale emits a soft, ethereal glow, highlighting its importance. " "The open world is teeming with life, from bioluminescent creatures to hidden treasures scattered across the seabed, inviting players to explore every nook and cranny. " "The overall scene is a blend of action, exploration, and the thrill of discovery, capturing the essence of an open-world RPG where players forge their own path through a richly detailed environment." ) } # Generate the image for the prompt for name, prompt in prompts.items(): # Generate the image using the prompt image = pipe(prompt).images[0] # Save the generated image filename = f"{name.lower().replace(' ', '_')}.png" image.save(filename) print(f"Saved image: {filename}") # Optionally, show the generated image image.show()
สเกล CFG
7
ขั้นตอน
25
เครื่องเก็บข้อมูล
euler
เมล็ด
2098476482
ตัวจัดตารางเวลา
karras
ขนาดรูปภาพ
688 X 1024
โมเดล
SeaArt Infinity
สร้าง
ขนาด
688X1024
วันที่
Aug 31, 2024
โหมด
สตูดิโอ
ประเภท
cell
Checkpoint & LoRA
SeaArt Infinity
Checkpoint
SeaArt Infinity
#สัตว์
#SeaArt Infinity
0 ความคิดเห็น
0
2
0

แอป SeaArt Swift AI

ai_video_generationimg
การสร้างวิดีโอด้วย AI

ปลดปล่อยจินตนาการของคุณและให้ AI สร้างสรรค์สิ่งมหัศจรรย์ทางภาพให้คุณ

face_swap_titleimg
เปลี่ยนใบหน้าออนไลน์ฟรี

สร้างวิดีโอและภาพถ่ายเปลี่ยนใบหน้าที่สนุกและสมจริงอย่างรวดเร็ว

ai_eraserimg
ยางลบ AI

ลบวัตถุที่ไม่ต้องการ ลายน้ำ หรือบุคคลออกจากภาพถ่ายของคุณได้อย่างง่ายดาย

DisneyFilter_top_titleimg
ฟิลเตอร์ดิสนีย์

เปลี่ยนภาพถ่ายของคุณให้เป็นตัวละครดิสนีย์ได้ทันที

ghibli_filter_h1img
ฟิลเตอร์สตูดิโอ Ghibli

เปลี่ยนรูปภาพใดๆ ให้เป็นงานศิลปะสไตล์ Ghibli ที่ไม่เหมือนใครได้ในคลิกเดียว

fuse_anyoneimg
การหลอมรวมภาพด้วย AI

รวมภาพสองภาพเข้าด้วยกันเป็นภาพใหม่ที่น่าทึ่งด้วย AI Image Fusion

สำรวจแอป AI อื่นๆ เพิ่มเติม 

การแนะนำที่เกี่ยวข้อง

เครือข่ายควบคุม
avatar
H
HelgaBlue
0
0
เครือข่ายควบคุม
avatar
H
HelgaBlue
0
0
เครือข่ายควบคุม
avatar
R
Raziel Quintana
0
0
เครือข่ายควบคุม
avatar
A
Asrar
0
0
เครือข่ายควบคุม
avatar
G
glauber azarias
0
1
เครือข่ายควบคุม
avatar
D
Designer84527
0
0
เครือข่ายควบคุม
avatar
A
Amaury Reyes
0
0
เครือข่ายควบคุม
avatar
G
Garry Gurke
1
1
เครือข่ายควบคุม
avatar
A
alex schipor
1
1
เครือข่ายควบคุม
avatar
M
Muhammad Reza Ala
1
1
เครือข่ายควบคุม
avatar
N
NotAdri.
1
1
เครือข่ายควบคุม
avatar
Y
Yarely Romero
0
0
เครือข่ายควบคุม
avatar
H
HIRO SHI
0
0
เครือข่ายควบคุม
avatar
W
avatar_frame
WoodEngine
0
0
เครือข่ายควบคุม
avatar
D
Designer77552
1
1
เครือข่ายควบคุม
avatar
B
Benjamin Verryt
0
0
เครือข่ายควบคุม
avatar
A
AntoineSaint-Exupéry
1
1
เครือข่ายควบคุม
avatar
G
Giselle Carvalho
0
0
เครือข่ายควบคุม
avatar
C
CyB0R
0
0
เครือข่ายควบคุม
avatar
B
Bena Millionaire
0
0
เครือข่ายควบคุม
avatar
E
ericheisner650
0
0
เครือข่ายควบคุม
avatar
小
小熊🐼先生
0
0
เครือข่ายควบคุม
avatar
R
Rafael Fraile Labarce
0
0
เครือข่ายควบคุม
avatar
T
ty09
0
5
เครือข่ายควบคุม
avatar
B
Bena Millionaire
0
0
เครือข่ายควบคุม
avatar
G
Gerson Pereira
0
1
เครือข่ายควบคุม
avatar
Н
Никита Сачко
1
1
เครือข่ายควบคุม
avatar
H
Henry kenenzi
0
0
เครือข่ายควบคุม
avatar
L
avatar_frame
LauFlowers
0
1
เครือข่ายควบคุม
avatar
M
mariana morales saucedo
0
1
เครือข่ายควบคุม
avatar
V
Văn Hòa Vy
0
0
เครือข่ายควบคุม
avatar
B
bá nguyễn
0
0
เครือข่ายควบคุม
avatar
M
Mindy Waln
0
0
เครือข่ายควบคุม
logo
ไทย
แอปพลิเคชัน
สร้างภาพ ตัวละคร AI Swift AI การฝึกโมเดล Canvas แอปพลิเคชันเร็ว กระบวนการทำงาน
สร้างเมื่อ {time}
สตูดิโอ ตารางคะแนน AI แชท AI บล็อก AI ข่าว
ช่วยเหลือ
คู่มือ บริการลูกค้า
รับแอปพลิเคชัน
icon
Download on the
APP Store
icon
GET IT ON
Google Play
ติดตามเรา
iconiconiconiconiconiconicon
© 2025 SeaArt, Inc.
Copyright Policy
"ข้อกำหนด"
"นโยบายความเป็นส่วนตัว" 特定商取引法 資金決済法に基づく表示
เพิ่มเติม