Skip to content

Instantly share code, notes, and snippets.

View remykarem's full-sized avatar
🦀
Focusing

Remy remykarem

🦀
Focusing
View GitHub Profile
\documentclass[8pt]{article}
\usepackage[usenames]{color} %used for font color
\usepackage{amssymb} %maths
\usepackage{amsmath} %maths
%\usepackage[utf8]{inputenc} %useful to type directly diacritic characters
\begin{document}
\begin{align*}
\text{Vanilla SGD} \\
w_{t+1} &= w_t - \alpha \frac{\partial L}{\partial w_t} \\
\text{Momentum} \\
\documentclass[10pt]{article}
\usepackage[usenames]{color} %used for font color
\usepackage{amssymb} %maths
\usepackage{amsmath} %maths
\usepackage[utf8]{inputenc} %useful to type directly diacritic characters
\begin{document}
\begin{align*}%w_{t+1} = w_t - \alpha_t \frac{\partial L}{\partial w_t}
%Exponential
%\alpha_t &= \alpha_0 \cdot k^t \\
%\alpha_t &= \alpha_0 \cdot k^{\lfloor \frac{t}{S} \rfloor} \\