aliadhami / 3d-sheet
Generates minimal, consistent 3-view design for objects in the style of technical 3D reference sheets. Outputs include front, back, and side views with consistent proportions against a white background.
- Public
- 180 runs
-
H100
Prediction
aliadhami/3d-sheet:7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891Input
- model
- dev
- width
- 1440
- height
- 593
- prompt
- In the style of 3dsheet, three consistent views of the same Jesus sculpture with weathered bronze finish and outstretched arms. Front view shows the figure facing forward with detailed facial features, flowing robes, and arms extended in a welcoming gesture. Back view displays the sculpture from behind with visible draping of the robe, detailed hair flowing down the neck, and the natural stance of the feet. Side view presents the complete profile with the full silhouette, subtle forward lean, facial profile with beard detail, and the dimensional folds of the garment. All three views maintain consistent proportions, patina, and sculptural details of this single devotional piece against a white background.
- go_fast
- lora_scale
- 0.7
- megapixels
- 1
- num_outputs
- 4
- aspect_ratio
- custom
- output_format
- webp
- guidance_scale
- 3
- output_quality
- 80
- prompt_strength
- 0.79
- extra_lora_scale
- 2.63
- num_inference_steps
- 28
{ "model": "dev", "width": 1440, "height": 593, "prompt": "In the style of 3dsheet, three consistent views of the same Jesus sculpture with weathered bronze finish and outstretched arms. Front view shows the figure facing forward with detailed facial features, flowing robes, and arms extended in a welcoming gesture. Back view displays the sculpture from behind with visible draping of the robe, detailed hair flowing down the neck, and the natural stance of the feet. Side view presents the complete profile with the full silhouette, subtle forward lean, facial profile with beard detail, and the dimensional folds of the garment. All three views maintain consistent proportions, patina, and sculptural details of this single devotional piece against a white background.", "go_fast": false, "lora_scale": 0.7, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "custom", "output_format": "webp", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.79, "extra_lora_scale": 2.63, "num_inference_steps": 28 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; import fs from "node:fs"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run aliadhami/3d-sheet using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "aliadhami/3d-sheet:7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891", { input: { model: "dev", width: 1440, height: 593, prompt: "In the style of 3dsheet, three consistent views of the same Jesus sculpture with weathered bronze finish and outstretched arms. Front view shows the figure facing forward with detailed facial features, flowing robes, and arms extended in a welcoming gesture. Back view displays the sculpture from behind with visible draping of the robe, detailed hair flowing down the neck, and the natural stance of the feet. Side view presents the complete profile with the full silhouette, subtle forward lean, facial profile with beard detail, and the dimensional folds of the garment. All three views maintain consistent proportions, patina, and sculptural details of this single devotional piece against a white background.", go_fast: false, lora_scale: 0.7, megapixels: "1", num_outputs: 4, aspect_ratio: "custom", output_format: "webp", guidance_scale: 3, output_quality: 80, prompt_strength: 0.79, extra_lora_scale: 2.63, num_inference_steps: 28 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run aliadhami/3d-sheet using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "aliadhami/3d-sheet:7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891", input={ "model": "dev", "width": 1440, "height": 593, "prompt": "In the style of 3dsheet, three consistent views of the same Jesus sculpture with weathered bronze finish and outstretched arms. Front view shows the figure facing forward with detailed facial features, flowing robes, and arms extended in a welcoming gesture. Back view displays the sculpture from behind with visible draping of the robe, detailed hair flowing down the neck, and the natural stance of the feet. Side view presents the complete profile with the full silhouette, subtle forward lean, facial profile with beard detail, and the dimensional folds of the garment. All three views maintain consistent proportions, patina, and sculptural details of this single devotional piece against a white background.", "go_fast": False, "lora_scale": 0.7, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "custom", "output_format": "webp", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.79, "extra_lora_scale": 2.63, "num_inference_steps": 28 } ) # To access the file URL: print(output[0].url()) #=> "http://example.com" # To write the file to disk: with open("my-image.png", "wb") as file: file.write(output[0].read())
To learn more, take a look at the guide on getting started with Python.
Run aliadhami/3d-sheet using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "aliadhami/3d-sheet:7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891", "input": { "model": "dev", "width": 1440, "height": 593, "prompt": "In the style of 3dsheet, three consistent views of the same Jesus sculpture with weathered bronze finish and outstretched arms. Front view shows the figure facing forward with detailed facial features, flowing robes, and arms extended in a welcoming gesture. Back view displays the sculpture from behind with visible draping of the robe, detailed hair flowing down the neck, and the natural stance of the feet. Side view presents the complete profile with the full silhouette, subtle forward lean, facial profile with beard detail, and the dimensional folds of the garment. All three views maintain consistent proportions, patina, and sculptural details of this single devotional piece against a white background.", "go_fast": false, "lora_scale": 0.7, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "custom", "output_format": "webp", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.79, "extra_lora_scale": 2.63, "num_inference_steps": 28 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2025-03-27T17:31:33.250314Z", "created_at": "2025-03-27T17:31:03.665000Z", "data_removed": false, "error": null, "id": "qdpkzhtee5rme0cnv2m8wtn1e4", "input": { "model": "dev", "width": 1440, "height": 593, "prompt": "In the style of 3dsheet, three consistent views of the same Jesus sculpture with weathered bronze finish and outstretched arms. Front view shows the figure facing forward with detailed facial features, flowing robes, and arms extended in a welcoming gesture. Back view displays the sculpture from behind with visible draping of the robe, detailed hair flowing down the neck, and the natural stance of the feet. Side view presents the complete profile with the full silhouette, subtle forward lean, facial profile with beard detail, and the dimensional folds of the garment. All three views maintain consistent proportions, patina, and sculptural details of this single devotional piece against a white background.", "go_fast": false, "lora_scale": 0.7, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "custom", "output_format": "webp", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.79, "extra_lora_scale": 2.63, "num_inference_steps": 28 }, "logs": "free=26492481982464\nDownloading weights\n2025-03-27T17:31:03Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmpsi19t9g2/weights url=https://replicate.delivery/xezq/QWlzmT0VcMKWD5UGNYHTDjBuxHJixAIS1NvWaxWoIXSyfYOKA/trained_model.tar\n2025-03-27T17:31:07Z | INFO | [ Complete ] dest=/tmp/tmpsi19t9g2/weights size=\"172 MB\" total_elapsed=3.448s url=https://replicate.delivery/xezq/QWlzmT0VcMKWD5UGNYHTDjBuxHJixAIS1NvWaxWoIXSyfYOKA/trained_model.tar\nDownloaded weights in 3.47s\nLoaded LoRAs in 4.03s\nUsing seed: 35660\nPrompt: In the style of 3dsheet, three consistent views of the same Jesus sculpture with weathered bronze finish and outstretched arms. Front view shows the figure facing forward with detailed facial features, flowing robes, and arms extended in a welcoming gesture. Back view displays the sculpture from behind with visible draping of the robe, detailed hair flowing down the neck, and the natural stance of the feet. Side view presents the complete profile with the full silhouette, subtle forward lean, facial profile with beard detail, and the dimensional folds of the garment. All three views maintain consistent proportions, patina, and sculptural details of this single devotional piece against a white background.\n[!] txt2img mode\n 0%| | 0/28 [00:00<?, ?it/s]\n 4%|▎ | 1/28 [00:00<00:21, 1.23it/s]\n 7%|▋ | 2/28 [00:01<00:19, 1.37it/s]\n 11%|█ | 3/28 [00:02<00:19, 1.30it/s]\n 14%|█▍ | 4/28 [00:03<00:18, 1.27it/s]\n 18%|█▊ | 5/28 [00:03<00:18, 1.25it/s]\n 21%|██▏ | 6/28 [00:04<00:17, 1.24it/s]\n 25%|██▌ | 7/28 [00:05<00:16, 1.24it/s]\n 29%|██▊ | 8/28 [00:06<00:16, 1.23it/s]\n 32%|███▏ | 9/28 [00:07<00:15, 1.23it/s]\n 36%|███▌ | 10/28 [00:08<00:14, 1.23it/s]\n 39%|███▉ | 11/28 [00:08<00:13, 1.23it/s]\n 43%|████▎ | 12/28 [00:09<00:13, 1.23it/s]\n 46%|████▋ | 13/28 [00:10<00:12, 1.23it/s]\n 50%|█████ | 14/28 [00:11<00:11, 1.23it/s]\n 54%|█████▎ | 15/28 [00:12<00:10, 1.23it/s]\n 57%|█████▋ | 16/28 [00:12<00:09, 1.22it/s]\n 61%|██████ | 17/28 [00:13<00:08, 1.22it/s]\n 64%|██████▍ | 18/28 [00:14<00:08, 1.22it/s]\n 68%|██████▊ | 19/28 [00:15<00:07, 1.22it/s]\n 71%|███████▏ | 20/28 [00:16<00:06, 1.22it/s]\n 75%|███████▌ | 21/28 [00:17<00:05, 1.22it/s]\n 79%|███████▊ | 22/28 [00:17<00:04, 1.22it/s]\n 82%|████████▏ | 23/28 [00:18<00:04, 1.22it/s]\n 86%|████████▌ | 24/28 [00:19<00:03, 1.22it/s]\n 89%|████████▉ | 25/28 [00:20<00:02, 1.22it/s]\n 93%|█████████▎| 26/28 [00:21<00:01, 1.23it/s]\n 96%|█████████▋| 27/28 [00:21<00:00, 1.23it/s]\n100%|██████████| 28/28 [00:22<00:00, 1.23it/s]\n100%|██████████| 28/28 [00:22<00:00, 1.23it/s]\nTotal safe images: 4 out of 4", "metrics": { "predict_time": 29.54549277, "total_time": 29.585314 }, "output": [ "https://replicate.delivery/xezq/vRnKvfZyIjzXTqlgbYxOUwF1LhBp6Gf8V3h9xx5fnZiqrn5oA/out-0.webp", "https://replicate.delivery/xezq/xcMqeR0myIWvJSdEHYDkVkKVVnMFTDOOT0Cxxuu5GXm66ZOKA/out-1.webp", "https://replicate.delivery/xezq/xd0iJrShIP7eaag7eMoeWuL4SYqPmFSirYuMWESNUXsqrn5oA/out-2.webp", "https://replicate.delivery/xezq/X5Y1XbfSKBXmGS6nlYfgoAZn0ANEAhybinrFDQthfzmqrn5oA/out-3.webp" ], "started_at": "2025-03-27T17:31:03.704821Z", "status": "succeeded", "urls": { "stream": "https://stream.replicate.com/v1/files/bcwr-6vqukngzrfmncuoie7yfzb3bruwt4ikdhhfxap5hboynz3wgx4ta", "get": "https://api.replicate.com/v1/predictions/qdpkzhtee5rme0cnv2m8wtn1e4", "cancel": "https://api.replicate.com/v1/predictions/qdpkzhtee5rme0cnv2m8wtn1e4/cancel" }, "version": "7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891" }
Generated infree=26492481982464 Downloading weights 2025-03-27T17:31:03Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmpsi19t9g2/weights url=https://replicate.delivery/xezq/QWlzmT0VcMKWD5UGNYHTDjBuxHJixAIS1NvWaxWoIXSyfYOKA/trained_model.tar 2025-03-27T17:31:07Z | INFO | [ Complete ] dest=/tmp/tmpsi19t9g2/weights size="172 MB" total_elapsed=3.448s url=https://replicate.delivery/xezq/QWlzmT0VcMKWD5UGNYHTDjBuxHJixAIS1NvWaxWoIXSyfYOKA/trained_model.tar Downloaded weights in 3.47s Loaded LoRAs in 4.03s Using seed: 35660 Prompt: In the style of 3dsheet, three consistent views of the same Jesus sculpture with weathered bronze finish and outstretched arms. Front view shows the figure facing forward with detailed facial features, flowing robes, and arms extended in a welcoming gesture. Back view displays the sculpture from behind with visible draping of the robe, detailed hair flowing down the neck, and the natural stance of the feet. Side view presents the complete profile with the full silhouette, subtle forward lean, facial profile with beard detail, and the dimensional folds of the garment. All three views maintain consistent proportions, patina, and sculptural details of this single devotional piece against a white background. [!] txt2img mode 0%| | 0/28 [00:00<?, ?it/s] 4%|▎ | 1/28 [00:00<00:21, 1.23it/s] 7%|▋ | 2/28 [00:01<00:19, 1.37it/s] 11%|█ | 3/28 [00:02<00:19, 1.30it/s] 14%|█▍ | 4/28 [00:03<00:18, 1.27it/s] 18%|█▊ | 5/28 [00:03<00:18, 1.25it/s] 21%|██▏ | 6/28 [00:04<00:17, 1.24it/s] 25%|██▌ | 7/28 [00:05<00:16, 1.24it/s] 29%|██▊ | 8/28 [00:06<00:16, 1.23it/s] 32%|███▏ | 9/28 [00:07<00:15, 1.23it/s] 36%|███▌ | 10/28 [00:08<00:14, 1.23it/s] 39%|███▉ | 11/28 [00:08<00:13, 1.23it/s] 43%|████▎ | 12/28 [00:09<00:13, 1.23it/s] 46%|████▋ | 13/28 [00:10<00:12, 1.23it/s] 50%|█████ | 14/28 [00:11<00:11, 1.23it/s] 54%|█████▎ | 15/28 [00:12<00:10, 1.23it/s] 57%|█████▋ | 16/28 [00:12<00:09, 1.22it/s] 61%|██████ | 17/28 [00:13<00:08, 1.22it/s] 64%|██████▍ | 18/28 [00:14<00:08, 1.22it/s] 68%|██████▊ | 19/28 [00:15<00:07, 1.22it/s] 71%|███████▏ | 20/28 [00:16<00:06, 1.22it/s] 75%|███████▌ | 21/28 [00:17<00:05, 1.22it/s] 79%|███████▊ | 22/28 [00:17<00:04, 1.22it/s] 82%|████████▏ | 23/28 [00:18<00:04, 1.22it/s] 86%|████████▌ | 24/28 [00:19<00:03, 1.22it/s] 89%|████████▉ | 25/28 [00:20<00:02, 1.22it/s] 93%|█████████▎| 26/28 [00:21<00:01, 1.23it/s] 96%|█████████▋| 27/28 [00:21<00:00, 1.23it/s] 100%|██████████| 28/28 [00:22<00:00, 1.23it/s] 100%|██████████| 28/28 [00:22<00:00, 1.23it/s] Total safe images: 4 out of 4
Prediction
aliadhami/3d-sheet:7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891Input
- model
- dev
- prompt
- In the style of 3dsheet, three consistent views of the same futuristic cargo truck with aerodynamic design and vibrant color-shifting paint that transitions from electric blue to neon purple. Front view shows the truck's sleek cab with panoramic windshield, holographic headlights, and distinctive hexagonal grille pattern with illuminated logo. Back view displays the same truck from behind revealing the modular cargo container with integrated solar panels, wraparound taillights, and retractable loading ramp. Side view presents the complete profile showing the truck's streamlined silhouette, hovering wheel system with exposed turbine elements, driver access door, and the seamless connection between cab and cargo section. All three views maintain consistent color gradient, technological details, and innovative design elements of this single futuristic vehicle against a neutral background.
- go_fast
- lora_scale
- 0.7
- megapixels
- 1
- num_outputs
- 1
- aspect_ratio
- 1:1
- output_format
- webp
- guidance_scale
- 3
- output_quality
- 80
- prompt_strength
- 0.37
- extra_lora_scale
- 2.63
- num_inference_steps
- 18
{ "model": "dev", "prompt": "In the style of 3dsheet, three consistent views of the same futuristic cargo truck with aerodynamic design and vibrant color-shifting paint that transitions from electric blue to neon purple. Front view shows the truck's sleek cab with panoramic windshield, holographic headlights, and distinctive hexagonal grille pattern with illuminated logo. Back view displays the same truck from behind revealing the modular cargo container with integrated solar panels, wraparound taillights, and retractable loading ramp. Side view presents the complete profile showing the truck's streamlined silhouette, hovering wheel system with exposed turbine elements, driver access door, and the seamless connection between cab and cargo section. All three views maintain consistent color gradient, technological details, and innovative design elements of this single futuristic vehicle against a neutral background.", "go_fast": false, "lora_scale": 0.7, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "1:1", "output_format": "webp", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.37, "extra_lora_scale": 2.63, "num_inference_steps": 18 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; import fs from "node:fs"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run aliadhami/3d-sheet using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "aliadhami/3d-sheet:7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891", { input: { model: "dev", prompt: "In the style of 3dsheet, three consistent views of the same futuristic cargo truck with aerodynamic design and vibrant color-shifting paint that transitions from electric blue to neon purple. Front view shows the truck's sleek cab with panoramic windshield, holographic headlights, and distinctive hexagonal grille pattern with illuminated logo. Back view displays the same truck from behind revealing the modular cargo container with integrated solar panels, wraparound taillights, and retractable loading ramp. Side view presents the complete profile showing the truck's streamlined silhouette, hovering wheel system with exposed turbine elements, driver access door, and the seamless connection between cab and cargo section. All three views maintain consistent color gradient, technological details, and innovative design elements of this single futuristic vehicle against a neutral background.", go_fast: false, lora_scale: 0.7, megapixels: "1", num_outputs: 1, aspect_ratio: "1:1", output_format: "webp", guidance_scale: 3, output_quality: 80, prompt_strength: 0.37, extra_lora_scale: 2.63, num_inference_steps: 18 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run aliadhami/3d-sheet using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "aliadhami/3d-sheet:7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891", input={ "model": "dev", "prompt": "In the style of 3dsheet, three consistent views of the same futuristic cargo truck with aerodynamic design and vibrant color-shifting paint that transitions from electric blue to neon purple. Front view shows the truck's sleek cab with panoramic windshield, holographic headlights, and distinctive hexagonal grille pattern with illuminated logo. Back view displays the same truck from behind revealing the modular cargo container with integrated solar panels, wraparound taillights, and retractable loading ramp. Side view presents the complete profile showing the truck's streamlined silhouette, hovering wheel system with exposed turbine elements, driver access door, and the seamless connection between cab and cargo section. All three views maintain consistent color gradient, technological details, and innovative design elements of this single futuristic vehicle against a neutral background.", "go_fast": False, "lora_scale": 0.7, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "1:1", "output_format": "webp", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.37, "extra_lora_scale": 2.63, "num_inference_steps": 18 } ) # To access the file URL: print(output[0].url()) #=> "http://example.com" # To write the file to disk: with open("my-image.png", "wb") as file: file.write(output[0].read())
To learn more, take a look at the guide on getting started with Python.
Run aliadhami/3d-sheet using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "aliadhami/3d-sheet:7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891", "input": { "model": "dev", "prompt": "In the style of 3dsheet, three consistent views of the same futuristic cargo truck with aerodynamic design and vibrant color-shifting paint that transitions from electric blue to neon purple. Front view shows the truck\'s sleek cab with panoramic windshield, holographic headlights, and distinctive hexagonal grille pattern with illuminated logo. Back view displays the same truck from behind revealing the modular cargo container with integrated solar panels, wraparound taillights, and retractable loading ramp. Side view presents the complete profile showing the truck\'s streamlined silhouette, hovering wheel system with exposed turbine elements, driver access door, and the seamless connection between cab and cargo section. All three views maintain consistent color gradient, technological details, and innovative design elements of this single futuristic vehicle against a neutral background.", "go_fast": false, "lora_scale": 0.7, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "1:1", "output_format": "webp", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.37, "extra_lora_scale": 2.63, "num_inference_steps": 18 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2025-03-27T17:08:01.282186Z", "created_at": "2025-03-27T17:07:55.732000Z", "data_removed": false, "error": null, "id": "568v2x90thrma0cnv29rbnr1nr", "input": { "model": "dev", "prompt": "In the style of 3dsheet, three consistent views of the same futuristic cargo truck with aerodynamic design and vibrant color-shifting paint that transitions from electric blue to neon purple. Front view shows the truck's sleek cab with panoramic windshield, holographic headlights, and distinctive hexagonal grille pattern with illuminated logo. Back view displays the same truck from behind revealing the modular cargo container with integrated solar panels, wraparound taillights, and retractable loading ramp. Side view presents the complete profile showing the truck's streamlined silhouette, hovering wheel system with exposed turbine elements, driver access door, and the seamless connection between cab and cargo section. All three views maintain consistent color gradient, technological details, and innovative design elements of this single futuristic vehicle against a neutral background.", "go_fast": false, "lora_scale": 0.7, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "1:1", "output_format": "webp", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.37, "extra_lora_scale": 2.63, "num_inference_steps": 18 }, "logs": "Loaded LoRAs in 0.56s\nUsing seed: 35746\nPrompt: In the style of 3dsheet, three consistent views of the same futuristic cargo truck with aerodynamic design and vibrant color-shifting paint that transitions from electric blue to neon purple. Front view shows the truck's sleek cab with panoramic windshield, holographic headlights, and distinctive hexagonal grille pattern with illuminated logo. Back view displays the same truck from behind revealing the modular cargo container with integrated solar panels, wraparound taillights, and retractable loading ramp. Side view presents the complete profile showing the truck's streamlined silhouette, hovering wheel system with exposed turbine elements, driver access door, and the seamless connection between cab and cargo section. All three views maintain consistent color gradient, technological details, and innovative design elements of this single futuristic vehicle against a neutral background.\n[!] txt2img mode\n 0%| | 0/18 [00:00<?, ?it/s]\n 6%|▌ | 1/18 [00:00<00:04, 3.72it/s]\n 11%|█ | 2/18 [00:00<00:03, 4.11it/s]\n 17%|█▋ | 3/18 [00:00<00:03, 3.98it/s]\n 22%|██▏ | 4/18 [00:01<00:03, 3.91it/s]\n 28%|██▊ | 5/18 [00:01<00:03, 3.88it/s]\n 33%|███▎ | 6/18 [00:01<00:03, 3.86it/s]\n 39%|███▉ | 7/18 [00:01<00:02, 3.85it/s]\n 44%|████▍ | 8/18 [00:02<00:02, 3.84it/s]\n 50%|█████ | 9/18 [00:02<00:02, 3.83it/s]\n 56%|█████▌ | 10/18 [00:02<00:02, 3.82it/s]\n 61%|██████ | 11/18 [00:02<00:01, 3.82it/s]\n 67%|██████▋ | 12/18 [00:03<00:01, 3.83it/s]\n 72%|███████▏ | 13/18 [00:03<00:01, 3.82it/s]\n 78%|███████▊ | 14/18 [00:03<00:01, 3.82it/s]\n 83%|████████▎ | 15/18 [00:03<00:00, 3.83it/s]\n 89%|████████▉ | 16/18 [00:04<00:00, 3.82it/s]\n 94%|█████████▍| 17/18 [00:04<00:00, 3.82it/s]\n100%|██████████| 18/18 [00:04<00:00, 3.82it/s]\n100%|██████████| 18/18 [00:04<00:00, 3.84it/s]\nTotal safe images: 1 out of 1", "metrics": { "predict_time": 5.511821234, "total_time": 5.550186 }, "output": [ "https://replicate.delivery/xezq/GygfaMWVQHRfNEccXVmHeF2e4KjMgCpozbcMClKhjGkHfbmjC/out-0.webp" ], "started_at": "2025-03-27T17:07:55.770365Z", "status": "succeeded", "urls": { "stream": "https://stream.replicate.com/v1/files/bcwr-hlyaxrwffzpzkq77hm2cqzhgacihm7tvo455qh4mew2zxcwjtiua", "get": "https://api.replicate.com/v1/predictions/568v2x90thrma0cnv29rbnr1nr", "cancel": "https://api.replicate.com/v1/predictions/568v2x90thrma0cnv29rbnr1nr/cancel" }, "version": "7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891" }
Generated inLoaded LoRAs in 0.56s Using seed: 35746 Prompt: In the style of 3dsheet, three consistent views of the same futuristic cargo truck with aerodynamic design and vibrant color-shifting paint that transitions from electric blue to neon purple. Front view shows the truck's sleek cab with panoramic windshield, holographic headlights, and distinctive hexagonal grille pattern with illuminated logo. Back view displays the same truck from behind revealing the modular cargo container with integrated solar panels, wraparound taillights, and retractable loading ramp. Side view presents the complete profile showing the truck's streamlined silhouette, hovering wheel system with exposed turbine elements, driver access door, and the seamless connection between cab and cargo section. All three views maintain consistent color gradient, technological details, and innovative design elements of this single futuristic vehicle against a neutral background. [!] txt2img mode 0%| | 0/18 [00:00<?, ?it/s] 6%|▌ | 1/18 [00:00<00:04, 3.72it/s] 11%|█ | 2/18 [00:00<00:03, 4.11it/s] 17%|█▋ | 3/18 [00:00<00:03, 3.98it/s] 22%|██▏ | 4/18 [00:01<00:03, 3.91it/s] 28%|██▊ | 5/18 [00:01<00:03, 3.88it/s] 33%|███▎ | 6/18 [00:01<00:03, 3.86it/s] 39%|███▉ | 7/18 [00:01<00:02, 3.85it/s] 44%|████▍ | 8/18 [00:02<00:02, 3.84it/s] 50%|█████ | 9/18 [00:02<00:02, 3.83it/s] 56%|█████▌ | 10/18 [00:02<00:02, 3.82it/s] 61%|██████ | 11/18 [00:02<00:01, 3.82it/s] 67%|██████▋ | 12/18 [00:03<00:01, 3.83it/s] 72%|███████▏ | 13/18 [00:03<00:01, 3.82it/s] 78%|███████▊ | 14/18 [00:03<00:01, 3.82it/s] 83%|████████▎ | 15/18 [00:03<00:00, 3.83it/s] 89%|████████▉ | 16/18 [00:04<00:00, 3.82it/s] 94%|█████████▍| 17/18 [00:04<00:00, 3.82it/s] 100%|██████████| 18/18 [00:04<00:00, 3.82it/s] 100%|██████████| 18/18 [00:04<00:00, 3.84it/s] Total safe images: 1 out of 1
Prediction
aliadhami/3d-sheet:7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891IDzh871k19d1rme0cnv2rbgdh010StatusSucceededSourceWebHardwareH100Total durationCreatedInput
- model
- dev
- width
- 1440
- height
- 593
- prompt
- In the style of 3dsheet, three consistent views of the same Spartan helmet with polished bronze finish and striking red horsehair crest. Front view shows the helmet facing forward with the distinctive facial opening, cheek guards, and the full vertical sweep of the crest. Back view displays the helmet from behind with visible neck guard, structural reinforcements, and the rear attachment of the horsehair plume. Side view presents the complete profile with the curved silhouette, protruding nose guard, detailed eye slits, and the dramatic arc of the crest from front to back. All three views maintain consistent proportions, metallic texture, and authentic period details of this single battle helmet against a white background.
- go_fast
- lora_scale
- 0.7
- megapixels
- 1
- num_outputs
- 4
- aspect_ratio
- custom
- output_format
- webp
- guidance_scale
- 3
- output_quality
- 80
- prompt_strength
- 0.79
- extra_lora_scale
- 2.63
- num_inference_steps
- 28
{ "model": "dev", "width": 1440, "height": 593, "prompt": "In the style of 3dsheet, three consistent views of the same Spartan helmet with polished bronze finish and striking red horsehair crest. Front view shows the helmet facing forward with the distinctive facial opening, cheek guards, and the full vertical sweep of the crest. Back view displays the helmet from behind with visible neck guard, structural reinforcements, and the rear attachment of the horsehair plume. Side view presents the complete profile with the curved silhouette, protruding nose guard, detailed eye slits, and the dramatic arc of the crest from front to back. All three views maintain consistent proportions, metallic texture, and authentic period details of this single battle helmet against a white background.", "go_fast": false, "lora_scale": 0.7, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "custom", "output_format": "webp", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.79, "extra_lora_scale": 2.63, "num_inference_steps": 28 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; import fs from "node:fs"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run aliadhami/3d-sheet using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "aliadhami/3d-sheet:7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891", { input: { model: "dev", width: 1440, height: 593, prompt: "In the style of 3dsheet, three consistent views of the same Spartan helmet with polished bronze finish and striking red horsehair crest. Front view shows the helmet facing forward with the distinctive facial opening, cheek guards, and the full vertical sweep of the crest. Back view displays the helmet from behind with visible neck guard, structural reinforcements, and the rear attachment of the horsehair plume. Side view presents the complete profile with the curved silhouette, protruding nose guard, detailed eye slits, and the dramatic arc of the crest from front to back. All three views maintain consistent proportions, metallic texture, and authentic period details of this single battle helmet against a white background.", go_fast: false, lora_scale: 0.7, megapixels: "1", num_outputs: 4, aspect_ratio: "custom", output_format: "webp", guidance_scale: 3, output_quality: 80, prompt_strength: 0.79, extra_lora_scale: 2.63, num_inference_steps: 28 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run aliadhami/3d-sheet using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "aliadhami/3d-sheet:7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891", input={ "model": "dev", "width": 1440, "height": 593, "prompt": "In the style of 3dsheet, three consistent views of the same Spartan helmet with polished bronze finish and striking red horsehair crest. Front view shows the helmet facing forward with the distinctive facial opening, cheek guards, and the full vertical sweep of the crest. Back view displays the helmet from behind with visible neck guard, structural reinforcements, and the rear attachment of the horsehair plume. Side view presents the complete profile with the curved silhouette, protruding nose guard, detailed eye slits, and the dramatic arc of the crest from front to back. All three views maintain consistent proportions, metallic texture, and authentic period details of this single battle helmet against a white background.", "go_fast": False, "lora_scale": 0.7, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "custom", "output_format": "webp", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.79, "extra_lora_scale": 2.63, "num_inference_steps": 28 } ) # To access the file URL: print(output[0].url()) #=> "http://example.com" # To write the file to disk: with open("my-image.png", "wb") as file: file.write(output[0].read())
To learn more, take a look at the guide on getting started with Python.
Run aliadhami/3d-sheet using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "aliadhami/3d-sheet:7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891", "input": { "model": "dev", "width": 1440, "height": 593, "prompt": "In the style of 3dsheet, three consistent views of the same Spartan helmet with polished bronze finish and striking red horsehair crest. Front view shows the helmet facing forward with the distinctive facial opening, cheek guards, and the full vertical sweep of the crest. Back view displays the helmet from behind with visible neck guard, structural reinforcements, and the rear attachment of the horsehair plume. Side view presents the complete profile with the curved silhouette, protruding nose guard, detailed eye slits, and the dramatic arc of the crest from front to back. All three views maintain consistent proportions, metallic texture, and authentic period details of this single battle helmet against a white background.", "go_fast": false, "lora_scale": 0.7, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "custom", "output_format": "webp", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.79, "extra_lora_scale": 2.63, "num_inference_steps": 28 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2025-03-27T17:40:05.491346Z", "created_at": "2025-03-27T17:39:38.472000Z", "data_removed": false, "error": null, "id": "zh871k19d1rme0cnv2rbgdh010", "input": { "model": "dev", "width": 1440, "height": 593, "prompt": "In the style of 3dsheet, three consistent views of the same Spartan helmet with polished bronze finish and striking red horsehair crest. Front view shows the helmet facing forward with the distinctive facial opening, cheek guards, and the full vertical sweep of the crest. Back view displays the helmet from behind with visible neck guard, structural reinforcements, and the rear attachment of the horsehair plume. Side view presents the complete profile with the curved silhouette, protruding nose guard, detailed eye slits, and the dramatic arc of the crest from front to back. All three views maintain consistent proportions, metallic texture, and authentic period details of this single battle helmet against a white background.", "go_fast": false, "lora_scale": 0.7, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "custom", "output_format": "webp", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.79, "extra_lora_scale": 2.63, "num_inference_steps": 28 }, "logs": "free=26638676856832\nDownloading weights\n2025-03-27T17:39:38Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmp20k9htvo/weights url=https://replicate.delivery/xezq/QWlzmT0VcMKWD5UGNYHTDjBuxHJixAIS1NvWaxWoIXSyfYOKA/trained_model.tar\n2025-03-27T17:39:39Z | INFO | [ Complete ] dest=/tmp/tmp20k9htvo/weights size=\"172 MB\" total_elapsed=0.478s url=https://replicate.delivery/xezq/QWlzmT0VcMKWD5UGNYHTDjBuxHJixAIS1NvWaxWoIXSyfYOKA/trained_model.tar\nDownloaded weights in 0.50s\nLoaded LoRAs in 1.09s\nUsing seed: 52280\nPrompt: In the style of 3dsheet, three consistent views of the same Spartan helmet with polished bronze finish and striking red horsehair crest. Front view shows the helmet facing forward with the distinctive facial opening, cheek guards, and the full vertical sweep of the crest. Back view displays the helmet from behind with visible neck guard, structural reinforcements, and the rear attachment of the horsehair plume. Side view presents the complete profile with the curved silhouette, protruding nose guard, detailed eye slits, and the dramatic arc of the crest from front to back. All three views maintain consistent proportions, metallic texture, and authentic period details of this single battle helmet against a white background.\n[!] txt2img mode\n 0%| | 0/28 [00:00<?, ?it/s]\n 4%|▎ | 1/28 [00:00<00:21, 1.23it/s]\n 7%|▋ | 2/28 [00:01<00:19, 1.37it/s]\n 11%|█ | 3/28 [00:02<00:19, 1.30it/s]\n 14%|█▍ | 4/28 [00:03<00:18, 1.27it/s]\n 18%|█▊ | 5/28 [00:03<00:18, 1.26it/s]\n 21%|██▏ | 6/28 [00:04<00:17, 1.25it/s]\n 25%|██▌ | 7/28 [00:05<00:16, 1.24it/s]\n 29%|██▊ | 8/28 [00:06<00:16, 1.24it/s]\n 32%|███▏ | 9/28 [00:07<00:15, 1.23it/s]\n 36%|███▌ | 10/28 [00:07<00:14, 1.23it/s]\n 39%|███▉ | 11/28 [00:08<00:13, 1.23it/s]\n 43%|████▎ | 12/28 [00:09<00:13, 1.23it/s]\n 46%|████▋ | 13/28 [00:10<00:12, 1.23it/s]\n 50%|█████ | 14/28 [00:11<00:11, 1.23it/s]\n 54%|█████▎ | 15/28 [00:12<00:10, 1.23it/s]\n 57%|█████▋ | 16/28 [00:12<00:09, 1.23it/s]\n 61%|██████ | 17/28 [00:13<00:08, 1.23it/s]\n 64%|██████▍ | 18/28 [00:14<00:08, 1.23it/s]\n 68%|██████▊ | 19/28 [00:15<00:07, 1.23it/s]\n 71%|███████▏ | 20/28 [00:16<00:06, 1.23it/s]\n 75%|███████▌ | 21/28 [00:16<00:05, 1.23it/s]\n 79%|███████▊ | 22/28 [00:17<00:04, 1.23it/s]\n 82%|████████▏ | 23/28 [00:18<00:04, 1.23it/s]\n 86%|████████▌ | 24/28 [00:19<00:03, 1.23it/s]\n 89%|████████▉ | 25/28 [00:20<00:02, 1.23it/s]\n 93%|█████████▎| 26/28 [00:21<00:01, 1.23it/s]\n 96%|█████████▋| 27/28 [00:21<00:00, 1.23it/s]\n100%|██████████| 28/28 [00:22<00:00, 1.23it/s]\n100%|██████████| 28/28 [00:22<00:00, 1.24it/s]\nTotal safe images: 4 out of 4", "metrics": { "predict_time": 26.949358198, "total_time": 27.019346 }, "output": [ "https://replicate.delivery/xezq/UfTQ8JIpk5WJbS1uvWbgqfwVYT2Uo9jFzjUUPIR69A419zcUA/out-0.webp", "https://replicate.delivery/xezq/b9Y4dIl7lexjekpcf5mMpW6MlGcKBGAbMecXlMOeI4auufMHF/out-1.webp", "https://replicate.delivery/xezq/B6mVx5Di0PrPJRyGE4pvBHxR27B0XZM174zk2udVU1RdfZOKA/out-2.webp", "https://replicate.delivery/xezq/94eqS9Vr6MVlGC3imEXeUISaouweoBv1GICXp4F3S4Er7n5oA/out-3.webp" ], "started_at": "2025-03-27T17:39:38.541988Z", "status": "succeeded", "urls": { "stream": "https://stream.replicate.com/v1/files/bcwr-5746hhgqple2uehincqnbrlm2ro3hf3wq3rran63dup263mep4ra", "get": "https://api.replicate.com/v1/predictions/zh871k19d1rme0cnv2rbgdh010", "cancel": "https://api.replicate.com/v1/predictions/zh871k19d1rme0cnv2rbgdh010/cancel" }, "version": "7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891" }
Generated infree=26638676856832 Downloading weights 2025-03-27T17:39:38Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmp20k9htvo/weights url=https://replicate.delivery/xezq/QWlzmT0VcMKWD5UGNYHTDjBuxHJixAIS1NvWaxWoIXSyfYOKA/trained_model.tar 2025-03-27T17:39:39Z | INFO | [ Complete ] dest=/tmp/tmp20k9htvo/weights size="172 MB" total_elapsed=0.478s url=https://replicate.delivery/xezq/QWlzmT0VcMKWD5UGNYHTDjBuxHJixAIS1NvWaxWoIXSyfYOKA/trained_model.tar Downloaded weights in 0.50s Loaded LoRAs in 1.09s Using seed: 52280 Prompt: In the style of 3dsheet, three consistent views of the same Spartan helmet with polished bronze finish and striking red horsehair crest. Front view shows the helmet facing forward with the distinctive facial opening, cheek guards, and the full vertical sweep of the crest. Back view displays the helmet from behind with visible neck guard, structural reinforcements, and the rear attachment of the horsehair plume. Side view presents the complete profile with the curved silhouette, protruding nose guard, detailed eye slits, and the dramatic arc of the crest from front to back. All three views maintain consistent proportions, metallic texture, and authentic period details of this single battle helmet against a white background. [!] txt2img mode 0%| | 0/28 [00:00<?, ?it/s] 4%|▎ | 1/28 [00:00<00:21, 1.23it/s] 7%|▋ | 2/28 [00:01<00:19, 1.37it/s] 11%|█ | 3/28 [00:02<00:19, 1.30it/s] 14%|█▍ | 4/28 [00:03<00:18, 1.27it/s] 18%|█▊ | 5/28 [00:03<00:18, 1.26it/s] 21%|██▏ | 6/28 [00:04<00:17, 1.25it/s] 25%|██▌ | 7/28 [00:05<00:16, 1.24it/s] 29%|██▊ | 8/28 [00:06<00:16, 1.24it/s] 32%|███▏ | 9/28 [00:07<00:15, 1.23it/s] 36%|███▌ | 10/28 [00:07<00:14, 1.23it/s] 39%|███▉ | 11/28 [00:08<00:13, 1.23it/s] 43%|████▎ | 12/28 [00:09<00:13, 1.23it/s] 46%|████▋ | 13/28 [00:10<00:12, 1.23it/s] 50%|█████ | 14/28 [00:11<00:11, 1.23it/s] 54%|█████▎ | 15/28 [00:12<00:10, 1.23it/s] 57%|█████▋ | 16/28 [00:12<00:09, 1.23it/s] 61%|██████ | 17/28 [00:13<00:08, 1.23it/s] 64%|██████▍ | 18/28 [00:14<00:08, 1.23it/s] 68%|██████▊ | 19/28 [00:15<00:07, 1.23it/s] 71%|███████▏ | 20/28 [00:16<00:06, 1.23it/s] 75%|███████▌ | 21/28 [00:16<00:05, 1.23it/s] 79%|███████▊ | 22/28 [00:17<00:04, 1.23it/s] 82%|████████▏ | 23/28 [00:18<00:04, 1.23it/s] 86%|████████▌ | 24/28 [00:19<00:03, 1.23it/s] 89%|████████▉ | 25/28 [00:20<00:02, 1.23it/s] 93%|█████████▎| 26/28 [00:21<00:01, 1.23it/s] 96%|█████████▋| 27/28 [00:21<00:00, 1.23it/s] 100%|██████████| 28/28 [00:22<00:00, 1.23it/s] 100%|██████████| 28/28 [00:22<00:00, 1.24it/s] Total safe images: 4 out of 4
Prediction
aliadhami/3d-sheet:7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891IDrd41zbv00drma0cnv2vt9jjys0StatusSucceededSourceWebHardwareH100Total durationCreatedInput
- model
- dev
- width
- 1440
- height
- 593
- prompt
- In the style of 3dsheet, three consistent views of the same piggy bank with round body, coin slot, short legs, and snout. Front view shows the pig’s face with circular snout, two ears, and simple eyes. Back view displays the curved rear and tail with the coin slot centered on top. Side view presents the full rounded silhouette, with snout, ear, and coin slot visible in profile. All three views maintain consistent proportions of this single piggy bank against a white background.
- go_fast
- lora_scale
- 0.7
- megapixels
- 1
- num_outputs
- 4
- aspect_ratio
- custom
- output_format
- webp
- guidance_scale
- 3
- output_quality
- 80
- prompt_strength
- 0.79
- extra_lora_scale
- 2.63
- num_inference_steps
- 28
{ "model": "dev", "width": 1440, "height": 593, "prompt": "In the style of 3dsheet, three consistent views of the same piggy bank with round body, coin slot, short legs, and snout. Front view shows the pig’s face with circular snout, two ears, and simple eyes. Back view displays the curved rear and tail with the coin slot centered on top. Side view presents the full rounded silhouette, with snout, ear, and coin slot visible in profile. All three views maintain consistent proportions of this single piggy bank against a white background.", "go_fast": false, "lora_scale": 0.7, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "custom", "output_format": "webp", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.79, "extra_lora_scale": 2.63, "num_inference_steps": 28 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; import fs from "node:fs"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run aliadhami/3d-sheet using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "aliadhami/3d-sheet:7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891", { input: { model: "dev", width: 1440, height: 593, prompt: "In the style of 3dsheet, three consistent views of the same piggy bank with round body, coin slot, short legs, and snout. Front view shows the pig’s face with circular snout, two ears, and simple eyes. Back view displays the curved rear and tail with the coin slot centered on top. Side view presents the full rounded silhouette, with snout, ear, and coin slot visible in profile. All three views maintain consistent proportions of this single piggy bank against a white background.", go_fast: false, lora_scale: 0.7, megapixels: "1", num_outputs: 4, aspect_ratio: "custom", output_format: "webp", guidance_scale: 3, output_quality: 80, prompt_strength: 0.79, extra_lora_scale: 2.63, num_inference_steps: 28 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run aliadhami/3d-sheet using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "aliadhami/3d-sheet:7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891", input={ "model": "dev", "width": 1440, "height": 593, "prompt": "In the style of 3dsheet, three consistent views of the same piggy bank with round body, coin slot, short legs, and snout. Front view shows the pig’s face with circular snout, two ears, and simple eyes. Back view displays the curved rear and tail with the coin slot centered on top. Side view presents the full rounded silhouette, with snout, ear, and coin slot visible in profile. All three views maintain consistent proportions of this single piggy bank against a white background.", "go_fast": False, "lora_scale": 0.7, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "custom", "output_format": "webp", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.79, "extra_lora_scale": 2.63, "num_inference_steps": 28 } ) # To access the file URL: print(output[0].url()) #=> "http://example.com" # To write the file to disk: with open("my-image.png", "wb") as file: file.write(output[0].read())
To learn more, take a look at the guide on getting started with Python.
Run aliadhami/3d-sheet using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "aliadhami/3d-sheet:7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891", "input": { "model": "dev", "width": 1440, "height": 593, "prompt": "In the style of 3dsheet, three consistent views of the same piggy bank with round body, coin slot, short legs, and snout. Front view shows the pig’s face with circular snout, two ears, and simple eyes. Back view displays the curved rear and tail with the coin slot centered on top. Side view presents the full rounded silhouette, with snout, ear, and coin slot visible in profile. All three views maintain consistent proportions of this single piggy bank against a white background.", "go_fast": false, "lora_scale": 0.7, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "custom", "output_format": "webp", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.79, "extra_lora_scale": 2.63, "num_inference_steps": 28 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2025-03-27T17:47:59.312512Z", "created_at": "2025-03-27T17:47:31.203000Z", "data_removed": false, "error": null, "id": "rd41zbv00drma0cnv2vt9jjys0", "input": { "model": "dev", "width": 1440, "height": 593, "prompt": "In the style of 3dsheet, three consistent views of the same piggy bank with round body, coin slot, short legs, and snout. Front view shows the pig’s face with circular snout, two ears, and simple eyes. Back view displays the curved rear and tail with the coin slot centered on top. Side view presents the full rounded silhouette, with snout, ear, and coin slot visible in profile. All three views maintain consistent proportions of this single piggy bank against a white background.", "go_fast": false, "lora_scale": 0.7, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "custom", "output_format": "webp", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.79, "extra_lora_scale": 2.63, "num_inference_steps": 28 }, "logs": "free=25379220279296\nDownloading weights\n2025-03-27T17:47:31Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmpkd_5zox1/weights url=https://replicate.delivery/xezq/QWlzmT0VcMKWD5UGNYHTDjBuxHJixAIS1NvWaxWoIXSyfYOKA/trained_model.tar\n2025-03-27T17:47:33Z | INFO | [ Complete ] dest=/tmp/tmpkd_5zox1/weights size=\"172 MB\" total_elapsed=1.903s url=https://replicate.delivery/xezq/QWlzmT0VcMKWD5UGNYHTDjBuxHJixAIS1NvWaxWoIXSyfYOKA/trained_model.tar\nDownloaded weights in 1.92s\nLoaded LoRAs in 2.49s\nUsing seed: 57863\nPrompt: In the style of 3dsheet, three consistent views of the same piggy bank with round body, coin slot, short legs, and snout. Front view shows the pig’s face with circular snout, two ears, and simple eyes. Back view displays the curved rear and tail with the coin slot centered on top. Side view presents the full rounded silhouette, with snout, ear, and coin slot visible in profile. All three views maintain consistent proportions of this single piggy bank against a white background.\n[!] txt2img mode\n 0%| | 0/28 [00:00<?, ?it/s]\n 4%|▎ | 1/28 [00:00<00:21, 1.23it/s]\n 7%|▋ | 2/28 [00:01<00:19, 1.37it/s]\n 11%|█ | 3/28 [00:02<00:19, 1.30it/s]\n 14%|█▍ | 4/28 [00:03<00:18, 1.27it/s]\n 18%|█▊ | 5/28 [00:03<00:18, 1.25it/s]\n 21%|██▏ | 6/28 [00:04<00:17, 1.24it/s]\n 25%|██▌ | 7/28 [00:05<00:17, 1.23it/s]\n 29%|██▊ | 8/28 [00:06<00:16, 1.23it/s]\n 32%|███▏ | 9/28 [00:07<00:15, 1.23it/s]\n 36%|███▌ | 10/28 [00:08<00:14, 1.23it/s]\n 39%|███▉ | 11/28 [00:08<00:13, 1.22it/s]\n 43%|████▎ | 12/28 [00:09<00:13, 1.22it/s]\n 46%|████▋ | 13/28 [00:10<00:12, 1.22it/s]\n 50%|█████ | 14/28 [00:11<00:11, 1.22it/s]\n 54%|█████▎ | 15/28 [00:12<00:10, 1.22it/s]\n 57%|█████▋ | 16/28 [00:12<00:09, 1.22it/s]\n 61%|██████ | 17/28 [00:13<00:09, 1.22it/s]\n 64%|██████▍ | 18/28 [00:14<00:08, 1.22it/s]\n 68%|██████▊ | 19/28 [00:15<00:07, 1.22it/s]\n 71%|███████▏ | 20/28 [00:16<00:06, 1.22it/s]\n 75%|███████▌ | 21/28 [00:17<00:05, 1.22it/s]\n 79%|███████▊ | 22/28 [00:17<00:04, 1.22it/s]\n 82%|████████▏ | 23/28 [00:18<00:04, 1.22it/s]\n 86%|████████▌ | 24/28 [00:19<00:03, 1.22it/s]\n 89%|████████▉ | 25/28 [00:20<00:02, 1.22it/s]\n 93%|█████████▎| 26/28 [00:21<00:01, 1.22it/s]\n 96%|█████████▋| 27/28 [00:21<00:00, 1.22it/s]\n100%|██████████| 28/28 [00:22<00:00, 1.22it/s]\n100%|██████████| 28/28 [00:22<00:00, 1.23it/s]\nTotal safe images: 4 out of 4", "metrics": { "predict_time": 28.098713973, "total_time": 28.109512 }, "output": [ "https://replicate.delivery/xezq/rffGpsn1NCg5Kkd0QfJY8t5mm607Ged8mZm9eSNvGEq7pgmjC/out-0.webp", "https://replicate.delivery/xezq/APDmuYeW41yZKiTeCwffhyR1VuRPjhewF0qfJg6W2Jd6TBNHF/out-1.webp", "https://replicate.delivery/xezq/ZJAtNCa4zJKsJhEHcdqV4Mwc6kfHm2JQDpBYxDiNYTunCaOKA/out-2.webp", "https://replicate.delivery/xezq/CD9209kCa9b4OBImQCXbgP9RPAnXPMhWgaXMpwB6ZQ1TBNHF/out-3.webp" ], "started_at": "2025-03-27T17:47:31.213798Z", "status": "succeeded", "urls": { "stream": "https://stream.replicate.com/v1/files/bcwr-qi5heoeuyp3noszyq63j24f7excbcdieminhrz532zy53oddysaa", "get": "https://api.replicate.com/v1/predictions/rd41zbv00drma0cnv2vt9jjys0", "cancel": "https://api.replicate.com/v1/predictions/rd41zbv00drma0cnv2vt9jjys0/cancel" }, "version": "7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891" }
Generated infree=25379220279296 Downloading weights 2025-03-27T17:47:31Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmpkd_5zox1/weights url=https://replicate.delivery/xezq/QWlzmT0VcMKWD5UGNYHTDjBuxHJixAIS1NvWaxWoIXSyfYOKA/trained_model.tar 2025-03-27T17:47:33Z | INFO | [ Complete ] dest=/tmp/tmpkd_5zox1/weights size="172 MB" total_elapsed=1.903s url=https://replicate.delivery/xezq/QWlzmT0VcMKWD5UGNYHTDjBuxHJixAIS1NvWaxWoIXSyfYOKA/trained_model.tar Downloaded weights in 1.92s Loaded LoRAs in 2.49s Using seed: 57863 Prompt: In the style of 3dsheet, three consistent views of the same piggy bank with round body, coin slot, short legs, and snout. Front view shows the pig’s face with circular snout, two ears, and simple eyes. Back view displays the curved rear and tail with the coin slot centered on top. Side view presents the full rounded silhouette, with snout, ear, and coin slot visible in profile. All three views maintain consistent proportions of this single piggy bank against a white background. [!] txt2img mode 0%| | 0/28 [00:00<?, ?it/s] 4%|▎ | 1/28 [00:00<00:21, 1.23it/s] 7%|▋ | 2/28 [00:01<00:19, 1.37it/s] 11%|█ | 3/28 [00:02<00:19, 1.30it/s] 14%|█▍ | 4/28 [00:03<00:18, 1.27it/s] 18%|█▊ | 5/28 [00:03<00:18, 1.25it/s] 21%|██▏ | 6/28 [00:04<00:17, 1.24it/s] 25%|██▌ | 7/28 [00:05<00:17, 1.23it/s] 29%|██▊ | 8/28 [00:06<00:16, 1.23it/s] 32%|███▏ | 9/28 [00:07<00:15, 1.23it/s] 36%|███▌ | 10/28 [00:08<00:14, 1.23it/s] 39%|███▉ | 11/28 [00:08<00:13, 1.22it/s] 43%|████▎ | 12/28 [00:09<00:13, 1.22it/s] 46%|████▋ | 13/28 [00:10<00:12, 1.22it/s] 50%|█████ | 14/28 [00:11<00:11, 1.22it/s] 54%|█████▎ | 15/28 [00:12<00:10, 1.22it/s] 57%|█████▋ | 16/28 [00:12<00:09, 1.22it/s] 61%|██████ | 17/28 [00:13<00:09, 1.22it/s] 64%|██████▍ | 18/28 [00:14<00:08, 1.22it/s] 68%|██████▊ | 19/28 [00:15<00:07, 1.22it/s] 71%|███████▏ | 20/28 [00:16<00:06, 1.22it/s] 75%|███████▌ | 21/28 [00:17<00:05, 1.22it/s] 79%|███████▊ | 22/28 [00:17<00:04, 1.22it/s] 82%|████████▏ | 23/28 [00:18<00:04, 1.22it/s] 86%|████████▌ | 24/28 [00:19<00:03, 1.22it/s] 89%|████████▉ | 25/28 [00:20<00:02, 1.22it/s] 93%|█████████▎| 26/28 [00:21<00:01, 1.22it/s] 96%|█████████▋| 27/28 [00:21<00:00, 1.22it/s] 100%|██████████| 28/28 [00:22<00:00, 1.22it/s] 100%|██████████| 28/28 [00:22<00:00, 1.23it/s] Total safe images: 4 out of 4
Prediction
aliadhami/3d-sheet:7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891ID93pms90vznrme0cnv2wtwwkb4wStatusSucceededSourceWebHardwareH100Total durationCreatedInput
- model
- dev
- width
- 1440
- height
- 593
- prompt
- In the style of 3dsheet, three consistent views of the same fire truck retro futuristic minimal with smooth, blocky bodywork, rounded cabin, oversized wheels, and a single roof light. Front view shows a wide grille, curved windshield, and minimal detailing. Back view displays two circular taillights, a flat rear panel, and a low bumper. Side view presents a compact silhouette with a domed cabin, ladder contour along the side, and bold wheel arches. All three views maintain consistent proportions of this single fire truck retro futuristic minimal against a white background.
- go_fast
- lora_scale
- 0.7
- megapixels
- 1
- num_outputs
- 4
- aspect_ratio
- custom
- output_format
- webp
- guidance_scale
- 3
- output_quality
- 80
- prompt_strength
- 0.79
- extra_lora_scale
- 2.63
- num_inference_steps
- 28
{ "model": "dev", "width": 1440, "height": 593, "prompt": "In the style of 3dsheet, three consistent views of the same fire truck retro futuristic minimal with smooth, blocky bodywork, rounded cabin, oversized wheels, and a single roof light. Front view shows a wide grille, curved windshield, and minimal detailing. Back view displays two circular taillights, a flat rear panel, and a low bumper. Side view presents a compact silhouette with a domed cabin, ladder contour along the side, and bold wheel arches. All three views maintain consistent proportions of this single fire truck retro futuristic minimal against a white background.", "go_fast": false, "lora_scale": 0.7, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "custom", "output_format": "webp", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.79, "extra_lora_scale": 2.63, "num_inference_steps": 28 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; import fs from "node:fs"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run aliadhami/3d-sheet using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "aliadhami/3d-sheet:7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891", { input: { model: "dev", width: 1440, height: 593, prompt: "In the style of 3dsheet, three consistent views of the same fire truck retro futuristic minimal with smooth, blocky bodywork, rounded cabin, oversized wheels, and a single roof light. Front view shows a wide grille, curved windshield, and minimal detailing. Back view displays two circular taillights, a flat rear panel, and a low bumper. Side view presents a compact silhouette with a domed cabin, ladder contour along the side, and bold wheel arches. All three views maintain consistent proportions of this single fire truck retro futuristic minimal against a white background.", go_fast: false, lora_scale: 0.7, megapixels: "1", num_outputs: 4, aspect_ratio: "custom", output_format: "webp", guidance_scale: 3, output_quality: 80, prompt_strength: 0.79, extra_lora_scale: 2.63, num_inference_steps: 28 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run aliadhami/3d-sheet using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "aliadhami/3d-sheet:7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891", input={ "model": "dev", "width": 1440, "height": 593, "prompt": "In the style of 3dsheet, three consistent views of the same fire truck retro futuristic minimal with smooth, blocky bodywork, rounded cabin, oversized wheels, and a single roof light. Front view shows a wide grille, curved windshield, and minimal detailing. Back view displays two circular taillights, a flat rear panel, and a low bumper. Side view presents a compact silhouette with a domed cabin, ladder contour along the side, and bold wheel arches. All three views maintain consistent proportions of this single fire truck retro futuristic minimal against a white background.", "go_fast": False, "lora_scale": 0.7, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "custom", "output_format": "webp", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.79, "extra_lora_scale": 2.63, "num_inference_steps": 28 } ) # To access the file URL: print(output[0].url()) #=> "http://example.com" # To write the file to disk: with open("my-image.png", "wb") as file: file.write(output[0].read())
To learn more, take a look at the guide on getting started with Python.
Run aliadhami/3d-sheet using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "aliadhami/3d-sheet:7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891", "input": { "model": "dev", "width": 1440, "height": 593, "prompt": "In the style of 3dsheet, three consistent views of the same fire truck retro futuristic minimal with smooth, blocky bodywork, rounded cabin, oversized wheels, and a single roof light. Front view shows a wide grille, curved windshield, and minimal detailing. Back view displays two circular taillights, a flat rear panel, and a low bumper. Side view presents a compact silhouette with a domed cabin, ladder contour along the side, and bold wheel arches. All three views maintain consistent proportions of this single fire truck retro futuristic minimal against a white background.", "go_fast": false, "lora_scale": 0.7, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "custom", "output_format": "webp", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.79, "extra_lora_scale": 2.63, "num_inference_steps": 28 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2025-03-27T17:49:51.739624Z", "created_at": "2025-03-27T17:49:24.861000Z", "data_removed": false, "error": null, "id": "93pms90vznrme0cnv2wtwwkb4w", "input": { "model": "dev", "width": 1440, "height": 593, "prompt": "In the style of 3dsheet, three consistent views of the same fire truck retro futuristic minimal with smooth, blocky bodywork, rounded cabin, oversized wheels, and a single roof light. Front view shows a wide grille, curved windshield, and minimal detailing. Back view displays two circular taillights, a flat rear panel, and a low bumper. Side view presents a compact silhouette with a domed cabin, ladder contour along the side, and bold wheel arches. All three views maintain consistent proportions of this single fire truck retro futuristic minimal against a white background.", "go_fast": false, "lora_scale": 0.7, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "custom", "output_format": "webp", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.79, "extra_lora_scale": 2.63, "num_inference_steps": 28 }, "logs": "Loaded LoRAs in 0.58s\nUsing seed: 63007\nPrompt: In the style of 3dsheet, three consistent views of the same fire truck retro futuristic minimal with smooth, blocky bodywork, rounded cabin, oversized wheels, and a single roof light. Front view shows a wide grille, curved windshield, and minimal detailing. Back view displays two circular taillights, a flat rear panel, and a low bumper. Side view presents a compact silhouette with a domed cabin, ladder contour along the side, and bold wheel arches. All three views maintain consistent proportions of this single fire truck retro futuristic minimal against a white background.\n[!] txt2img mode\n 0%| | 0/28 [00:00<?, ?it/s]\n 4%|▎ | 1/28 [00:00<00:21, 1.23it/s]\n 7%|▋ | 2/28 [00:01<00:19, 1.36it/s]\n 11%|█ | 3/28 [00:02<00:19, 1.29it/s]\n 14%|█▍ | 4/28 [00:03<00:18, 1.27it/s]\n 18%|█▊ | 5/28 [00:03<00:18, 1.25it/s]\n 21%|██▏ | 6/28 [00:04<00:17, 1.24it/s]\n 25%|██▌ | 7/28 [00:05<00:17, 1.23it/s]\n 29%|██▊ | 8/28 [00:06<00:16, 1.23it/s]\n 32%|███▏ | 9/28 [00:07<00:15, 1.23it/s]\n 36%|███▌ | 10/28 [00:08<00:14, 1.22it/s]\n 39%|███▉ | 11/28 [00:08<00:13, 1.22it/s]\n 43%|████▎ | 12/28 [00:09<00:13, 1.22it/s]\n 46%|████▋ | 13/28 [00:10<00:12, 1.22it/s]\n 50%|█████ | 14/28 [00:11<00:11, 1.22it/s]\n 54%|█████▎ | 15/28 [00:12<00:10, 1.22it/s]\n 57%|█████▋ | 16/28 [00:12<00:09, 1.22it/s]\n 61%|██████ | 17/28 [00:13<00:09, 1.22it/s]\n 64%|██████▍ | 18/28 [00:14<00:08, 1.22it/s]\n 68%|██████▊ | 19/28 [00:15<00:07, 1.22it/s]\n 71%|███████▏ | 20/28 [00:16<00:06, 1.22it/s]\n 75%|███████▌ | 21/28 [00:17<00:05, 1.22it/s]\n 79%|███████▊ | 22/28 [00:17<00:04, 1.22it/s]\n 82%|████████▏ | 23/28 [00:18<00:04, 1.22it/s]\n 86%|████████▌ | 24/28 [00:19<00:03, 1.22it/s]\n 89%|████████▉ | 25/28 [00:20<00:02, 1.22it/s]\n 93%|█████████▎| 26/28 [00:21<00:01, 1.22it/s]\n 96%|█████████▋| 27/28 [00:21<00:00, 1.22it/s]\n100%|██████████| 28/28 [00:22<00:00, 1.22it/s]\n100%|██████████| 28/28 [00:22<00:00, 1.23it/s]\nTotal safe images: 4 out of 4", "metrics": { "predict_time": 24.179066647, "total_time": 26.878624 }, "output": [ "https://replicate.delivery/xezq/HFcb7ltzwTpLOt1bN3XFysu5k7EJ2DqyBi7Xx19wBq4vBNHF/out-0.webp", "https://replicate.delivery/xezq/BuToIpUdEYoDJFlg15QTnIf8uUOt7IeNv8S8tQqgGahfNo5oA/out-1.webp", "https://replicate.delivery/xezq/eLL2BMub92VlF6uivvQfRFHprFqifHfiU3ely2SvfY8efG0cUA/out-2.webp", "https://replicate.delivery/xezq/F5SrOkmKl3aiBtvsHo4ASYpgC6BlSgrGIifdbeYKBmBfNo5oA/out-3.webp" ], "started_at": "2025-03-27T17:49:27.560557Z", "status": "succeeded", "urls": { "stream": "https://stream.replicate.com/v1/files/bcwr-foct52hdh2tjonfyrayl7bbq3plikfbheuzu2cphdnbuql4b2h2q", "get": "https://api.replicate.com/v1/predictions/93pms90vznrme0cnv2wtwwkb4w", "cancel": "https://api.replicate.com/v1/predictions/93pms90vznrme0cnv2wtwwkb4w/cancel" }, "version": "7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891" }
Generated inLoaded LoRAs in 0.58s Using seed: 63007 Prompt: In the style of 3dsheet, three consistent views of the same fire truck retro futuristic minimal with smooth, blocky bodywork, rounded cabin, oversized wheels, and a single roof light. Front view shows a wide grille, curved windshield, and minimal detailing. Back view displays two circular taillights, a flat rear panel, and a low bumper. Side view presents a compact silhouette with a domed cabin, ladder contour along the side, and bold wheel arches. All three views maintain consistent proportions of this single fire truck retro futuristic minimal against a white background. [!] txt2img mode 0%| | 0/28 [00:00<?, ?it/s] 4%|▎ | 1/28 [00:00<00:21, 1.23it/s] 7%|▋ | 2/28 [00:01<00:19, 1.36it/s] 11%|█ | 3/28 [00:02<00:19, 1.29it/s] 14%|█▍ | 4/28 [00:03<00:18, 1.27it/s] 18%|█▊ | 5/28 [00:03<00:18, 1.25it/s] 21%|██▏ | 6/28 [00:04<00:17, 1.24it/s] 25%|██▌ | 7/28 [00:05<00:17, 1.23it/s] 29%|██▊ | 8/28 [00:06<00:16, 1.23it/s] 32%|███▏ | 9/28 [00:07<00:15, 1.23it/s] 36%|███▌ | 10/28 [00:08<00:14, 1.22it/s] 39%|███▉ | 11/28 [00:08<00:13, 1.22it/s] 43%|████▎ | 12/28 [00:09<00:13, 1.22it/s] 46%|████▋ | 13/28 [00:10<00:12, 1.22it/s] 50%|█████ | 14/28 [00:11<00:11, 1.22it/s] 54%|█████▎ | 15/28 [00:12<00:10, 1.22it/s] 57%|█████▋ | 16/28 [00:12<00:09, 1.22it/s] 61%|██████ | 17/28 [00:13<00:09, 1.22it/s] 64%|██████▍ | 18/28 [00:14<00:08, 1.22it/s] 68%|██████▊ | 19/28 [00:15<00:07, 1.22it/s] 71%|███████▏ | 20/28 [00:16<00:06, 1.22it/s] 75%|███████▌ | 21/28 [00:17<00:05, 1.22it/s] 79%|███████▊ | 22/28 [00:17<00:04, 1.22it/s] 82%|████████▏ | 23/28 [00:18<00:04, 1.22it/s] 86%|████████▌ | 24/28 [00:19<00:03, 1.22it/s] 89%|████████▉ | 25/28 [00:20<00:02, 1.22it/s] 93%|█████████▎| 26/28 [00:21<00:01, 1.22it/s] 96%|█████████▋| 27/28 [00:21<00:00, 1.22it/s] 100%|██████████| 28/28 [00:22<00:00, 1.22it/s] 100%|██████████| 28/28 [00:22<00:00, 1.23it/s] Total safe images: 4 out of 4
Prediction
aliadhami/3d-sheet:7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891ID8jm6t454bnrmc0cnv2zv7avd14StatusSucceededSourceWebHardwareH100Total durationCreatedInput
- model
- dev
- width
- 1440
- height
- 593
- prompt
- In the style of 3dsheet, three consistent views of the same Jesus head-and-neck sculpture with crown of thorns, visible neck, and upper shoulders. Front view shows the solemn face with downcast eyes, beard, crown resting on the brow, and robe line at the shoulders. Back view displays the crown wrapping fully around the head, long hair falling over the neck, and shoulder contours. Side view presents the facial profile, visible throat, crown thorns, and robe edge at the upper shoulder. All three views maintain consistent proportions of this single Jesus head-and-neck sculpture against a white background.
- go_fast
- lora_scale
- 0.7
- megapixels
- 1
- num_outputs
- 1
- aspect_ratio
- custom
- output_format
- webp
- guidance_scale
- 3
- output_quality
- 80
- prompt_strength
- 0.79
- extra_lora_scale
- 2.63
- num_inference_steps
- 28
{ "model": "dev", "width": 1440, "height": 593, "prompt": "In the style of 3dsheet, three consistent views of the same Jesus head-and-neck sculpture with crown of thorns, visible neck, and upper shoulders. Front view shows the solemn face with downcast eyes, beard, crown resting on the brow, and robe line at the shoulders. Back view displays the crown wrapping fully around the head, long hair falling over the neck, and shoulder contours. Side view presents the facial profile, visible throat, crown thorns, and robe edge at the upper shoulder. All three views maintain consistent proportions of this single Jesus head-and-neck sculpture against a white background.", "go_fast": false, "lora_scale": 0.7, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "custom", "output_format": "webp", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.79, "extra_lora_scale": 2.63, "num_inference_steps": 28 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; import fs from "node:fs"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run aliadhami/3d-sheet using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "aliadhami/3d-sheet:7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891", { input: { model: "dev", width: 1440, height: 593, prompt: "In the style of 3dsheet, three consistent views of the same Jesus head-and-neck sculpture with crown of thorns, visible neck, and upper shoulders. Front view shows the solemn face with downcast eyes, beard, crown resting on the brow, and robe line at the shoulders. Back view displays the crown wrapping fully around the head, long hair falling over the neck, and shoulder contours. Side view presents the facial profile, visible throat, crown thorns, and robe edge at the upper shoulder. All three views maintain consistent proportions of this single Jesus head-and-neck sculpture against a white background.", go_fast: false, lora_scale: 0.7, megapixels: "1", num_outputs: 1, aspect_ratio: "custom", output_format: "webp", guidance_scale: 3, output_quality: 80, prompt_strength: 0.79, extra_lora_scale: 2.63, num_inference_steps: 28 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run aliadhami/3d-sheet using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "aliadhami/3d-sheet:7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891", input={ "model": "dev", "width": 1440, "height": 593, "prompt": "In the style of 3dsheet, three consistent views of the same Jesus head-and-neck sculpture with crown of thorns, visible neck, and upper shoulders. Front view shows the solemn face with downcast eyes, beard, crown resting on the brow, and robe line at the shoulders. Back view displays the crown wrapping fully around the head, long hair falling over the neck, and shoulder contours. Side view presents the facial profile, visible throat, crown thorns, and robe edge at the upper shoulder. All three views maintain consistent proportions of this single Jesus head-and-neck sculpture against a white background.", "go_fast": False, "lora_scale": 0.7, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "custom", "output_format": "webp", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.79, "extra_lora_scale": 2.63, "num_inference_steps": 28 } ) # To access the file URL: print(output[0].url()) #=> "http://example.com" # To write the file to disk: with open("my-image.png", "wb") as file: file.write(output[0].read())
To learn more, take a look at the guide on getting started with Python.
Run aliadhami/3d-sheet using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "aliadhami/3d-sheet:7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891", "input": { "model": "dev", "width": 1440, "height": 593, "prompt": "In the style of 3dsheet, three consistent views of the same Jesus head-and-neck sculpture with crown of thorns, visible neck, and upper shoulders. Front view shows the solemn face with downcast eyes, beard, crown resting on the brow, and robe line at the shoulders. Back view displays the crown wrapping fully around the head, long hair falling over the neck, and shoulder contours. Side view presents the facial profile, visible throat, crown thorns, and robe edge at the upper shoulder. All three views maintain consistent proportions of this single Jesus head-and-neck sculpture against a white background.", "go_fast": false, "lora_scale": 0.7, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "custom", "output_format": "webp", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.79, "extra_lora_scale": 2.63, "num_inference_steps": 28 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2025-03-27T17:56:40.746348Z", "created_at": "2025-03-27T17:56:32.989000Z", "data_removed": false, "error": null, "id": "8jm6t454bnrmc0cnv2zv7avd14", "input": { "model": "dev", "width": 1440, "height": 593, "prompt": "In the style of 3dsheet, three consistent views of the same Jesus head-and-neck sculpture with crown of thorns, visible neck, and upper shoulders. Front view shows the solemn face with downcast eyes, beard, crown resting on the brow, and robe line at the shoulders. Back view displays the crown wrapping fully around the head, long hair falling over the neck, and shoulder contours. Side view presents the facial profile, visible throat, crown thorns, and robe edge at the upper shoulder. All three views maintain consistent proportions of this single Jesus head-and-neck sculpture against a white background.", "go_fast": false, "lora_scale": 0.7, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "custom", "output_format": "webp", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.79, "extra_lora_scale": 2.63, "num_inference_steps": 28 }, "logs": "Loaded LoRAs in 0.56s\nUsing seed: 41682\nPrompt: In the style of 3dsheet, three consistent views of the same Jesus head-and-neck sculpture with crown of thorns, visible neck, and upper shoulders. Front view shows the solemn face with downcast eyes, beard, crown resting on the brow, and robe line at the shoulders. Back view displays the crown wrapping fully around the head, long hair falling over the neck, and shoulder contours. Side view presents the facial profile, visible throat, crown thorns, and robe edge at the upper shoulder. All three views maintain consistent proportions of this single Jesus head-and-neck sculpture against a white background.\n[!] txt2img mode\n 0%| | 0/28 [00:00<?, ?it/s]\n 4%|▎ | 1/28 [00:00<00:06, 4.41it/s]\n 7%|▋ | 2/28 [00:00<00:05, 4.80it/s]\n 11%|█ | 3/28 [00:00<00:05, 4.67it/s]\n 14%|█▍ | 4/28 [00:00<00:05, 4.62it/s]\n 18%|█▊ | 5/28 [00:01<00:05, 4.59it/s]\n 21%|██▏ | 6/28 [00:01<00:04, 4.56it/s]\n 25%|██▌ | 7/28 [00:01<00:04, 4.55it/s]\n 29%|██▊ | 8/28 [00:01<00:04, 4.55it/s]\n 32%|███▏ | 9/28 [00:01<00:04, 4.53it/s]\n 36%|███▌ | 10/28 [00:02<00:03, 4.52it/s]\n 39%|███▉ | 11/28 [00:02<00:03, 4.52it/s]\n 43%|████▎ | 12/28 [00:02<00:03, 4.53it/s]\n 46%|████▋ | 13/28 [00:02<00:03, 4.53it/s]\n 50%|█████ | 14/28 [00:03<00:03, 4.52it/s]\n 54%|█████▎ | 15/28 [00:03<00:02, 4.51it/s]\n 57%|█████▋ | 16/28 [00:03<00:02, 4.51it/s]\n 61%|██████ | 17/28 [00:03<00:02, 4.52it/s]\n 64%|██████▍ | 18/28 [00:03<00:02, 4.53it/s]\n 68%|██████▊ | 19/28 [00:04<00:01, 4.51it/s]\n 71%|███████▏ | 20/28 [00:04<00:01, 4.51it/s]\n 75%|███████▌ | 21/28 [00:04<00:01, 4.52it/s]\n 79%|███████▊ | 22/28 [00:04<00:01, 4.53it/s]\n 82%|████████▏ | 23/28 [00:05<00:01, 4.52it/s]\n 86%|████████▌ | 24/28 [00:05<00:00, 4.51it/s]\n 89%|████████▉ | 25/28 [00:05<00:00, 4.51it/s]\n 93%|█████████▎| 26/28 [00:05<00:00, 4.53it/s]\n 96%|█████████▋| 27/28 [00:05<00:00, 4.53it/s]\n100%|██████████| 28/28 [00:06<00:00, 4.51it/s]\n100%|██████████| 28/28 [00:06<00:00, 4.53it/s]\nTotal safe images: 1 out of 1", "metrics": { "predict_time": 7.684934227, "total_time": 7.757348 }, "output": [ "https://replicate.delivery/xezq/ik6elbvGO7woRabO5BrfA1Lef4bsekwJl6RmNNdEBcEArhmjC/out-0.webp" ], "started_at": "2025-03-27T17:56:33.061413Z", "status": "succeeded", "urls": { "stream": "https://stream.replicate.com/v1/files/bcwr-qu23uxpzpd7catw6l6xndkuj5xmbicnwsipuadf5jzhiptdk2u7q", "get": "https://api.replicate.com/v1/predictions/8jm6t454bnrmc0cnv2zv7avd14", "cancel": "https://api.replicate.com/v1/predictions/8jm6t454bnrmc0cnv2zv7avd14/cancel" }, "version": "7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891" }
Generated inLoaded LoRAs in 0.56s Using seed: 41682 Prompt: In the style of 3dsheet, three consistent views of the same Jesus head-and-neck sculpture with crown of thorns, visible neck, and upper shoulders. Front view shows the solemn face with downcast eyes, beard, crown resting on the brow, and robe line at the shoulders. Back view displays the crown wrapping fully around the head, long hair falling over the neck, and shoulder contours. Side view presents the facial profile, visible throat, crown thorns, and robe edge at the upper shoulder. All three views maintain consistent proportions of this single Jesus head-and-neck sculpture against a white background. [!] txt2img mode 0%| | 0/28 [00:00<?, ?it/s] 4%|▎ | 1/28 [00:00<00:06, 4.41it/s] 7%|▋ | 2/28 [00:00<00:05, 4.80it/s] 11%|█ | 3/28 [00:00<00:05, 4.67it/s] 14%|█▍ | 4/28 [00:00<00:05, 4.62it/s] 18%|█▊ | 5/28 [00:01<00:05, 4.59it/s] 21%|██▏ | 6/28 [00:01<00:04, 4.56it/s] 25%|██▌ | 7/28 [00:01<00:04, 4.55it/s] 29%|██▊ | 8/28 [00:01<00:04, 4.55it/s] 32%|███▏ | 9/28 [00:01<00:04, 4.53it/s] 36%|███▌ | 10/28 [00:02<00:03, 4.52it/s] 39%|███▉ | 11/28 [00:02<00:03, 4.52it/s] 43%|████▎ | 12/28 [00:02<00:03, 4.53it/s] 46%|████▋ | 13/28 [00:02<00:03, 4.53it/s] 50%|█████ | 14/28 [00:03<00:03, 4.52it/s] 54%|█████▎ | 15/28 [00:03<00:02, 4.51it/s] 57%|█████▋ | 16/28 [00:03<00:02, 4.51it/s] 61%|██████ | 17/28 [00:03<00:02, 4.52it/s] 64%|██████▍ | 18/28 [00:03<00:02, 4.53it/s] 68%|██████▊ | 19/28 [00:04<00:01, 4.51it/s] 71%|███████▏ | 20/28 [00:04<00:01, 4.51it/s] 75%|███████▌ | 21/28 [00:04<00:01, 4.52it/s] 79%|███████▊ | 22/28 [00:04<00:01, 4.53it/s] 82%|████████▏ | 23/28 [00:05<00:01, 4.52it/s] 86%|████████▌ | 24/28 [00:05<00:00, 4.51it/s] 89%|████████▉ | 25/28 [00:05<00:00, 4.51it/s] 93%|█████████▎| 26/28 [00:05<00:00, 4.53it/s] 96%|█████████▋| 27/28 [00:05<00:00, 4.53it/s] 100%|██████████| 28/28 [00:06<00:00, 4.51it/s] 100%|██████████| 28/28 [00:06<00:00, 4.53it/s] Total safe images: 1 out of 1
Prediction
aliadhami/3d-sheet:7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891IDtyb7y1wbw1rma0cnv34bk3hgbwStatusSucceededSourceWebHardwareH100Total durationCreatedInput
- model
- dev
- width
- 1440
- height
- 593
- prompt
- In the style of 3dsheet, three consistent views of the same realistic Jesus head-and-neck figure with crown of thorns, lifelike skin, brown hair, greenish eyes, texture, visible neck, and upper shoulders. Front view shows a solemn face with natural facial features, detailed beard, crown resting on the brow, and fabric line of a robe at the shoulders. Back view displays textured hair flowing down the neck, crown wrapping fully around the head with thorn detail, and subtle shoulder form. Side view presents the realistic facial profile, visible skin folds on the neck, sharp crown thorns, and robe edge at the upper shoulder. All three views maintain consistent proportions of this single realistic Jesus head-and-neck figure against a white background.
- go_fast
- lora_scale
- 0.7
- megapixels
- 1
- num_outputs
- 4
- aspect_ratio
- custom
- output_format
- webp
- guidance_scale
- 3
- output_quality
- 80
- prompt_strength
- 0.79
- extra_lora_scale
- 2.63
- num_inference_steps
- 28
{ "model": "dev", "width": 1440, "height": 593, "prompt": "In the style of 3dsheet, three consistent views of the same realistic Jesus head-and-neck figure with crown of thorns, lifelike skin, brown hair, greenish eyes, texture, visible neck, and upper shoulders. Front view shows a solemn face with natural facial features, detailed beard, crown resting on the brow, and fabric line of a robe at the shoulders. Back view displays textured hair flowing down the neck, crown wrapping fully around the head with thorn detail, and subtle shoulder form. Side view presents the realistic facial profile, visible skin folds on the neck, sharp crown thorns, and robe edge at the upper shoulder. All three views maintain consistent proportions of this single realistic Jesus head-and-neck figure against a white background.", "go_fast": false, "lora_scale": 0.7, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "custom", "output_format": "webp", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.79, "extra_lora_scale": 2.63, "num_inference_steps": 28 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; import fs from "node:fs"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run aliadhami/3d-sheet using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "aliadhami/3d-sheet:7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891", { input: { model: "dev", width: 1440, height: 593, prompt: "In the style of 3dsheet, three consistent views of the same realistic Jesus head-and-neck figure with crown of thorns, lifelike skin, brown hair, greenish eyes, texture, visible neck, and upper shoulders. Front view shows a solemn face with natural facial features, detailed beard, crown resting on the brow, and fabric line of a robe at the shoulders. Back view displays textured hair flowing down the neck, crown wrapping fully around the head with thorn detail, and subtle shoulder form. Side view presents the realistic facial profile, visible skin folds on the neck, sharp crown thorns, and robe edge at the upper shoulder. All three views maintain consistent proportions of this single realistic Jesus head-and-neck figure against a white background.", go_fast: false, lora_scale: 0.7, megapixels: "1", num_outputs: 4, aspect_ratio: "custom", output_format: "webp", guidance_scale: 3, output_quality: 80, prompt_strength: 0.79, extra_lora_scale: 2.63, num_inference_steps: 28 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run aliadhami/3d-sheet using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "aliadhami/3d-sheet:7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891", input={ "model": "dev", "width": 1440, "height": 593, "prompt": "In the style of 3dsheet, three consistent views of the same realistic Jesus head-and-neck figure with crown of thorns, lifelike skin, brown hair, greenish eyes, texture, visible neck, and upper shoulders. Front view shows a solemn face with natural facial features, detailed beard, crown resting on the brow, and fabric line of a robe at the shoulders. Back view displays textured hair flowing down the neck, crown wrapping fully around the head with thorn detail, and subtle shoulder form. Side view presents the realistic facial profile, visible skin folds on the neck, sharp crown thorns, and robe edge at the upper shoulder. All three views maintain consistent proportions of this single realistic Jesus head-and-neck figure against a white background.", "go_fast": False, "lora_scale": 0.7, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "custom", "output_format": "webp", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.79, "extra_lora_scale": 2.63, "num_inference_steps": 28 } ) # To access the file URL: print(output[0].url()) #=> "http://example.com" # To write the file to disk: with open("my-image.png", "wb") as file: file.write(output[0].read())
To learn more, take a look at the guide on getting started with Python.
Run aliadhami/3d-sheet using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "aliadhami/3d-sheet:7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891", "input": { "model": "dev", "width": 1440, "height": 593, "prompt": "In the style of 3dsheet, three consistent views of the same realistic Jesus head-and-neck figure with crown of thorns, lifelike skin, brown hair, greenish eyes, texture, visible neck, and upper shoulders. Front view shows a solemn face with natural facial features, detailed beard, crown resting on the brow, and fabric line of a robe at the shoulders. Back view displays textured hair flowing down the neck, crown wrapping fully around the head with thorn detail, and subtle shoulder form. Side view presents the realistic facial profile, visible skin folds on the neck, sharp crown thorns, and robe edge at the upper shoulder. All three views maintain consistent proportions of this single realistic Jesus head-and-neck figure against a white background.", "go_fast": false, "lora_scale": 0.7, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "custom", "output_format": "webp", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.79, "extra_lora_scale": 2.63, "num_inference_steps": 28 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2025-03-27T18:07:11.682599Z", "created_at": "2025-03-27T18:06:16.544000Z", "data_removed": false, "error": null, "id": "tyb7y1wbw1rma0cnv34bk3hgbw", "input": { "model": "dev", "width": 1440, "height": 593, "prompt": "In the style of 3dsheet, three consistent views of the same realistic Jesus head-and-neck figure with crown of thorns, lifelike skin, brown hair, greenish eyes, texture, visible neck, and upper shoulders. Front view shows a solemn face with natural facial features, detailed beard, crown resting on the brow, and fabric line of a robe at the shoulders. Back view displays textured hair flowing down the neck, crown wrapping fully around the head with thorn detail, and subtle shoulder form. Side view presents the realistic facial profile, visible skin folds on the neck, sharp crown thorns, and robe edge at the upper shoulder. All three views maintain consistent proportions of this single realistic Jesus head-and-neck figure against a white background.", "go_fast": false, "lora_scale": 0.7, "megapixels": "1", "num_outputs": 4, "aspect_ratio": "custom", "output_format": "webp", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.79, "extra_lora_scale": 2.63, "num_inference_steps": 28 }, "logs": "Loaded LoRAs in 0.57s\nUsing seed: 17291\nPrompt: In the style of 3dsheet, three consistent views of the same realistic Jesus head-and-neck figure with crown of thorns, lifelike skin, brown hair, greenish eyes, texture, visible neck, and upper shoulders. Front view shows a solemn face with natural facial features, detailed beard, crown resting on the brow, and fabric line of a robe at the shoulders. Back view displays textured hair flowing down the neck, crown wrapping fully around the head with thorn detail, and subtle shoulder form. Side view presents the realistic facial profile, visible skin folds on the neck, sharp crown thorns, and robe edge at the upper shoulder. All three views maintain consistent proportions of this single realistic Jesus head-and-neck figure against a white background.\n[!] txt2img mode\n 0%| | 0/28 [00:00<?, ?it/s]\n 4%|▎ | 1/28 [00:00<00:21, 1.23it/s]\n 7%|▋ | 2/28 [00:01<00:19, 1.37it/s]\n 11%|█ | 3/28 [00:02<00:19, 1.30it/s]\n 14%|█▍ | 4/28 [00:03<00:18, 1.27it/s]\n 18%|█▊ | 5/28 [00:03<00:18, 1.26it/s]\n 21%|██▏ | 6/28 [00:04<00:17, 1.24it/s]\n 25%|██▌ | 7/28 [00:05<00:16, 1.24it/s]\n 29%|██▊ | 8/28 [00:06<00:16, 1.24it/s]\n 32%|███▏ | 9/28 [00:07<00:15, 1.23it/s]\n 36%|███▌ | 10/28 [00:08<00:14, 1.23it/s]\n 39%|███▉ | 11/28 [00:08<00:13, 1.23it/s]\n 43%|████▎ | 12/28 [00:09<00:13, 1.23it/s]\n 46%|████▋ | 13/28 [00:10<00:12, 1.23it/s]\n 50%|█████ | 14/28 [00:11<00:11, 1.23it/s]\n 54%|█████▎ | 15/28 [00:12<00:10, 1.23it/s]\n 57%|█████▋ | 16/28 [00:12<00:09, 1.23it/s]\n 61%|██████ | 17/28 [00:13<00:08, 1.23it/s]\n 64%|██████▍ | 18/28 [00:14<00:08, 1.23it/s]\n 68%|██████▊ | 19/28 [00:15<00:07, 1.23it/s]\n 71%|███████▏ | 20/28 [00:16<00:06, 1.23it/s]\n 75%|███████▌ | 21/28 [00:16<00:05, 1.23it/s]\n 79%|███████▊ | 22/28 [00:17<00:04, 1.23it/s]\n 82%|████████▏ | 23/28 [00:18<00:04, 1.23it/s]\n 86%|████████▌ | 24/28 [00:19<00:03, 1.23it/s]\n 89%|████████▉ | 25/28 [00:20<00:02, 1.23it/s]\n 93%|█████████▎| 26/28 [00:21<00:01, 1.23it/s]\n 96%|█████████▋| 27/28 [00:21<00:00, 1.23it/s]\n100%|██████████| 28/28 [00:22<00:00, 1.23it/s]\n100%|██████████| 28/28 [00:22<00:00, 1.24it/s]\nTotal safe images: 4 out of 4", "metrics": { "predict_time": 26.047989248, "total_time": 55.138599 }, "output": [ "https://replicate.delivery/xezq/2d2o1TEVDRqmFRaoZWa51TItpi063RvKHdqg8OFEt3wzFNHF/out-0.webp", "https://replicate.delivery/xezq/Jr83sSPILLorKpAjqHobXYxiJNN6RGMynW9MT06jTD1zFNHF/out-1.webp", "https://replicate.delivery/xezq/YyLEbe0zXixway6iUSUkWXiKS6HlJIJnWfqvMuXr8dNPX0cUA/out-2.webp", "https://replicate.delivery/xezq/XD44v0ULrDK6K9N8kYb6w0b5dvjzoVYUJCQSm7MAwtwzFNHF/out-3.webp" ], "started_at": "2025-03-27T18:06:45.634610Z", "status": "succeeded", "urls": { "stream": "https://stream.replicate.com/v1/files/bcwr-4jrvvhztqlo5ngr5cxc3rkzycw4yecdefbjrevrm6g35eyysd5ha", "get": "https://api.replicate.com/v1/predictions/tyb7y1wbw1rma0cnv34bk3hgbw", "cancel": "https://api.replicate.com/v1/predictions/tyb7y1wbw1rma0cnv34bk3hgbw/cancel" }, "version": "7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891" }
Generated inLoaded LoRAs in 0.57s Using seed: 17291 Prompt: In the style of 3dsheet, three consistent views of the same realistic Jesus head-and-neck figure with crown of thorns, lifelike skin, brown hair, greenish eyes, texture, visible neck, and upper shoulders. Front view shows a solemn face with natural facial features, detailed beard, crown resting on the brow, and fabric line of a robe at the shoulders. Back view displays textured hair flowing down the neck, crown wrapping fully around the head with thorn detail, and subtle shoulder form. Side view presents the realistic facial profile, visible skin folds on the neck, sharp crown thorns, and robe edge at the upper shoulder. All three views maintain consistent proportions of this single realistic Jesus head-and-neck figure against a white background. [!] txt2img mode 0%| | 0/28 [00:00<?, ?it/s] 4%|▎ | 1/28 [00:00<00:21, 1.23it/s] 7%|▋ | 2/28 [00:01<00:19, 1.37it/s] 11%|█ | 3/28 [00:02<00:19, 1.30it/s] 14%|█▍ | 4/28 [00:03<00:18, 1.27it/s] 18%|█▊ | 5/28 [00:03<00:18, 1.26it/s] 21%|██▏ | 6/28 [00:04<00:17, 1.24it/s] 25%|██▌ | 7/28 [00:05<00:16, 1.24it/s] 29%|██▊ | 8/28 [00:06<00:16, 1.24it/s] 32%|███▏ | 9/28 [00:07<00:15, 1.23it/s] 36%|███▌ | 10/28 [00:08<00:14, 1.23it/s] 39%|███▉ | 11/28 [00:08<00:13, 1.23it/s] 43%|████▎ | 12/28 [00:09<00:13, 1.23it/s] 46%|████▋ | 13/28 [00:10<00:12, 1.23it/s] 50%|█████ | 14/28 [00:11<00:11, 1.23it/s] 54%|█████▎ | 15/28 [00:12<00:10, 1.23it/s] 57%|█████▋ | 16/28 [00:12<00:09, 1.23it/s] 61%|██████ | 17/28 [00:13<00:08, 1.23it/s] 64%|██████▍ | 18/28 [00:14<00:08, 1.23it/s] 68%|██████▊ | 19/28 [00:15<00:07, 1.23it/s] 71%|███████▏ | 20/28 [00:16<00:06, 1.23it/s] 75%|███████▌ | 21/28 [00:16<00:05, 1.23it/s] 79%|███████▊ | 22/28 [00:17<00:04, 1.23it/s] 82%|████████▏ | 23/28 [00:18<00:04, 1.23it/s] 86%|████████▌ | 24/28 [00:19<00:03, 1.23it/s] 89%|████████▉ | 25/28 [00:20<00:02, 1.23it/s] 93%|█████████▎| 26/28 [00:21<00:01, 1.23it/s] 96%|█████████▋| 27/28 [00:21<00:00, 1.23it/s] 100%|██████████| 28/28 [00:22<00:00, 1.23it/s] 100%|██████████| 28/28 [00:22<00:00, 1.24it/s] Total safe images: 4 out of 4
Prediction
aliadhami/3d-sheet:7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891ID3cer146fv1rm80cnvecapq8cpcStatusSucceededSourceWebHardwareH100Total durationCreatedInput
- model
- dev
- width
- 1440
- height
- 593
- prompt
- In the style of 3dsheet, three consistent views of the same realistic diamond chest with transparent crystal-like panels, metallic frame, and glowing inner light. Front view shows the open lid revealing brilliant, colorful diamonds spilling out, with a central gold clasp and reflective inner walls. Back view displays the reinforced metallic hinges and semi-transparent back panel catching light. Side view presents the angled lid propped open, shimmering gem pile inside, and the interplay of glassy textures and glowing highlights. All three views maintain consistent proportions of this single realistic diamond chest against a white background, in full cinematic color.
- go_fast
- lora_scale
- 0.7
- megapixels
- 1
- num_outputs
- 1
- aspect_ratio
- custom
- output_format
- webp
- guidance_scale
- 3
- output_quality
- 80
- prompt_strength
- 0.79
- extra_lora_scale
- 2.63
- num_inference_steps
- 28
{ "model": "dev", "width": 1440, "height": 593, "prompt": "In the style of 3dsheet, three consistent views of the same realistic diamond chest with transparent crystal-like panels, metallic frame, and glowing inner light. Front view shows the open lid revealing brilliant, colorful diamonds spilling out, with a central gold clasp and reflective inner walls. Back view displays the reinforced metallic hinges and semi-transparent back panel catching light. Side view presents the angled lid propped open, shimmering gem pile inside, and the interplay of glassy textures and glowing highlights. All three views maintain consistent proportions of this single realistic diamond chest against a white background, in full cinematic color.", "go_fast": false, "lora_scale": 0.7, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "custom", "output_format": "webp", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.79, "extra_lora_scale": 2.63, "num_inference_steps": 28 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; import fs from "node:fs"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run aliadhami/3d-sheet using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "aliadhami/3d-sheet:7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891", { input: { model: "dev", width: 1440, height: 593, prompt: "In the style of 3dsheet, three consistent views of the same realistic diamond chest with transparent crystal-like panels, metallic frame, and glowing inner light. Front view shows the open lid revealing brilliant, colorful diamonds spilling out, with a central gold clasp and reflective inner walls. Back view displays the reinforced metallic hinges and semi-transparent back panel catching light. Side view presents the angled lid propped open, shimmering gem pile inside, and the interplay of glassy textures and glowing highlights. All three views maintain consistent proportions of this single realistic diamond chest against a white background, in full cinematic color.", go_fast: false, lora_scale: 0.7, megapixels: "1", num_outputs: 1, aspect_ratio: "custom", output_format: "webp", guidance_scale: 3, output_quality: 80, prompt_strength: 0.79, extra_lora_scale: 2.63, num_inference_steps: 28 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run aliadhami/3d-sheet using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "aliadhami/3d-sheet:7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891", input={ "model": "dev", "width": 1440, "height": 593, "prompt": "In the style of 3dsheet, three consistent views of the same realistic diamond chest with transparent crystal-like panels, metallic frame, and glowing inner light. Front view shows the open lid revealing brilliant, colorful diamonds spilling out, with a central gold clasp and reflective inner walls. Back view displays the reinforced metallic hinges and semi-transparent back panel catching light. Side view presents the angled lid propped open, shimmering gem pile inside, and the interplay of glassy textures and glowing highlights. All three views maintain consistent proportions of this single realistic diamond chest against a white background, in full cinematic color.", "go_fast": False, "lora_scale": 0.7, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "custom", "output_format": "webp", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.79, "extra_lora_scale": 2.63, "num_inference_steps": 28 } ) # To access the file URL: print(output[0].url()) #=> "http://example.com" # To write the file to disk: with open("my-image.png", "wb") as file: file.write(output[0].read())
To learn more, take a look at the guide on getting started with Python.
Run aliadhami/3d-sheet using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "aliadhami/3d-sheet:7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891", "input": { "model": "dev", "width": 1440, "height": 593, "prompt": "In the style of 3dsheet, three consistent views of the same realistic diamond chest with transparent crystal-like panels, metallic frame, and glowing inner light. Front view shows the open lid revealing brilliant, colorful diamonds spilling out, with a central gold clasp and reflective inner walls. Back view displays the reinforced metallic hinges and semi-transparent back panel catching light. Side view presents the angled lid propped open, shimmering gem pile inside, and the interplay of glassy textures and glowing highlights. All three views maintain consistent proportions of this single realistic diamond chest against a white background, in full cinematic color.", "go_fast": false, "lora_scale": 0.7, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "custom", "output_format": "webp", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.79, "extra_lora_scale": 2.63, "num_inference_steps": 28 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2025-03-28T07:13:06.290719Z", "created_at": "2025-03-28T07:12:59.864000Z", "data_removed": false, "error": null, "id": "3cer146fv1rm80cnvecapq8cpc", "input": { "model": "dev", "width": 1440, "height": 593, "prompt": "In the style of 3dsheet, three consistent views of the same realistic diamond chest with transparent crystal-like panels, metallic frame, and glowing inner light. Front view shows the open lid revealing brilliant, colorful diamonds spilling out, with a central gold clasp and reflective inner walls. Back view displays the reinforced metallic hinges and semi-transparent back panel catching light. Side view presents the angled lid propped open, shimmering gem pile inside, and the interplay of glassy textures and glowing highlights. All three views maintain consistent proportions of this single realistic diamond chest against a white background, in full cinematic color.", "go_fast": false, "lora_scale": 0.7, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "custom", "output_format": "webp", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.79, "extra_lora_scale": 2.63, "num_inference_steps": 28 }, "logs": "Weights already loaded\nLoaded LoRAs in 0.02s\nUsing seed: 17050\nPrompt: In the style of 3dsheet, three consistent views of the same realistic diamond chest with transparent crystal-like panels, metallic frame, and glowing inner light. Front view shows the open lid revealing brilliant, colorful diamonds spilling out, with a central gold clasp and reflective inner walls. Back view displays the reinforced metallic hinges and semi-transparent back panel catching light. Side view presents the angled lid propped open, shimmering gem pile inside, and the interplay of glassy textures and glowing highlights. All three views maintain consistent proportions of this single realistic diamond chest against a white background, in full cinematic color.\n[!] txt2img mode\n 0%| | 0/28 [00:00<?, ?it/s]\n 4%|▎ | 1/28 [00:00<00:06, 4.38it/s]\n 7%|▋ | 2/28 [00:00<00:05, 4.81it/s]\n 11%|█ | 3/28 [00:00<00:05, 4.69it/s]\n 14%|█▍ | 4/28 [00:00<00:05, 4.63it/s]\n 18%|█▊ | 5/28 [00:01<00:05, 4.58it/s]\n 21%|██▏ | 6/28 [00:01<00:04, 4.56it/s]\n 25%|██▌ | 7/28 [00:01<00:04, 4.55it/s]\n 29%|██▊ | 8/28 [00:01<00:04, 4.55it/s]\n 32%|███▏ | 9/28 [00:01<00:04, 4.54it/s]\n 36%|███▌ | 10/28 [00:02<00:03, 4.54it/s]\n 39%|███▉ | 11/28 [00:02<00:03, 4.52it/s]\n 43%|████▎ | 12/28 [00:02<00:03, 4.54it/s]\n 46%|████▋ | 13/28 [00:02<00:03, 4.53it/s]\n 50%|█████ | 14/28 [00:03<00:03, 4.52it/s]\n 54%|█████▎ | 15/28 [00:03<00:02, 4.52it/s]\n 57%|█████▋ | 16/28 [00:03<00:02, 4.53it/s]\n 61%|██████ | 17/28 [00:03<00:02, 4.54it/s]\n 64%|██████▍ | 18/28 [00:03<00:02, 4.53it/s]\n 68%|██████▊ | 19/28 [00:04<00:01, 4.52it/s]\n 71%|███████▏ | 20/28 [00:04<00:01, 4.52it/s]\n 75%|███████▌ | 21/28 [00:04<00:01, 4.53it/s]\n 79%|███████▊ | 22/28 [00:04<00:01, 4.54it/s]\n 82%|████████▏ | 23/28 [00:05<00:01, 4.52it/s]\n 86%|████████▌ | 24/28 [00:05<00:00, 4.52it/s]\n 89%|████████▉ | 25/28 [00:05<00:00, 4.53it/s]\n 93%|█████████▎| 26/28 [00:05<00:00, 4.53it/s]\n 96%|█████████▋| 27/28 [00:05<00:00, 4.52it/s]\n100%|██████████| 28/28 [00:06<00:00, 4.52it/s]\n100%|██████████| 28/28 [00:06<00:00, 4.54it/s]\nTotal safe images: 1 out of 1", "metrics": { "predict_time": 6.419263023, "total_time": 6.426719 }, "output": [ "https://replicate.delivery/xezq/6wBdp4F61q5hPFeMe3qAGHYHf12Nezl3eyS5P5LcBBmXAfPHF/out-0.webp" ], "started_at": "2025-03-28T07:12:59.871456Z", "status": "succeeded", "urls": { "stream": "https://stream.replicate.com/v1/files/bcwr-xgk4rmmwx4vbi5e6fynhxlczdz7toyyjvzo62sc747cfqse3agqq", "get": "https://api.replicate.com/v1/predictions/3cer146fv1rm80cnvecapq8cpc", "cancel": "https://api.replicate.com/v1/predictions/3cer146fv1rm80cnvecapq8cpc/cancel" }, "version": "7edfa9773387328f8d75a447a345b0b14a47278d579b25d4f640bf57caeb0891" }
Generated inWeights already loaded Loaded LoRAs in 0.02s Using seed: 17050 Prompt: In the style of 3dsheet, three consistent views of the same realistic diamond chest with transparent crystal-like panels, metallic frame, and glowing inner light. Front view shows the open lid revealing brilliant, colorful diamonds spilling out, with a central gold clasp and reflective inner walls. Back view displays the reinforced metallic hinges and semi-transparent back panel catching light. Side view presents the angled lid propped open, shimmering gem pile inside, and the interplay of glassy textures and glowing highlights. All three views maintain consistent proportions of this single realistic diamond chest against a white background, in full cinematic color. [!] txt2img mode 0%| | 0/28 [00:00<?, ?it/s] 4%|▎ | 1/28 [00:00<00:06, 4.38it/s] 7%|▋ | 2/28 [00:00<00:05, 4.81it/s] 11%|█ | 3/28 [00:00<00:05, 4.69it/s] 14%|█▍ | 4/28 [00:00<00:05, 4.63it/s] 18%|█▊ | 5/28 [00:01<00:05, 4.58it/s] 21%|██▏ | 6/28 [00:01<00:04, 4.56it/s] 25%|██▌ | 7/28 [00:01<00:04, 4.55it/s] 29%|██▊ | 8/28 [00:01<00:04, 4.55it/s] 32%|███▏ | 9/28 [00:01<00:04, 4.54it/s] 36%|███▌ | 10/28 [00:02<00:03, 4.54it/s] 39%|███▉ | 11/28 [00:02<00:03, 4.52it/s] 43%|████▎ | 12/28 [00:02<00:03, 4.54it/s] 46%|████▋ | 13/28 [00:02<00:03, 4.53it/s] 50%|█████ | 14/28 [00:03<00:03, 4.52it/s] 54%|█████▎ | 15/28 [00:03<00:02, 4.52it/s] 57%|█████▋ | 16/28 [00:03<00:02, 4.53it/s] 61%|██████ | 17/28 [00:03<00:02, 4.54it/s] 64%|██████▍ | 18/28 [00:03<00:02, 4.53it/s] 68%|██████▊ | 19/28 [00:04<00:01, 4.52it/s] 71%|███████▏ | 20/28 [00:04<00:01, 4.52it/s] 75%|███████▌ | 21/28 [00:04<00:01, 4.53it/s] 79%|███████▊ | 22/28 [00:04<00:01, 4.54it/s] 82%|████████▏ | 23/28 [00:05<00:01, 4.52it/s] 86%|████████▌ | 24/28 [00:05<00:00, 4.52it/s] 89%|████████▉ | 25/28 [00:05<00:00, 4.53it/s] 93%|█████████▎| 26/28 [00:05<00:00, 4.53it/s] 96%|█████████▋| 27/28 [00:05<00:00, 4.52it/s] 100%|██████████| 28/28 [00:06<00:00, 4.52it/s] 100%|██████████| 28/28 [00:06<00:00, 4.54it/s] Total safe images: 1 out of 1
Want to make some of these yourself?
Run this model