-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
About DATA_PATH = 'sklt_data_all' #9
Comments
You need to make a folder named by sklt_data_all, and move the input csv files to the sklt_data_all folder. |
Now, I cannot know the error. |
I just run the code CS_Ensemble TS-LSTM v1_new.py, is this right? |
I think there is config.feature_size error. |
I had no problem when executing the code just before. |
in feature_only_diff_2, |
config.feature_size is 150, which is right not 75. |
thank you very much! |
I need your help. |
Looking forward to your answer. |
If you see "with tf.device(sw_0):" sw_0, sw_1, sw_2, and sw_3 are assigned by gpu0, gpu1, gpu2, and gpu3, respectively. So, you can control the runner assign like this. sw_0 = runner_assign[0] -> sw_0 = '/gpu:0' and another modification is needed like this. gradient_device = ['/gpu:0','/gpu:1','/gpu:2','/gpu:3'] -> gradient_device = ['/gpu:0','/gpu:1','/gpu:2','/gpu:2'] This is an example. You can handle it in the way you want. |
Thank you very much! I have changed it seccussfully! But I have another question, what is the version of cuda about tensorflow-0.11.0 when you run the code of NTUGRB-D? |
maybe it was 7.5. If you have problem of version, you can upgrade tensorflow and cuda. And then, edit some of codes like tf,initializer, tf.concat, etc according to new version of tensorflow. UCLA and UWA is already modified. please refer to that codes on UCLA and UWA datasets. |
Thank you very much! I am very glad to have your help! |
Where is the path of "DATA_PATH = 'sklt_data_all'"?
I can't find it, can you tell me?
I don't know if you are willing to tell me how to execute the NTU code.
I have get .csv form txt files.
Looking forward to your reply.
Now, I face the question is fellowing.
The text was updated successfully, but these errors were encountered: