You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
I am trying to run the code on Google Colabs.
I am using CUDA 8.0 version and Tensorflow 1.0.
I was able to compile all the .sh files with no errors but few warnings.But I am unable to train with main.py because of the following error.
File "main.py", line 10, in
import model_generator2_2new6 as MODEL_GEN
File "/content/gdrive/My Drive/PU-Net/code/model_generator2_2new6.py", line 3, in
from utils.pointnet_util import pointnet_sa_module,pointnet_fp_module
File "/content/gdrive/My Drive/PU-Net/code/utils/pointnet_util.py", line 9, in
from tf_ops.sampling.tf_sampling import farthest_point_sample, gather_point
File "/content/gdrive/My Drive/PU-Net/code/tf_ops/sampling/tf_sampling.py", line 12, in
sampling_module=tf.load_op_library(os.path.join(BASE_DIR, 'tf_sampling_so.so'))
File "/usr/local/lib/python3.6/dist-packages/tensorflow/python/framework/load_library.py", line 64, in load_op_library
None, None, error_msg, error_code)
tensorflow.python.framework.errors_impl.NotFoundError: libtensorflow_framework.so: cannot open shared object file: No such file or directory
The text was updated successfully, but these errors were encountered:
Hello Nimisha,
hope you are doing great
The error is there is no shared library in the sampling directory
You have to build a compatible cuda version on your system and try running it
I'm curious if you suceed on running the code on colab. If you did, I'd like to get some information about how you compiled the files. I'm struggling of tensorflow_framework too.
Hello,
I am trying to run the code on Google Colabs.
I am using CUDA 8.0 version and Tensorflow 1.0.
I was able to compile all the .sh files with no errors but few warnings.But I am unable to train with main.py because of the following error.
File "main.py", line 10, in
import model_generator2_2new6 as MODEL_GEN
File "/content/gdrive/My Drive/PU-Net/code/model_generator2_2new6.py", line 3, in
from utils.pointnet_util import pointnet_sa_module,pointnet_fp_module
File "/content/gdrive/My Drive/PU-Net/code/utils/pointnet_util.py", line 9, in
from tf_ops.sampling.tf_sampling import farthest_point_sample, gather_point
File "/content/gdrive/My Drive/PU-Net/code/tf_ops/sampling/tf_sampling.py", line 12, in
sampling_module=tf.load_op_library(os.path.join(BASE_DIR, 'tf_sampling_so.so'))
File "/usr/local/lib/python3.6/dist-packages/tensorflow/python/framework/load_library.py", line 64, in load_op_library
None, None, error_msg, error_code)
tensorflow.python.framework.errors_impl.NotFoundError: libtensorflow_framework.so: cannot open shared object file: No such file or directory
The text was updated successfully, but these errors were encountered: