The title says it all is about as generic as it can be this model was made starting off with the original flux 1 D and prompting techniques to produce grainy and digital image artifacts typical of a cell phone starting with only one generation trained off of that making my last model generating even better results with that refining in Photoshop to add more of a cell phone film to it comes this ham fisted still cold on the dish rushed test model just like when grandmother makes thingsgiving dinner and the turkey is only half baked this is intended for people to expand upon and is available for website use training data is public
Weights for this model are available in Safetensors format.
Download them in the Files & versions tab.
1from diffusers import AutoPipelineForText2Image
2import torch
3
4device = "cuda" if torch.cuda.is_available() else "cpu"
5
6pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to(device)
7pipe.load_lora_weights('0xealaa/a-generic-woman-char-selfie-realism', weight_name='90s.safetensors')
8image = pipeline('Your custom prompt').images[0]
For more details, including weighting, merging and fusing LoRAs, check the
documentation on loading LoRAs in diffusers