Pixel2Mesh
Pixel2Mesh copied to clipboard
demo.py: error: unrecognized arguments: --image Data/examples/plane.png
hello
i receive an error when i want to run the demo.py : usage: demo.py [-h] [--layer_id LAYER_ID] demo.py: error: unrecognized arguments: --image Data/examples/plane.png
i even changed the tenserflow import to this :
import argparse
parser = argparse.ArgumentParser() parser.add_argument('--layer_id', type=int, default=0, help='Unique ID for the layer')
args = parser.parse_args()
but i still receive it what should i do ? please guide me, thank you for your attention