编程
洲洲_starry
这个作者很懒,什么都没留下…
展开
-
使用python multiprocessing多进程查询mysql(pymysql)
目的应用背景:在做项目的过程中,需要查询mysql中的数据,应为查询较多且需要按顺序返回,未使用多进程查询时单词查询2-3秒,而项目目标是0.5秒左右,所以使用多进程进行处理。Mutliprocessing模块使用概述使用mutliprocessing模块构建多进程 使用pool创建进程池 使用manager().list()完成进程间通信 封装查询库代码import pymysqlfrom multiprocessing import Pool, Process, .原创 2020-12-04 17:49:45 · 2668 阅读 · 2 评论 -
tf.nn.top_k()和tf.reverse()两个函数解决tensor排序问题及代码实现
文章目录tf.nn.top_k()tf.reverse()代码示例在写程序的时候遇到的问题,怎么才能对tensor中的数值进行排序,我们知道在numpy中有sort()函数可以实现这个目的,那对于tensor应该怎样实现呢?经过查询发现使用tf.nn.top_k()和tf.reverse()两个函数可以实现这一目的。下面分别介绍这连个函数tf.nn.top_k()tf.nn.top_k(...原创 2018-11-27 22:17:40 · 2397 阅读 · 0 评论