Questions tagged [image-generation]

111 questions
0
votes
0 answers

GAN on MNIST digit dataset generating same image after one epoch and not changing after more training

I've been working on a GAN for image synthesis and have been getting the same problem no matter how much I try to change my architecture/optimizers/losses, so I've gone to the mnist dataset to see if the problem stays the same. From what I've seen…
0
votes
1 answer

How to make a Discord bot handle 'requests.post' as a command instead of plain text in Discord

In my python code, im generating prompts using ChatGPT and sending them automatically to the discord bot Midjourney. With the /imagine part that already comes with the generated prompts, it usually commands the bot to create the images thats it's…
0
votes
0 answers

I am using an Image generator api in my app but it is not working in mobile but it is working in android studio emulator (pixel 6 pro api 32)

I am using an Image generator api(reverse proxy) in my app but it is not working in mobile but it is working in android studio emulator (pixel 6 pro api 32). When I click on generate image nothing happens and its progress bar just works and won't…
sajad
  • 11
  • 3
0
votes
0 answers

HTTP Error on running ControlNet in Google Colab

So, I'm installing stable diffusion with google colab Copy of fast_stable_diffusion_AUTOMATIC1111.ipynb - Colaboratory (google.com) and then running ControlNet (All 21GB), I'm getting this error message: HTTPError Traceback (most recent call last)…
0
votes
0 answers

Reasons that affect image generation results in stable diffusion

I use the Diffusers MacOS app that created Hugging Face to generate a image, and I use the diffuser python library to generate image with same parameters, but I got the different result. I kept the following parameters the same in both…
0
votes
0 answers

API Call failing to respond

I am trying to call the chat gpt api (image generation) using the ASYNC Http client> in Android studio I am trying to generate an image based on text input. However i still get a failure whenever i try to call the api. I am still unsure how to go…
Shane
  • 1
0
votes
0 answers

How can I generate images just by inputting a vector into an AI model?

I have a question that may be naive. How can I build an AI model where the input is a vector and the output is a image? For example, in a room, I would like to predict the temperature field of a certain section of the room by controlling the exhaust…
0
votes
0 answers

How to generate preview of a design area for e-commerce product so that customer can preview it?

I have built an e-commerce website. There is a product customization feature. Just like on the sample image. I need to implement the preview feature that is seen on the sample image. While a customer designs his own coaster it should be updated on…
0
votes
0 answers

Getting "Fatal Python error: init_sys_streams: is a directory, cannot continue" while trying to run Stable Diffusion natively on M2 Macbook

I am trying to run Stable Diffusion on Apple Silicon using Core ML and am following the steps as detailed in this article: https://huggingface.co/blog/diffusers-coreml The article asks you to download the model checkpoints to a folder…
0
votes
1 answer

I am attempting to fine-tune the stable diffusion with Dreambooth on myself (my face and body)

I am attempting to fine-tune the stable diffusion with Dreambooth on myself (my face and body), but the results are not satisfactory. I am seeking guidance on the best way to fine-tune stable diffusion in order to generate images of myself in…
0
votes
1 answer

How do I create a multiple word Captcha in Java

I'm trying to create a Captcha image in Java with a phrase or multiple words instead of a single random word. I've tried with some projects like Cage, simplecaptcha and jcaptcha but all of them work only with one word. I expect an output like the…
0
votes
0 answers

"Failed - Network error" on Chrome browser with a PHP generated PNG image

I create an image with PHP and output it in the following way $im = imagecreatetruecolor($w,$h); ... header('Content-type: image/png'); header('Cache-Control: no-store, no-cache'); imagepng($im); imagedestroy($im); If I right click on the image and…
Chris
  • 41
  • 8
0
votes
0 answers

Type Error for Image generation GAN model

I am trying to visualize the final images from the generator model for GAN image generator, everything else worked perfectly. When trying to visualize the images after training the model I am getting TypeError. This is what i was going for image…
0
votes
0 answers

How can I change Keras data to my own image data?

I'm follow this example: https://towardsdatascience.com/image-generation-in-10-minutes-with-generative-adversarial-networks-c2afc56bfa3b He used Keras data tf.keras.datasets.mnist.load_data() How can I change it to my own image data? Thanks!
Modi
  • 1
  • 2
0
votes
0 answers

Image generation from initial pixels and text

Are there any neural networks that would generate an image from the text, but also take a certain number of required pixels as input?