摘要: 1、 the YOLO model (YOLO ,you only look once) (1)We will use 5 anchor boxes. So you can think of the YOLO architecture as the following: IMAGE (m, 608, 阅读全文
posted @ 2018-03-26 23:49 AI菌 阅读(941) 评论(0) 推荐(0) 编辑
摘要: 一、Emojifier-V1 模型 1、 模型 (1)前向传播过程: (2)损失函数:计算the cross-entropy cost (3)反向传播过程:计算dW,db (4) 参数更新: the stochastic gradient descent algorithm 2、输入输出数据类型 ( 阅读全文
posted @ 2018-03-26 20:40 AI菌 阅读(1527) 评论(0) 推荐(0) 编辑
摘要: 一、人脸验证问题(face verification)与人脸识别问题(face recognition) 1、人脸验证问题(face verification): 输入 数据库 Image Image ID ID 通过输入的ID找到数据库里的Image,然后将Image与输入的Image比较,判断图 阅读全文
posted @ 2018-03-26 19:40 AI菌 阅读(2557) 评论(1) 推荐(0) 编辑
摘要: 为了区分三种乘法运算的规则,具体分析如下: import numpy as np 1. np.multiply()函数 函数作用 数组和矩阵对应位置相乘,输出与相乘数组/矩阵的大小一致 1.1数组场景 【code】 A = np.arange(1,5).reshape(2,2) A 【result】 阅读全文
posted @ 2018-03-26 10:26 AI菌 阅读(27313) 评论(0) 推荐(0) 编辑