contact info

This commit is contained in:
Johannes Stelzer 2023-01-11 12:58:59 +01:00
parent ea68d1fdef
commit e50f713479
8 changed files with 13 additions and 10 deletions

View File

@ -1,5 +1,5 @@
# Copyright 2022 Lunar Ring. All rights reserved.
# Written by Johannes Stelzer @j_stelzer
# Written by Johannes Stelzer, email stelzer@lunar-ring.ai twitter @j_stelzer
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
# Copyright 2022 Lunar Ring. All rights reserved.
# Written by Johannes Stelzer @j_stelzer
# Written by Johannes Stelzer, email stelzer@lunar-ring.ai twitter @j_stelzer
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
# Copyright 2022 Lunar Ring. All rights reserved.
# Written by Johannes Stelzer @j_stelzer
# Written by Johannes Stelzer, email stelzer@lunar-ring.ai twitter @j_stelzer
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
# Copyright 2022 Lunar Ring. All rights reserved.
# Written by Johannes Stelzer @j_stelzer
# Written by Johannes Stelzer, email stelzer@lunar-ring.ai twitter @j_stelzer
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
# Copyright 2022 Lunar Ring. All rights reserved.
# Written by Johannes Stelzer @j_stelzer
# Written by Johannes Stelzer, email stelzer@lunar-ring.ai twitter @j_stelzer
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
# Copyright 2022 Lunar Ring. All rights reserved.
# Written by Johannes Stelzer @j_stelzer
# Written by Johannes Stelzer, email stelzer@lunar-ring.ai twitter @j_stelzer
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
# Copyright 2022 Lunar Ring. All rights reserved.
# Written by Johannes Stelzer @j_stelzer
# Written by Johannes Stelzer, email stelzer@lunar-ring.ai twitter @j_stelzer
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
# Copyright 2022 Lunar Ring. All rights reserved.
# Written by Johannes Stelzer @j_stelzer
# Written by Johannes Stelzer, email stelzer@lunar-ring.ai twitter @j_stelzer
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@ -577,9 +577,12 @@ if __name__ == "__main__":
self = StableDiffusionHolder(fp_ckpt, fp_config, num_inference_steps)
#%%
prompt = "painting of a house"
self.width = 1536
self.height = 768
prompt = "360 degree equirectangular, a huge rocky hill full of pianos and keyboards, musical instruments, cinematic, masterpiece 8 k, artstation"
self.set_negative_prompt("out of frame, faces, rendering, blurry")
te = self.get_text_embedding(prompt)
img = self.run_diffusion_standard(te, return_image=True)
Image.fromarray(img).show()