01 2018 档案

摘要:1 from tensorflow.contrib.keras.api.keras.preprocessing.image import ImageDataGenerator,img_to_array 2 from tensorflow.contrib.keras.api.keras.models 阅读全文
posted @ 2018-01-31 11:32 ayew 阅读(233) 评论(0) 推荐(0)
摘要:写了一个工具函数很开心 阅读全文
posted @ 2018-01-30 17:18 ayew 阅读(217) 评论(0) 推荐(0)
摘要:附上自己从wiki.mat中提取出来的标签 https://pan.baidu.com/s/1dGT6ghV 再附上wiki的数据集地址 https://data.vision.ee.ethz.ch/cvl/rrothe/imdb-wiki/ 阅读全文
posted @ 2018-01-24 10:30 ayew 阅读(469) 评论(0) 推荐(0)
摘要:附上自己从wiki.mat中提取出来的标签 https://pan.baidu.com/s/1dGT6ghV 再附上wiki的数据集地址 https://data.vision.ee.ethz.ch/cvl/rrothe/imdb-wiki/ 阅读全文
posted @ 2018-01-24 09:59 ayew 阅读(1552) 评论(0) 推荐(0)
摘要:Mtcnn进行人脸剪裁和对齐 阅读全文
posted @ 2018-01-18 22:18 ayew 阅读(1488) 评论(0) 推荐(0)
摘要:1 import os 2 fin = 'D:\\data_sex\\' 3 fout = 'D:\\data_sex\\' 4 print(os.listdir(fin)) 5 for file in os.listdir(fin): 6 file_fullname = fin + '\\' +f 阅读全文
posted @ 2018-01-16 15:08 ayew 阅读(431) 评论(0) 推荐(0)
摘要:1 from scipy import misc 2 import tensorflow as tf 3 import detect_face 4 import cv2 5 import matplotlib.pyplot as plt 6 # %pylab inline 7 8 minsize = 20 # minimum size of face 9 thresho... 阅读全文
posted @ 2018-01-12 11:03 ayew 阅读(3085) 评论(1) 推荐(0)
摘要:https://pypi.python.org/simple/ http://www.lfd.uci.edu/~gohlke/pythonlibs/ 阅读全文
posted @ 2018-01-11 10:42 ayew 阅读(270) 评论(0) 推荐(0)
摘要:Keras是基于Theano的一个深度学习框架,它的设计参考了Torch,用Python语言编写,是一个高度模块化的神经网络库,支持GPU和CPU。使用文档在这:http://keras.io/,中文文档在这:http://keras-cn.readthedocs.io/en/latest/ ,这个 阅读全文
posted @ 2018-01-07 17:13 ayew 阅读(12102) 评论(0) 推荐(1)
摘要:发现了一个非常棒的pyqt5的例子集 https://github.com/892768447/PyQt 各种各样的PyQt测试和例子 [Python3.4.4 or Python3.5][PyQt5] 1.常见例子 1.1 右下角弹出框 1.2 单实例应用 1.3 字体测试 1.4 程序重启 1. 阅读全文
posted @ 2018-01-05 17:02 ayew 阅读(18295) 评论(0) 推荐(2)