Open3D-PointNet2-Semantic3D icon indicating copy to clipboard operation
Open3D-PointNet2-Semantic3D copied to clipboard

about the version of python and tensorflow

Open fenglupeter opened this issue 6 years ago • 4 comments

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!

fenglupeter avatar Feb 17 '19 08:02 fenglupeter

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

yulongyu avatar Mar 22 '19 00:03 yulongyu

Right, Python 3 is needed.

yxlao avatar Mar 30 '19 23:03 yxlao

What would it take to move to tf 2.0? Any known limitation? Just wondering. integration with Keras is always attractive.

bw4sz avatar Jun 20 '19 03:06 bw4sz

@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.

stjohn909 avatar Jan 24 '20 20:01 stjohn909