惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 【当耐特】
Help Net Security
Help Net Security
P
Proofpoint News Feed
J
Java Code Geeks
爱范儿
爱范儿
Last Week in AI
Last Week in AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
F
Full Disclosure
Google DeepMind News
Google DeepMind News
H
Help Net Security
G
Google Developers Blog
Jina AI
Jina AI
Vercel News
Vercel News
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
L
Lohrmann on Cybersecurity
S
Schneier on Security
Microsoft Azure Blog
Microsoft Azure Blog
IT之家
IT之家
Security Archives - TechRepublic
Security Archives - TechRepublic
阮一峰的网络日志
阮一峰的网络日志
N
News and Events Feed by Topic
GbyAI
GbyAI
B
Blog
O
OpenAI News
博客园_首页
Cisco Talos Blog
Cisco Talos Blog
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
Hacker News: Ask HN
Hacker News: Ask HN
TaoSecurity Blog
TaoSecurity Blog
腾讯CDC
MongoDB | Blog
MongoDB | Blog
M
MIT News - Artificial intelligence
C
Cybersecurity and Infrastructure Security Agency CISA
Cyberwarzone
Cyberwarzone
Webroot Blog
Webroot Blog
Simon Willison's Weblog
Simon Willison's Weblog
Y
Y Combinator Blog
C
Cisco Blogs
A
Arctic Wolf
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
T
The Exploit Database - CXSecurity.com
Security Latest
Security Latest
AI
AI
W
WeLiveSecurity
aimingoo的专栏
aimingoo的专栏
The Register - Security
The Register - Security
Project Zero
Project Zero
H
Hackread – Cybersecurity News, Data Breaches, AI and More
N
Netflix TechBlog - Medium
Blog — PlanetScale
Blog — PlanetScale

Caffe

种草了 GENE CAFE 烘豆机,想尝试一下自己烘豆,各位 V 友有使用过这台机器的吗? - V2EX 分享一个 Caffe2 on iOS 的 demo project caffe 能不能把 transformer 进行“持久化”存储下来?以免每次加载都很耗时 新手试运行了一个 caffe 的 Python 代码,出现这个错误是怎么回事? - V2EX 请问谁有 pycaffe 的教程或者 reference? - V2EX 有人翻译过 caffe 框架的那篇论文么 - V2EX Caffe 里 set_phase_test 是在新版本更名了吗? - V2EX
关于 caffe 中卷积层 filter 的一个小疑问,求解答~~~~ - V2EX
skyduy · 2015-09-10 · via Caffe

各位大神你们好,对于下面的一个 layer 模型:
layer {
  name: "conv1"
  type: "Convolution"
  bottom: "data"
  top: "conv1"

  param { lr_mult: 1   decay_mult: 1 }
  param { lr_mult: 2   decay_mult: 0 }

  convolution_param {
   num_output: 96
   kernel_size: 11
   stride: 4
   weight_filler {type: "gaussian"   std: 0.01 }
   bias_filler   {type: "constant"   value: 0}
 }
}

之前我看了 UFLDL 教程,那里 filter 是事先通过同类的 training set 经过 Sparse Autoencoder 的得出的(模拟人类识别图像时,只有少部分神经活跃),自编码时 loss function 中还有个 KL_divergence 判罚,但这里使用的 loss function 没有该项。
此外,对 filter 进行配置的 weight_filler 和 bias_filler 是什么作用?是进行初始化的吗?
 如果是,那 weight_filter 里面的 type 又是干嘛的?
 如果不是, loss function 和 solvers 都已经给出了,这一项又有什么作用?