nevreal commited on
Commit
eca0a2a
·
verified ·
1 Parent(s): 42f9763

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -3
README.md CHANGED
@@ -2,14 +2,15 @@
2
  license: mit
3
  ---
4
 
5
- Explanation:
6
  Argument Parsing: We use the argparse library to accept parameters through the command line like prompt, model, steps, width, and other parameters that were inputs in the Gradio interface.
7
  Image Generation Logic: The function generate_images is the core image generation process, using the provided model, prompt, and settings.
8
  Random Seed: If the seed is -1, it is randomized.
9
- Prefix/Suffix: Supports positive/negative prefixes and suffixes from command-line arguments.
10
 
11
 
12
- How to Run It:
 
13
  Save the above code in a file named image_generation.py.
14
  In your terminal, run:
15
 
 
2
  license: mit
3
  ---
4
 
5
+ # Explanation:
6
  Argument Parsing: We use the argparse library to accept parameters through the command line like prompt, model, steps, width, and other parameters that were inputs in the Gradio interface.
7
  Image Generation Logic: The function generate_images is the core image generation process, using the provided model, prompt, and settings.
8
  Random Seed: If the seed is -1, it is randomized.
9
+ Prefix/Suffix: *Supports positive/negative prefixes and suffixes from command-line arguments.*
10
 
11
 
12
+ # How to Run It:
13
+
14
  Save the above code in a file named image_generation.py.
15
  In your terminal, run:
16