11 2015 档案
Python: Neural Networks
摘要:这是用Python实现的Neural Networks, 基于Python 2.7.9, numpy, matplotlib。 代码来源于斯坦福大学的课程: http://cs231n.github.io/neural-networks-case-study/ 基本...
阅读全文
PS 滤镜— — sparkle 效果
摘要:clc; clear all; close all; addpath('E:\PhotoShop Algortihm\Image Processing\PS Algorithm'); I=imread('4.jpg'); Imag...
阅读全文
PS 滤镜— — 镜头光晕
摘要:clc; clear all; close all; addpath('E:\PhotoShop Algortihm\Image Processing\PS Algorithm'); I=imread('4.jpg'); Imag...
阅读全文
PS 色调— —颜色梯度
摘要:clc; clear all; close all; addpath('E:\PhotoShop Algortihm\Image Processing\PS Algorithm'); I=imread('4.jpg'); Imag...
阅读全文
PS 图像调整— — gain and bias
摘要:clc; clear all; close all; addpath('E:\PhotoShop Algortihm\Image Processing\PS Algorithm'); Image=imread('4.jpg'); ...
阅读全文
Python: Soft_max 分类器
摘要:我们可以建立如下的loss function: Li=−log(pyi)=−log⎛⎝efyi∑jefj⎞⎠L=1N∑iLi+12λ∑k∑lW2k,l下面我们推导loss对W,b的偏导数,我们可以先计算loss对f的偏导数,利用链式法则,我们可以得到:∂Li∂fk=∂...
阅读全文