arthur-morgan / README.md
Taka1265's picture
Upload folder using huggingface_hub
227d2dc verified
metadata
license: other
license_name: bespoke-lora-trained-license
license_link: >-
  https://multimodal.art/civitai-licenses?allowNoCredit=True&allowCommercialUse=Image&allowDerivatives=True&allowDifferentLicense=True
tags:
  - text-to-image
  - stable-diffusion
  - lora
  - diffusers
  - template:sd-lora
  - migrated
  - character
  - western art
  - games
  - western people
  - rock star
base_model: runwayml/stable-diffusion-v1-5
instance_prompt: Arthur Morgan
widget:
  - text: ' '
    output:
      url: 548161.jpeg
  - text: 'Arthur Morgan '
    parameters:
      negative_prompt: (worst quality, low quality:1.4)
    output:
      url: 548300.jpeg
  - text: ' '
    output:
      url: 548159.jpeg

Arthur Morgan

Prompt
Prompt
Arthur Morgan
Negative Prompt
(worst quality, low quality:1.4)
Prompt

Model description

Arthur Morgan was born circa 1863 to Beatrice and Lyle Morgan in the northern US. As a child, his mother died of unknown causes, while his father was a petty criminal and outlaw. In 1874, when Arthur was 11 years old, his father was arrested for larceny. Morgan later witnessed his death and, despite a strained relationship with him, still donned his hat and kept a picture of him.

Around 1877, Arthur was found as a 'wild delinquent' and picked up off the streets by Dutch van der Linde and Hosea Matthews.[4] Viewing the pair as surrogate father figures, Arthur came to share Dutch's vision of a life lived free from the constraints of civilization and the rule of law. The pair taught him how to read, write, hunt, fight, shoot, and ride, becoming their first protégé as well as one of the founding members of the Van der Linde gang.

Trigger words

You should use Arthur Morgan to trigger the image generation.

Download model

Weights for this model are available in Safetensors format.

Download them in the Files & versions tab.

Use it with the 🧨 diffusers library

from diffusers import AutoPipelineForText2Image
import torch

device = "cuda" if torch.cuda.is_available() else "cpu"

pipeline = AutoPipelineForText2Image.from_pretrained('runwayml/stable-diffusion-v1-5', torch_dtype=torch.float16).to(device)
pipeline.load_lora_weights('Taka1265/arthur-morgan', weight_name='Morgan.safetensors')
image = pipeline('`Arthur Morgan`').images[0]

For more details, including weighting, merging and fusing LoRAs, check the documentation on loading LoRAs in diffusers