Hi. Thanks a lot for releasing the code. I am trying to understand the details of the code. However, I am a bit fresh on using tensorflow, and would like to know if I could ask you some basic knowledge. For example, I would like to check the value of the following dX in
#model the shape deformation as a displacement vector field
dX = tf.Variable((0*Xori).astype(dtype) );
scaleX = tf.Variable(1,dtype=dtype); #not used in shape alignment
graph.input_X = tf.placeholder(shape=dX.shape,dtype=dtype);
graph.assign_X = tf.assign(dX, graph.input_X-Xori*scaleX).op;
I could just read it if using pycharm if it is a pytorch tensor. May I know if I could also do this here? I tried to google the answer, but all I found does not work. Thanks a lot.
Hi. Thanks a lot for releasing the code. I am trying to understand the details of the code. However, I am a bit fresh on using tensorflow, and would like to know if I could ask you some basic knowledge. For example, I would like to check the value of the following
dXinI could just read it if using pycharm if it is a pytorch tensor. May I know if I could also do this here? I tried to google the answer, but all I found does not work. Thanks a lot.