Skip to content

Latest commit

 

History

History
76 lines (56 loc) · 3.1 KB

File metadata and controls

76 lines (56 loc) · 3.1 KB

DigiArt - Stable Diffusion

Generate AI image from text, only for personal use

Please refrain from using the generated images from this project on any social networks or attempting to resell them, as this could result in legal action. The purpose of this project is to evaluate the effectiveness of stable diffusion and it is built upon the clipdro demo webapp found online

License Python 3.9 ClipDrop Stable Diffusion

Original Owner: ClipDrop

Please note that the images generated by this project are not intended for commercial use. Usage of the generated images on social networks or any attempts to resell them may result in legal action. The main purpose of this project is to evaluate the effectiveness of stable diffusion. The project is built upon the ClipDrop demo web app found online.

The utilization of offensive language, as well as generating images involving humans and animals, is strictly not allowed.


How to Use

Clone the Repository and navigate to that folder

git clone https://github.com/FareedKhan-dev/digiart-Powerful-AI-Image-generator
cd digiart-Powerful-AI-Image-generator

Create and Activate the Virtual Environment

python -m venv .myvenvname
source .myvenvname/bin/activate

Install Requirements

pip install -r requirements.txt

Running Digiart

To generate images using Digiart, run the following command

python digiart_diffusion.py --prompt "your_input" --c_time 400

Required two arguements:

  • --prompt required (input prompt) example: tornado approaching village
  • --c_time (optional) but important to tune (the computation time) the higher the value the more it takes time to generate but possibility of good result, lesser value may result in no image.
c_time Value
60-80 Recommended value for good internet speed
100-120 Recommended value for below average internet speed
150-2000 Recommended value for slow internet speed

Example A:

python digiart_diffusion.py --prompt "tornado approaching village" --c_time 400

The generated images will be saved in the static folder of the current directory once the code execution completes.

tornado images

Please note that the generated images contain a copyright text to prevent misuse or selling of them.

Example B:

python digiart_diffusion.py --prompt "raining in india" --c_time 400

tornado images


License