我得到了一个有形状(1,3,300)的numpy数组,我想摆脱第一个轴并获得3 * 300 2D数组。我该怎么办?
我看到了几个这样的问题Qt Quick Controls Styles 要求更复杂的地方。我似乎很简单。有什么方法可以做到吗?
答案 0 :(得分:3)
class Solution(object):
def getSum(self, a, b):
"""
:type a: int
:type b: int
:rtype: int
"""
while b != 0:
carry = a&b
a= a^b
b= carry<<1
return a
?
np.squeeze