From df9b4fb0050e0244dc95a84937f2b0828fef4f48 Mon Sep 17 00:00:00 2001 From: erwincoumans Date: Sat, 27 Oct 2018 11:56:04 -0700 Subject: [PATCH] remove printf from demo --- examples/pybullet/tensorflow/humanoid_running.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/pybullet/tensorflow/humanoid_running.py b/examples/pybullet/tensorflow/humanoid_running.py index 3eb71211e..66a130cf2 100644 --- a/examples/pybullet/tensorflow/humanoid_running.py +++ b/examples/pybullet/tensorflow/humanoid_running.py @@ -182,7 +182,7 @@ def demo_run(): for m in range(len(motors)): limit=15 ac = np.clip(actions[m],-limit,limit) - print (ac) + #print (ac) forces[m] = motor_power[m]*ac*0.082 p.setJointMotorControlArray(human, motors,controlMode=p.TORQUE_CONTROL, forces=forces)