Пример #1
0
 def testClampFloat(self):
     t1 = TensorBase(np.arange(1, step=0.1))
     t2 = t1.clamp(minimum=0.2, maximum=0.7)
     expected_tensor = TensorBase(np.array([0.2, 0.2, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.7, 0.7]))
     self.assertEqual(t2, expected_tensor)
Пример #2
0
 def testClampInt(self):
     t1 = TensorBase(np.arange(10))
     t2 = t1.clamp(minimum=2, maximum=7)
     expected_tensor = TensorBase(np.array([2, 2, 2, 3, 4, 5, 6, 7, 7, 7]))
     self.assertEqual(t2, expected_tensor)