我正在使用此dataset。
df = pd.read_csv('DataSets/pd_speech_features.csv',header=None)
print("Taking pd_speech_features data as input data")
dim = df.shape[1]
data = df.iloc[2:750, 2:dim-1]
print(data.describe())
#converting to numpy array
data = np.array(data)
print(data.dtype)
哪个给我dtype作为“对象”。我想知道为什么会这样。我错过了重要的事情吗?我尝试传递'dtype = np.float32',这既无济于事,并引发一条错误提示'无法安全地将str转换为float32'。
请让我知道是否应该添加更多信息。 谢谢!