當前位置: 首頁>>代碼示例>>Python>>正文


Python Parallel.astype方法代碼示例

本文整理匯總了Python中joblib.Parallel.astype方法的典型用法代碼示例。如果您正苦於以下問題:Python Parallel.astype方法的具體用法?Python Parallel.astype怎麽用?Python Parallel.astype使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在joblib.Parallel的用法示例。


在下文中一共展示了Parallel.astype方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: extract_all_class_features

# 需要導入模塊: from joblib import Parallel [as 別名]
# 或者: from joblib.Parallel import astype [as 別名]
def extract_all_class_features(dataset, n_jobs=1, stride=5, patch_size=10):
    """Extract masked features from all dataset images, return features and labels"""
    cns = []
    labels = []
    for (label, cls) in enumerate(dataset.classes):
        print 'Extracting masked CNs from class {}'.format(cls)
        hists = Parallel(n_jobs=n_jobs)(delayed(extract_masked_cns)(imname, maskname) for (imname, maskname) in dataset.get_class_images(cls))
        hists = np.vstack(hists)
        labels.append(label * np.ones((len(hists),), dtype=np.float32))
        cns.append(hists.astype(np.float32))
    
    # Stack lists in numpy arrays.
    return (cns, labels)
開發者ID:bmagyar,項目名稱:segmented_object_recognition,代碼行數:15,代碼來源:PythonCN.py


注:本文中的joblib.Parallel.astype方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。