multimodalart's picture
Upload folder using huggingface_hub
5fc4a27
metadata
license: other
license_name: bespoke-lora-trained-license
license_link: >-
  https://multimodal.art/civitai-licenses?allowNoCredit=True&allowCommercialUse=Sell&allowDerivatives=True&allowDifferentLicense=True
tags:
  - text-to-image
  - stable-diffusion
  - lora
  - diffusers
  - template:sd-lora
  - city
  - scifi
  - buildings
  - elf
  - beautiful
  - fantasy
  - building
  - elven
  - elven architecture
base_model: stabilityai/stable-diffusion-xl-base-1.0
instance_prompt: elven architecture
widget:
  - text: >-
      photograph, cinematic color grading,  elvish architecture, cyberpunk,
      wonderous scifi subterranean city beyond the beginning of the multiverse
    output:
      url: 4648488.jpeg
  - text: ' elvish architecture, steampunk, scifi, Empyrean,solemn fantasy megacity at the beginning of reality'
    output:
      url: 4648451.jpeg
  - text: >-
      atrium with hanging plants in a dystopian,Ephemeral fantasy megacity edge
      of time, masterpiece, by Vitaly Bulgarov
    output:
      url: 4648384.jpeg
  - text: ' elvish architecture, scifi, noon, scenery, in a Lonely Hallucinogenic Mushroom Field'
    output:
      url: 4648388.jpeg
  - text: ' elvish architecture, cyberpunk, anime style, elven, slim, '
    output:
      url: 4648671.jpeg
  - text: ' elven, slim, 1boy, man, ruggedly handsome, golden hour, architecture, "at the Glittering timeless Apocalypse"'
    output:
      url: 4648389.jpeg
  - text: ' elvish architecture, fantasy, fantasy, Tropical Rainforest'
    output:
      url: 4648615.jpeg
  - text: ' elvish architecture, fantasy, scifi, a Preternatural fantasy cosmic arcology at the beginning of the multiverse, masterpiece, by Daniel Dociu'
    output:
      url: 4648392.jpeg
  - text: ' elvish architecture, steampunk, elf, slim, 1girl, woman, beautiful, natural sunlight, interior, in a barren scenic overlook'
    output:
      url: 4648395.jpeg
  - text: fantasy, infinite,solemn scifi megastructure outside of time
    output:
      url: 4648398.jpeg

Envy Elven Architecture XL 01

Prompt
photograph, cinematic color grading, elvish architecture, cyberpunk, wonderous scifi subterranean city beyond the beginning of the multiverse
Prompt
elvish architecture, steampunk, scifi, Empyrean,solemn fantasy megacity at the beginning of reality
Prompt
atrium with hanging plants in a dystopian,Ephemeral fantasy megacity edge of time, masterpiece, by Vitaly Bulgarov
Prompt
elvish architecture, scifi, noon, scenery, in a Lonely Hallucinogenic Mushroom Field
Prompt
elvish architecture, cyberpunk, anime style, elven, slim,
Prompt
elven, slim, 1boy, man, ruggedly handsome, golden hour, architecture, "at the Glittering timeless Apocalypse"
Prompt
elvish architecture, fantasy, fantasy, Tropical Rainforest
Prompt
elvish architecture, fantasy, scifi, a Preternatural fantasy cosmic arcology at the beginning of the multiverse, masterpiece, by Daniel Dociu
Prompt
elvish architecture, steampunk, elf, slim, 1girl, woman, beautiful, natural sunlight, interior, in a barren scenic overlook
Prompt
fantasy, infinite,solemn scifi megastructure outside of time

Model description

Buildings and cities in an elvish architectural style.

There are two ways to use this:

  • Use "elven architecture" as a trigger word and set the power to 1 for a very elvish look.

  • Omit the trigger word and set the power to 5 for more variety.

Trigger words

You should use elven architecture 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

pipeline = AutoPipelineForText2Image.from_pretrained('stabilityai/stable-diffusion-xl-base-1.0', torch_dtype=torch.float16).to('cuda')
pipeline.load_lora_weights('e-n-v-y/envy-elven-architecture-xl-01', weight_name='EnvyElvishArchitectureXL01.safetensors')
image = pipeline('fantasy, infinite,solemn scifi megastructure outside of time').images[0]

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