当前位置: 首页>>代码示例>>Python>>正文


Python Parallel.mean方法代码示例

本文整理汇总了Python中joblib.Parallel.mean方法的典型用法代码示例。如果您正苦于以下问题:Python Parallel.mean方法的具体用法?Python Parallel.mean怎么用?Python Parallel.mean使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在joblib.Parallel的用法示例。


在下文中一共展示了Parallel.mean方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: count_hit

# 需要导入模块: from joblib import Parallel [as 别名]
# 或者: from joblib.Parallel import mean [as 别名]
                    ch_r += count_hit(ypf, ytf)
                    lytf += len(ytf)
                    lypf += len(ypf)
                if lytf == 0:
                    print('Warning: No steps annotation for', ex.id)
                    ch_r, lytf = 0, 1
                if lypf == 0:
                    ch_p, lypf = 0, 1
                return [ch_r/lytf, ch_p/lypf]

            del_PR = delayed(PR)

            PRS = Parallel(n_jobs=-2)(del_PR(ex) for ex in range(N))
            PRS = np.array([prs for prs in PRS if prs is not None])
            t_batch = time()-t_start
            score = list(PRS.mean(axis=0))
            score += list(PRS.std(axis=0))

            res['results'] += [score]
            res['patterns'] += [patterns]
        results += [res]
        t_batch = time() - t_start
        print('-'*79)
        print('Batch : {:03}/{:03}'.format(simu, n_batch))
        print('Time batch : {:.2f}s'.format(t_batch))

        print('Train: {}, Test: {}'.format(c_train[0], c_test[0]))
        print('Score: {0:.2f}({2:.2f}), {1:.2f} ({3:.2f})'
              ''.format(*(np.mean(res['results'], axis=0))))
        print('-'*79+'\n\n')
np.save('save_simu/cross_class_IEEE.npy', results)
开发者ID:jjmantilla,项目名称:FilesM,代码行数:33,代码来源:cross_class_IEEE.py


注:本文中的joblib.Parallel.mean方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。