Skip to content

Commit

Permalink
Merge pull request #46 from NexaAI/david/bugfix
Browse files Browse the repository at this point in the history
David/bugfix
  • Loading branch information
zhiyuan8 authored Aug 24, 2024
2 parents dd64168 + c5becf2 commit f6cb30b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 59 deletions.
2 changes: 1 addition & 1 deletion nexa/cli/entry.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def main():
image_group = run_parser.add_argument_group('Image generation options')
image_group.add_argument("-i2i", "--img2img", action="store_true", help="Whether to run image-to-image generation")
image_group.add_argument("-ns", "--num_inference_steps", type=int, help="Number of inference steps")
image_group.add_argument("-np", "--num_images_per_prompt", type=int, deafult=1, help="Number of images to generate per prompt")
image_group.add_argument("-np", "--num_images_per_prompt", type=int, default=1, help="Number of images to generate per prompt")
image_group.add_argument("-H", "--height", type=int, help="Height of the output image")
image_group.add_argument("-W", "--width", type=int, help="Width of the output image")
image_group.add_argument("-g", "--guidance_scale", type=float, help="Guidance scale for diffusion")
Expand Down
58 changes: 0 additions & 58 deletions tests/test_vlm_generation.py

This file was deleted.

0 comments on commit f6cb30b

Please sign in to comment.