Closed ArghyaChatterjee closed 1 year ago
Which version of python are you using?
@TontonTremblay python3.
It looks like you have a problem with f string, which are not supported in python2
If you do not run the generate script, does it work?
@TontonTremblay , yes it works. I think I made my default python as python 2 for some other projects which affected this one. So, I made it back to python3 when calling python. Thanks.
BTW, inside generate_dataset.py, what does this line mean:
'--nb_objects',str(int(random.uniform(50,75))),
This was giving some trouble. My model was a bit big so probably it was getting memory error to randomize bigger models with bigger numbers.
Yeah these values are pretty high. it samples an integer between 50 and 75 and will load that many 3d models as distractors. This will take a while to load.
Hello, I am trying to generate synthetic dataset using nvisii. Here is how I am generating a single file:
But when I try the bulk datageneration pipeline, I get the following error:
Here is my generate dataset.py looks like:
and my generate_dataset.py file looks like this:
I am stuck into this for quite sometime. Can you tell me how can I fix it ?