本文整理汇总了Python中shogun.Features.RealFeatures.astype方法的典型用法代码示例。如果您正苦于以下问题:Python RealFeatures.astype方法的具体用法?Python RealFeatures.astype怎么用?Python RealFeatures.astype使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类shogun.Features.RealFeatures
的用法示例。
在下文中一共展示了RealFeatures.astype方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: prepare_feats
# 需要导入模块: from shogun.Features import RealFeatures [as 别名]
# 或者: from shogun.Features.RealFeatures import astype [as 别名]
def prepare_feats(desc, l=2, as_shogun=False):
if l==2: desc = np.sqrt(desc) #bias not afected by sqrt
norms = np.apply_along_axis(np.linalg.norm, 0, desc[:-1,:], l) #leave bias alone
np.seterr(divide='ignore', invalid='ignore')
desc[:-1,:]=desc[:-1,:]/norms #leave bias alone
np.seterr(divide='warn', invalid='warn')
if l==1: desc=desc[:-1,:] #removing bias dim if L1 -> nonlinear TODO find better way...
desc[np.isnan(desc)]=0 #handle NaNs
if as_shogun:
desc=RealFeatures(desc.astype('float'))
return desc