# - THX Ed. (1.4) - Pruned >

EDIT: 1.99Gb file is fixed - 1.60gb file is the bugged one

I re-uploaded the buggy one because someone ask me the file and because also if is bugged, is working good to a lot of people)

We have also understand how it work the bugged (1.60gb) version work, and I think it's a funny and interesting bug.

I try to explain to you with my horrible english

1) In A1111 load a random model (X)

2) Generate an casual image

3) Load Aniverse 1.4 Bug version

4) Generate an image and save it

5) Load another Model (Y) - (different to Model X)

6) Generate a casual image

7) Load again Aniverse 1.4 Bug version

8) Click over "PNG Info" tab

9) Load the saved image

10) Click over send to "TXT2Img" button

11) Click on Txt2img tab

12) Press generate

Now you have 2 different images with same parameters, seed, cfg, ect ect. using the same model ;)

I think it's interesting, because if you have patience, you can find the style that you like.

Sorry guys, the file was corrupted :_(

πŸ™‡πŸ™‡πŸ™‡πŸ™‡πŸ™‡
I've uploaded now the fixed version!
I'm really really sorry!

Hi boys & girls!
Here we are with a new version! I bet that if you are reading these lines you are wondering what THX Ed means.
The answer is very simple: Thank you edition!
This version of Aniverse was born with the idea of ​​thanking you!
I swear I never expected such a warm welcome from you!
So I started saving your creations that you published using the previous Aniverse versions (about 2500 images), added another 600 images (to give the model a bit of variety) and trained using Aniverse 1.2.
And so Aniverse THX Ed was born.
I wish I could thank everyone, one by one, but it's literally impossible...
In any case, thanks everyone! You are amazing and created wonderful images.
Which is why I didn't put this version in early preview, because you are all partly creators of this version and it seemed right to me to thank you also by making it immediately downloadable for everyone.
I hope you will like this "outside the lines" version.
Unfortunately I discovered that I had a problem with dreambooth (it creates artifacts and "metallic" images so I couldn't use the pure version, but I had to merge it with version 1.2 of Aniverse (I prefer 1.2 over 1.3).
The result is creations similar to previous Aniverse releases, with more detail, better lighting, fewer facial flaws, and better hands (I hope).

- I'll say straight away that the pruned will arrive next week.
- Animerge V2.0 will arrive in two weeks (I still have to test it thoroughly, if it works it will be a small revolution)
- After that I'll take a little break to try to create Aniverse XL, hoping that no bugs arise.

Thanks again everyone! You are wonderful!
Samael

## Overview - **Model ID**: `thxed14pruned` - **Category**: stable diffusion - **Provider**: modelslab - **Status**: model_ready - **Screenshot**: `https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/2f4ee493-69db-4869-b3ff-fac30cb2004e/width=1800/2587223.jpeg` ## API Information This model can be used via our HTTP API. See the API documentation and usage examples below. ### Endpoint - **URL**: `https://modelslab.com/api/v6/images/text2img` - **Method**: POST ### Parameters - **`prompt`** (required): prompt help in image generation - Type: textarea - Example: Enter prompt - **`model_id`** (required): Enter model_id that can help in image generation - Type: text - Example: Enter model_id here - **`lora_model`** (required): - Type: multiple_models - **`width`** (required): width of the image - Type: number (range: 512-1024) - **`height`** (required): height of the image - Type: number (range: 512-1024) - **`negative_prompt`** (optional): Negative prompt help in avoid things that you do not want in image - Type: textarea - Example: Enter negative prompt that you do not want see in image - **`scheduler`** (optional): - Type: select (options: DPM++ 2M, DPM++ SDE, Euler, Euler a) - **`guidance_scale`** (optional): - Type: number (range: 1-10) ## Usage Examples ### cURL ```bash curl --request POST \ --url https://modelslab.com/api/v6/images/text2img \ --header "Content-Type: application/json" \ --data '{ "key": "YOUR_API_KEY", "model_id": "thxed14pruned", "prompt": "R3alisticF, hauntingly beautiful oriental necromancer, long flowing brown hair, bangs, darkly tanned skin, earrings, bone necklaces, dark eyeshadow, red lips, vibrant, front-laced transparent, filmy silk blouse, cleavage, holding skull, in a sandstone room lit by candles, High Detail, Perfect Composition, high contrast, silhouetted, chiascuro", "width": "1024", "height": "1024", "negative_prompt": "(worst quality:2), (low quality:2), (normal quality:2), (jpeg artifacts), (blurry), (duplicate), (morbid), (mutilated), (out of frame), (extra limbs), (bad anatomy), (disfigured), (deformed), (cross-eye), (glitch), (oversaturated), (overexposed), (underexposed), (bad proportions), (bad hands), (bad feet), (cloned face), (long neck), (missing arms), (missing legs), (extra fingers), (fused fingers), (poorly drawn hands), (poorly drawn face), (mutation), (deformed eyes), watermark, text, logo, signature, grainy, tiling, censored, nsfw, ugly, blurry eyes, noisy image, bad lighting, unnatural skin, asymmetry", "scheduler": "DPMSolverMultistepScheduler", "guidance_scale": "7.5" }' ``` ### Python ```python import requests response = requests.post( "https://modelslab.com/api/v6/images/text2img", headers={ "Content-Type": "application/json" }, json={ "key": "YOUR_API_KEY", "model_id": "thxed14pruned", "prompt": "R3alisticF, hauntingly beautiful oriental necromancer, long flowing brown hair, bangs, darkly tanned skin, earrings, bone necklaces, dark eyeshadow, red lips, vibrant, front-laced transparent, filmy silk blouse, cleavage, holding skull, in a sandstone room lit by candles, High Detail, Perfect Composition, high contrast, silhouetted, chiascuro", "width": "1024", "height": "1024", "negative_prompt": "(worst quality:2), (low quality:2), (normal quality:2), (jpeg artifacts), (blurry), (duplicate), (morbid), (mutilated), (out of frame), (extra limbs), (bad anatomy), (disfigured), (deformed), (cross-eye), (glitch), (oversaturated), (overexposed), (underexposed), (bad proportions), (bad hands), (bad feet), (cloned face), (long neck), (missing arms), (missing legs), (extra fingers), (fused fingers), (poorly drawn hands), (poorly drawn face), (mutation), (deformed eyes), watermark, text, logo, signature, grainy, tiling, censored, nsfw, ugly, blurry eyes, noisy image, bad lighting, unnatural skin, asymmetry", "scheduler": "DPMSolverMultistepScheduler", "guidance_scale": "7.5" } ) print(response.json()) ``` ### JavaScript ```javascript fetch("https://modelslab.com/api/v6/images/text2img", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "key": "YOUR_API_KEY", "model_id": "thxed14pruned", "prompt": "R3alisticF, hauntingly beautiful oriental necromancer, long flowing brown hair, bangs, darkly tanned skin, earrings, bone necklaces, dark eyeshadow, red lips, vibrant, front-laced transparent, filmy silk blouse, cleavage, holding skull, in a sandstone room lit by candles, High Detail, Perfect Composition, high contrast, silhouetted, chiascuro", "width": "1024", "height": "1024", "negative_prompt": "(worst quality:2), (low quality:2), (normal quality:2), (jpeg artifacts), (blurry), (duplicate), (morbid), (mutilated), (out of frame), (extra limbs), (bad anatomy), (disfigured), (deformed), (cross-eye), (glitch), (oversaturated), (overexposed), (underexposed), (bad proportions), (bad hands), (bad feet), (cloned face), (long neck), (missing arms), (missing legs), (extra fingers), (fused fingers), (poorly drawn hands), (poorly drawn face), (mutation), (deformed eyes), watermark, text, logo, signature, grainy, tiling, censored, nsfw, ugly, blurry eyes, noisy image, bad lighting, unnatural skin, asymmetry", "scheduler": "DPMSolverMultistepScheduler", "guidance_scale": "7.5" }) }) .then(response => response.json()) .then(data => console.log(data)); ``` ## Links - [Model Playground](https://modelslab.com/models/community-model/thxed14pruned) - [API Documentation](https://docs.modelslab.com) - [ModelsLab Platform](https://modelslab.com)