tf.concat arguments axis first and values second
xuesongwang opened this issue · 0 comments
Hi there,
First of all, thank you very much for this SUPER amazing project, you have no idea how much efforts I have spent on data preprocessing for Brain Network datasets before I saw this repo,
Just a minor issue regarding tf.concat
function here, for my tensorflow version (1.15.0 + ) the order of arguments should be:
tf.concat( values, axis, name='concat' )
and there are a few places which I refer down below could cause errors, but it shouldn't be hard to find:
gcn_metric_learning/lib/models_siamese.py
Line 474 in 50abd52
gcn_metric_learning/lib/models_siamese.py
Line 724 in 50abd52
gcn_metric_learning/lib/models_siamese.py
Line 783 in 50abd52
Hope that's helpful :)