parser=argparse.ArgumentParser(description="Generate shapes with the ShapeGenerator.")
parser=argparse.ArgumentParser(description="Generate shapes with the ShapeGenerator.")
parser.add_argument("--output_dir",type=str,required=True,help="The directory to save generated shapes.")
parser.add_argument("--output_dir",type=str,required=True,help="The directory to save generated shapes.")
parser.add_argument("--batch_size",type=int,default=2,help="The number of batches for shap-e. the higher the batch size the longer it will take to process but will output a more refined mesh.")
parser.add_argument("--batch_size",type=int,default=4,help="The number of batches for shap-e. the higher the batch size the longer it will take to process but will output a more refined mesh.")
parser.add_argument("--step_size",type=int,default=64,help="The number of steps/iterations for shap-e. the higher the step size the longer it will take to process but will output a more refined mesh.")
parser.add_argument("--step_size",type=int,default=64,help="The number of steps/iterations for shap-e. the higher the step size the longer it will take to process but will output a more refined mesh.")
parser.add_argument("--guidance_scale",type=int,default=30,help="The guidance scale in context to the text prompt. The higher this value, the model will generate something closer to the text description (CLIP).")
parser.add_argument("--guidance_scale",type=int,default=30,help="The guidance scale in context to the text prompt. The higher this value, the model will generate something closer to the text description (CLIP).")