Open3D-PointNet2-Semantic3D
Open3D-PointNet2-Semantic3D copied to clipboard
about the version of python and tensorflow
The code can't work under python2.7 and tensorflow-gpu 1.3.
Which version of tensorflow-gpu should i use?
And which version of cuda and cudnn?
Thx!
The original code use python2.7 and tensorflow1.2 but I think current project changed to python3 because i got an error: TypeError: makedirs() got an unexpected keyword argument 'exist_ok'
Please declare the version of tf and python
Right, Python 3 is needed.
What would it take to move to tf 2.0? Any known limitation? Just wondering. integration with Keras is always attractive.
@bw4sz I'm looking at this right now, because I'm playing pin-the-tail-on-the-docker-container to get a working compile and run without segfaults. I thought it might just be easier to port to 2.0, but it's not. It would be a significant refactor to nativize to 2.0 since tf2 does away with numerous things. tf.Session() is one of them, and tf.cross is another, and those are just the two I found before giving up.