xinyu04

导航

上一页 1 ··· 26 27 28 29 30

2022年4月28日 #

Xavier Initialization, Kaming Initialization 权重初始化

摘要: Xavier Initialization (\(\text{Understanding the difficulty of training deep feedforward neural networks}\)) \(\text{Goal: The goal of Xavier Initiali 阅读全文

posted @ 2022-04-28 05:34 Blackzxy 阅读(63) 评论(0) 推荐(0) 编辑

LiberOJ 10176 最大连续和 单调队列优化DP

摘要: 题目描述 给你一个长度为$n$的整数序列{\(A_1,A_2,...,A_n\)},要求从中找出一段连续的长度不超过$m$的非空子序列,使得这个序列的和最大。 输入格式 第一行为两个整数$n,m$; 第二行为$n$个用空格分开的整数序列,每个数的绝对值都小于$1000$ 。 输出格式 仅一个整数,表 阅读全文

posted @ 2022-04-28 02:18 Blackzxy 阅读(21) 评论(0) 推荐(0) 编辑

2022年4月27日 #

Loj #10177 USACO 2011 Open Gold 修剪草坪 单调队列优化DP

摘要: 在一年前赢得了小镇的最佳草坪比赛后,FJ 变得很懒,再也没有修剪过草坪。现在,新一轮的最佳草坪比赛又开始了,FJ 希望能够再次夺冠。 然而,FJ 的草坪非常脏乱,因此,FJ 只能够让他的奶牛来完成这项工作。FJ 有$N$只排成一排的奶牛,编号为$1$到$N$ 。每只奶牛的效率是不同的,奶牛$i$的效 阅读全文

posted @ 2022-04-27 17:55 Blackzxy 阅读(47) 评论(0) 推荐(0) 编辑

Deep Learning Week1 Notes

摘要: 1. Tensors \(\text{A tensor is a generalized matrix:}\) \(\text{an element of }\mathbb{R^3} \text{ is a 3-dimension vector, but it's a 1-dimension ten 阅读全文

posted @ 2022-04-27 04:10 Blackzxy 阅读(16) 评论(0) 推荐(0) 编辑

2022年4月26日 #

AtCoder Beginner Contest 247 C D E题解

摘要: https://atcoder.jp/contests/abc247/tasks/abc247_c 递归即可解决: #include<iostream> #include<cstdio> #include<algorithm> #include<cstdlib> #include<cstring> 阅读全文

posted @ 2022-04-26 01:31 Blackzxy 阅读(52) 评论(0) 推荐(0) 编辑

2022年4月25日 #

机器学习中的优化 Optimization Chapter 2 Gradient Descent(1)

摘要: 1. Step of Gradient descent \[ \begin{equation} x_{t+1} = x_t-\gamma \nabla f(x_t) \end{equation} \] 2. Vanilla Analysis \(\text{Let }{\bf g_t} = \nab 阅读全文

posted @ 2022-04-25 06:12 Blackzxy 阅读(24) 评论(0) 推荐(0) 编辑

2022年4月23日 #

Deep Learning 深度学习 Notes Chapter 3 Prob and Information Theory

摘要: 1. Marginal Prob \[ \begin{equation} P(x=a) = \sum_y P(x=a,y=y) \end{equation} \] \(\text{For continuous variables, we have:}\) \[ \begin{equation} p( 阅读全文

posted @ 2022-04-23 15:30 Blackzxy 阅读(28) 评论(0) 推荐(0) 编辑

Deep Learning 深度学习 Notes Chapter 2 Linear Algebra

摘要: 1. Multiplying Matrices and Vector \(C=AB\), \(\text{The operation is defined by:}\) \[ \begin{equation} C_{i,j} = \sum_k A_{i,k}B_{k,j} \end{equation 阅读全文

posted @ 2022-04-23 01:31 Blackzxy 阅读(34) 评论(0) 推荐(0) 编辑

2022年4月22日 #

机器学习中的优化 Optimization Chapter 1 Mathematics Background(数学基础)

摘要: 1. Notation ||\(x\)||: Euclidean norm (\(l_2\) norm), \[ ||x||^2 = x^Tx= \sum_{i=1}^dx_i^2 \] \(\mathbb{R_+} = \{ x\in \mathbb{R}: x\geq 0 \}\) 2. Cau 阅读全文

posted @ 2022-04-22 13:53 Blackzxy 阅读(34) 评论(0) 推荐(0) 编辑

上一页 1 ··· 26 27 28 29 30