princyi / password-protected-zip-file-

This Python script creates a password-protected ZIP file using the pyzipper library. It allows you to specify the files to include in the ZIP and set a password for encryption. The resulting ZIP file requires the provided password to access its contents, providing an additional layer of security.
2 stars 0 forks source link

Demo: Image Generation #32

Open princyi opened 2 months ago

princyi commented 2 months ago

Image Generation https://youtu.be/UQJkVo0sHO4

Image Generation with Generative AI In the demo above, we use Bedrock Playgrounds and Stable Diffusion XL to generate images using an LLM.

The Stable Diffusion model is specifically designed for image generation using text prompts.

The seed, shown in configuration settings, determines the starting point of the generative process.

Using the same seed with the same prompt results in the generation of the exact same image.

Changing the seed while keeping the prompt the same produces different images.

The Stable Diffusion model is deterministic and it will consistently produce the same output (image) for a given input (text prompt) and seed combination.