Readme
This model doesn't have a readme.
Run this model in Node.js with one line of code:
npm install replicate
REPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
import Replicate from "replicate";
const replicate = new Replicate({
auth: process.env.REPLICATE_API_TOKEN,
});
Run galverse/mama-flux-v1 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run(
"galverse/mama-flux-v1:dec77f91f71155f16c6bfe7df2cbacec18d0e4816ee772be48738ea9f9423a30",
{
input: {
model: "dev",
prompt: "low angles, A girl with royal blue short bob hair, straight bangs, sharp eyes, big text saying \"GALVERSE\" in the sky, she is wearing a black bodysuit with many gadgets, standing on the roof of a building, She holding a red linear sci-fi design electric guitar, many neon sign, hong kong city at night, back light, retro 1990 anime , in the style of GALVERSE",
go_fast: false,
lora_scale: 1,
megapixels: "1",
num_outputs: 1,
aspect_ratio: "4:5",
output_format: "webp",
guidance_scale: 3.5,
output_quality: 80,
prompt_strength: 0.8,
extra_lora_scale: 0.8,
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.
pip install replicate
REPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
import replicate
Run galverse/mama-flux-v1 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run(
"galverse/mama-flux-v1:dec77f91f71155f16c6bfe7df2cbacec18d0e4816ee772be48738ea9f9423a30",
input={
"model": "dev",
"prompt": "low angles, A girl with royal blue short bob hair, straight bangs, sharp eyes, big text saying \"GALVERSE\" in the sky, she is wearing a black bodysuit with many gadgets, standing on the roof of a building, She holding a red linear sci-fi design electric guitar, many neon sign, hong kong city at night, back light, retro 1990 anime , in the style of GALVERSE",
"go_fast": False,
"lora_scale": 1,
"megapixels": "1",
"num_outputs": 1,
"aspect_ratio": "4:5",
"output_format": "webp",
"guidance_scale": 3.5,
"output_quality": 80,
"prompt_strength": 0.8,
"extra_lora_scale": 0.8,
"num_inference_steps": 28
}
)
print(output)
To learn more, take a look at the guide on getting started with Python.
REPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Run galverse/mama-flux-v1 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": "dec77f91f71155f16c6bfe7df2cbacec18d0e4816ee772be48738ea9f9423a30",
"input": {
"model": "dev",
"prompt": "low angles, A girl with royal blue short bob hair, straight bangs, sharp eyes, big text saying \\"GALVERSE\\" in the sky, she is wearing a black bodysuit with many gadgets, standing on the roof of a building, She holding a red linear sci-fi design electric guitar, many neon sign, hong kong city at night, back light, retro 1990 anime , in the style of GALVERSE",
"go_fast": false,
"lora_scale": 1,
"megapixels": "1",
"num_outputs": 1,
"aspect_ratio": "4:5",
"output_format": "webp",
"guidance_scale": 3.5,
"output_quality": 80,
"prompt_strength": 0.8,
"extra_lora_scale": 0.8,
"num_inference_steps": 28
}
}' \
https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
brew install cog
If you don’t have Homebrew, there are other installation options available.
Run this to download the model and run it in your local environment:
cog predict r8.im/galverse/mama-flux-v1@sha256:dec77f91f71155f16c6bfe7df2cbacec18d0e4816ee772be48738ea9f9423a30 \
-i 'model="dev"' \
-i $'prompt="low angles, A girl with royal blue short bob hair, straight bangs, sharp eyes, big text saying \\"GALVERSE\\" in the sky, she is wearing a black bodysuit with many gadgets, standing on the roof of a building, She holding a red linear sci-fi design electric guitar, many neon sign, hong kong city at night, back light, retro 1990 anime , in the style of GALVERSE"' \
-i 'go_fast=false' \
-i 'lora_scale=1' \
-i 'megapixels="1"' \
-i 'num_outputs=1' \
-i 'aspect_ratio="4:5"' \
-i 'output_format="webp"' \
-i 'guidance_scale=3.5' \
-i 'output_quality=80' \
-i 'prompt_strength=0.8' \
-i 'extra_lora_scale=0.8' \
-i 'num_inference_steps=28'
To learn more, take a look at the Cog documentation.
Run this to download the model and run it in your local environment:
docker run -d -p 5000:5000 --gpus=all r8.im/galverse/mama-flux-v1@sha256:dec77f91f71155f16c6bfe7df2cbacec18d0e4816ee772be48738ea9f9423a30
curl -s -X POST \ -H "Content-Type: application/json" \ -d $'{ "input": { "model": "dev", "prompt": "low angles, A girl with royal blue short bob hair, straight bangs, sharp eyes, big text saying \\"GALVERSE\\" in the sky, she is wearing a black bodysuit with many gadgets, standing on the roof of a building, She holding a red linear sci-fi design electric guitar, many neon sign, hong kong city at night, back light, retro 1990 anime , in the style of GALVERSE", "go_fast": false, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "4:5", "output_format": "webp", "guidance_scale": 3.5, "output_quality": 80, "prompt_strength": 0.8, "extra_lora_scale": 0.8, "num_inference_steps": 28 } }' \ http://localhost:5000/predictions
To learn more, take a look at the Cog documentation.
Add a payment method to run this model.
By signing in, you agree to our
terms of service and privacy policy
{
"completed_at": "2024-08-24T15:00:19.095908Z",
"created_at": "2024-08-24T15:00:01.022000Z",
"data_removed": false,
"error": null,
"id": "8zjwcap1fsrm60chgkkaw5ws20",
"input": {
"model": "dev",
"prompt": "low angles, A girl with royal blue short bob hair, straight bangs, sharp eyes, big text saying \"GALVERSE\" in the sky, she is wearing a black bodysuit with many gadgets, standing on the roof of a building, She holding a red linear sci-fi design electric guitar, many neon sign, hong kong city at night, back light, retro 1990 anime , in the style of GALVERSE",
"lora_scale": 1,
"num_outputs": 1,
"aspect_ratio": "4:5",
"output_format": "webp",
"guidance_scale": 3.5,
"output_quality": 80,
"extra_lora_scale": 0.8,
"num_inference_steps": 28
},
"logs": "Using seed: 28767\nPrompt: low angles, A girl with royal blue short bob hair, straight bangs, sharp eyes, big text saying \"GALVERSE\" in the sky, she is wearing a black bodysuit with many gadgets, standing on the roof of a building, She holding a red linear sci-fi design electric guitar, many neon sign, hong kong city at night, back light, retro 1990 anime , in the style of GALVERSE\ntxt2img mode\nUsing dev model\nLoaded LoRAs in 7.05s\nThe following part of your input was truncated because CLIP can only handle sequences up to 77 tokens: ['9 9 0 anime, in the style of galverse']\n 0%| | 0/28 [00:00<?, ?it/s]\n 4%|▎ | 1/28 [00:00<00:06, 3.91it/s]\n 7%|▋ | 2/28 [00:00<00:05, 4.51it/s]\n 11%|█ | 3/28 [00:00<00:05, 4.21it/s]\n 14%|█▍ | 4/28 [00:00<00:05, 4.08it/s]\n 18%|█▊ | 5/28 [00:01<00:05, 4.01it/s]\n 21%|██▏ | 6/28 [00:01<00:05, 3.97it/s]\n 25%|██▌ | 7/28 [00:01<00:05, 3.95it/s]\n 29%|██▊ | 8/28 [00:01<00:05, 3.93it/s]\n 32%|███▏ | 9/28 [00:02<00:04, 3.92it/s]\n 36%|███▌ | 10/28 [00:02<00:04, 3.91it/s]\n 39%|███▉ | 11/28 [00:02<00:04, 3.91it/s]\n 43%|████▎ | 12/28 [00:03<00:04, 3.91it/s]\n 46%|████▋ | 13/28 [00:03<00:03, 3.90it/s]\n 50%|█████ | 14/28 [00:03<00:03, 3.91it/s]\n 54%|█████▎ | 15/28 [00:03<00:03, 3.90it/s]\n 57%|█████▋ | 16/28 [00:04<00:03, 3.90it/s]\n 61%|██████ | 17/28 [00:04<00:02, 3.90it/s]\n 64%|██████▍ | 18/28 [00:04<00:02, 3.90it/s]\n 68%|██████▊ | 19/28 [00:04<00:02, 3.90it/s]\n 71%|███████▏ | 20/28 [00:05<00:02, 3.90it/s]\n 75%|███████▌ | 21/28 [00:05<00:01, 3.89it/s]\n 79%|███████▊ | 22/28 [00:05<00:01, 3.89it/s]\n 82%|████████▏ | 23/28 [00:05<00:01, 3.89it/s]\n 86%|████████▌ | 24/28 [00:06<00:01, 3.89it/s]\n 89%|████████▉ | 25/28 [00:06<00:00, 3.90it/s]\n 93%|█████████▎| 26/28 [00:06<00:00, 3.90it/s]\n 96%|█████████▋| 27/28 [00:06<00:00, 3.90it/s]\n100%|██████████| 28/28 [00:07<00:00, 3.90it/s]\n100%|██████████| 28/28 [00:07<00:00, 3.93it/s]",
"metrics": {
"predict_time": 14.72969761,
"total_time": 18.073908
},
"output": [
"https://replicate.delivery/yhqm/xX0sFOTEd1q7C1LfOsaRKt57hs1q1nQfw0Ni853XDVYCe0rmA/out-0.webp"
],
"started_at": "2024-08-24T15:00:04.366210Z",
"status": "succeeded",
"urls": {
"get": "https://api.replicate.com/v1/predictions/8zjwcap1fsrm60chgkkaw5ws20",
"cancel": "https://api.replicate.com/v1/predictions/8zjwcap1fsrm60chgkkaw5ws20/cancel"
},
"version": "dec77f91f71155f16c6bfe7df2cbacec18d0e4816ee772be48738ea9f9423a30"
}
Using seed: 28767
Prompt: low angles, A girl with royal blue short bob hair, straight bangs, sharp eyes, big text saying "GALVERSE" in the sky, she is wearing a black bodysuit with many gadgets, standing on the roof of a building, She holding a red linear sci-fi design electric guitar, many neon sign, hong kong city at night, back light, retro 1990 anime , in the style of GALVERSE
txt2img mode
Using dev model
Loaded LoRAs in 7.05s
The following part of your input was truncated because CLIP can only handle sequences up to 77 tokens: ['9 9 0 anime, in the style of galverse']
0%| | 0/28 [00:00<?, ?it/s]
4%|▎ | 1/28 [00:00<00:06, 3.91it/s]
7%|▋ | 2/28 [00:00<00:05, 4.51it/s]
11%|█ | 3/28 [00:00<00:05, 4.21it/s]
14%|█▍ | 4/28 [00:00<00:05, 4.08it/s]
18%|█▊ | 5/28 [00:01<00:05, 4.01it/s]
21%|██▏ | 6/28 [00:01<00:05, 3.97it/s]
25%|██▌ | 7/28 [00:01<00:05, 3.95it/s]
29%|██▊ | 8/28 [00:01<00:05, 3.93it/s]
32%|███▏ | 9/28 [00:02<00:04, 3.92it/s]
36%|███▌ | 10/28 [00:02<00:04, 3.91it/s]
39%|███▉ | 11/28 [00:02<00:04, 3.91it/s]
43%|████▎ | 12/28 [00:03<00:04, 3.91it/s]
46%|████▋ | 13/28 [00:03<00:03, 3.90it/s]
50%|█████ | 14/28 [00:03<00:03, 3.91it/s]
54%|█████▎ | 15/28 [00:03<00:03, 3.90it/s]
57%|█████▋ | 16/28 [00:04<00:03, 3.90it/s]
61%|██████ | 17/28 [00:04<00:02, 3.90it/s]
64%|██████▍ | 18/28 [00:04<00:02, 3.90it/s]
68%|██████▊ | 19/28 [00:04<00:02, 3.90it/s]
71%|███████▏ | 20/28 [00:05<00:02, 3.90it/s]
75%|███████▌ | 21/28 [00:05<00:01, 3.89it/s]
79%|███████▊ | 22/28 [00:05<00:01, 3.89it/s]
82%|████████▏ | 23/28 [00:05<00:01, 3.89it/s]
86%|████████▌ | 24/28 [00:06<00:01, 3.89it/s]
89%|████████▉ | 25/28 [00:06<00:00, 3.90it/s]
93%|█████████▎| 26/28 [00:06<00:00, 3.90it/s]
96%|█████████▋| 27/28 [00:06<00:00, 3.90it/s]
100%|██████████| 28/28 [00:07<00:00, 3.90it/s]
100%|██████████| 28/28 [00:07<00:00, 3.93it/s]
This model runs on Nvidia H100 GPU hardware. We don't yet have enough runs of this model to provide performance information.
This model doesn't have a readme.
This model is warm. You'll get a fast response if the model is warm and already running, and a slower response if the model is cold and starting up.
Choose a file from your machine
Hint: you can also drag files onto the input
Choose a file from your machine
Hint: you can also drag files onto the input
Using seed: 28767
Prompt: low angles, A girl with royal blue short bob hair, straight bangs, sharp eyes, big text saying "GALVERSE" in the sky, she is wearing a black bodysuit with many gadgets, standing on the roof of a building, She holding a red linear sci-fi design electric guitar, many neon sign, hong kong city at night, back light, retro 1990 anime , in the style of GALVERSE
txt2img mode
Using dev model
Loaded LoRAs in 7.05s
The following part of your input was truncated because CLIP can only handle sequences up to 77 tokens: ['9 9 0 anime, in the style of galverse']
0%| | 0/28 [00:00<?, ?it/s]
4%|▎ | 1/28 [00:00<00:06, 3.91it/s]
7%|▋ | 2/28 [00:00<00:05, 4.51it/s]
11%|█ | 3/28 [00:00<00:05, 4.21it/s]
14%|█▍ | 4/28 [00:00<00:05, 4.08it/s]
18%|█▊ | 5/28 [00:01<00:05, 4.01it/s]
21%|██▏ | 6/28 [00:01<00:05, 3.97it/s]
25%|██▌ | 7/28 [00:01<00:05, 3.95it/s]
29%|██▊ | 8/28 [00:01<00:05, 3.93it/s]
32%|███▏ | 9/28 [00:02<00:04, 3.92it/s]
36%|███▌ | 10/28 [00:02<00:04, 3.91it/s]
39%|███▉ | 11/28 [00:02<00:04, 3.91it/s]
43%|████▎ | 12/28 [00:03<00:04, 3.91it/s]
46%|████▋ | 13/28 [00:03<00:03, 3.90it/s]
50%|█████ | 14/28 [00:03<00:03, 3.91it/s]
54%|█████▎ | 15/28 [00:03<00:03, 3.90it/s]
57%|█████▋ | 16/28 [00:04<00:03, 3.90it/s]
61%|██████ | 17/28 [00:04<00:02, 3.90it/s]
64%|██████▍ | 18/28 [00:04<00:02, 3.90it/s]
68%|██████▊ | 19/28 [00:04<00:02, 3.90it/s]
71%|███████▏ | 20/28 [00:05<00:02, 3.90it/s]
75%|███████▌ | 21/28 [00:05<00:01, 3.89it/s]
79%|███████▊ | 22/28 [00:05<00:01, 3.89it/s]
82%|████████▏ | 23/28 [00:05<00:01, 3.89it/s]
86%|████████▌ | 24/28 [00:06<00:01, 3.89it/s]
89%|████████▉ | 25/28 [00:06<00:00, 3.90it/s]
93%|█████████▎| 26/28 [00:06<00:00, 3.90it/s]
96%|█████████▋| 27/28 [00:06<00:00, 3.90it/s]
100%|██████████| 28/28 [00:07<00:00, 3.90it/s]
100%|██████████| 28/28 [00:07<00:00, 3.93it/s]