Daniel Yu Cao

Results 3 issues of Daniel Yu Cao

作者您好,请问model_common_train.py的931行代码 filter_curr_stroke_image_soft = tf.multiply(tf.subtract(1.0, curr_state_soft), curr_stroke_image_large) 这里是不是应该改为 filter_curr_stroke_image_soft = tf.multiply(curr_state_soft, curr_stroke_image_large) 不需要tf.subtract(1.0, curr_state_soft)这个一步操作

Is there a typo in the code on line 73 of bezierae.py ? C = torch.cat([c_final[-1, 0], c_final[-1, 0]], 1) should be changed to C = torch.cat([c_final[-1, 0], c_final[-1, 1]],...

When I run the command "python render_obj.py—-conf ./confs/conf_render_obj_perspective.json," I encounter the error "File "render_obj.py", line 94, in main mesh.vertices *= 0.45 AttributeError: can't set attribute." How can I solve this...