Buy me a can of cat food - buymeacoffee.com/Darkseal
need thicker lines? Try a Hypernetwork like a SamDoes Hypernetwork at about 20-30% https://civarchive.com/models/2657/sdaa3 or incase https://civarchive.com/models/1658/incasea3
Need a Vae? Most times I use 840000 ema pruned. This is anime though you say... yeah, not sure how much difference it makes on this model... https://huggingface.co/stabilityai/sd-vae-ft-mse-original/tree/main
Come check me and my wares out around the web as either Darkseal or DarksealStudios, and more can be seen here: https://www.deviantart.com/darksealstudios
Description
Anythingv3 + F222 - SD1.5 Difference 1 multiplier = DarkberryPreMix, (deleted after, will be trash.)
DarkBerryPreMix + Gape 60 at weighted diference 0.25 = DarkBerry Mix = good!
FAQ
Comments (15)
pls give trigger words
illustration, masterpiece, best quality, 1girl,
click on the (i) for the image prompts
If I'm reading this recipe right, this mix is 70% AA3 and 30% (F222 - Gape60). Is that correct?
no. It's a 2 step mix, like the original berry mix. Anythingv3 + F222 - SD1.5 Difference 1 multiplier = DarkberryPreMix, (deleted after, is trash).
DarkBerryPreMix + Gape 60 at weighted diference 0.25 = DarkBerry Mix = good!
Hi! I'm newbie ;c
It's cool work but i wanna use your hypernet too. How i can use hypernet? ;c
ty!
Is there a CKPT version of this model? I am using DiffusionBee on Mac. Thanks.
this is a ckpt!
@darkseal
im trying to load this on colab, as a ckpt, and it doesnt load, CIVI says its pickletensor...
" magic_number = pickle_module.load(f, **pickle_load_args) _pickle.UnpicklingError: invalid load key, 'z'. Stable diffusion model failed to load, exiting"
grapefruit loads cuz its a safetensor
@masterousdebator sorry, I don't know much, it's just the ckpt that automatic1111 mixed. Maybe because it's not float16?
convert .safetensors to .ckpt when using invokeai
```py
# nstw.py - for when No SafeTensors Work
import os
import argparse
try:
from safetensors.torch import load_file, save_file
import torch
except ModuleNotFoundError as e:
print(e)
print("\nThis script should be run from within your InvokeAI environment and also needs safetensors installed there.")
print("This can typically be done with pip install safetensors with the environment activated.")
print("If you've used the automated installer, option 3 from invoke.sh/.bat will be the place to do this.\n")
parser = argparse.ArgumentParser(description="Convert safetensors to ckpt for InvokeAI")
parser.add_argument('filename', type=str, help="the .safetensors filename to convert")
args = parser.parse_args()
def convert(filename):
"""converts between safetensors and pickle"""
name, ext = os.path.splitext(filename)
outext = ".ckpt"
if ext == ".safetensors":
try:
input = load_file(filename, device='cpu')
print("loaded file")
except Exception as e:
print(f"Could not load file: {e}")
print(f"Converting {filename} to {name}{outext}...")
with open(f"{name}{outext}", "wb") as f:
torch.save(input, f)
print("done!")
else:
print(f"Sorry, the input file {filename} doesn't have the .safetensors extension.")
if name == "__main__":
convert(args.filename)
```
example: python nstw.py blablabla.safetensors
output: blablabla.ckpt



















