Alfredo Maussa

Results 4 comments of Alfredo Maussa

> I'm not at my home to test anything. I apologize that the support is limited > Here is what I changed to get it to compile with a random...

> Removing these lines from MPU6050_6Axis_MotionApps20.h should solve the problem: > > ``` > typedef int8_t prog_int8_t; > typedef uint8_t prog_uint8_t; > typedef int16_t prog_int16_t; > typedef uint16_t prog_uint16_t; >...

i changed this line of code and worked: > prediction = model.predict([np.einsum('ij->ji', source).reshape((1,30,37)), s0[:1], c0[:1]])

Properly assigning the kernel, before was a list containing the dimensions [m, n], after change becomes a matrix with (m, n) shape `np.ones ([m, n])`. propose to change: from: ```...