Skip to content

Instantly share code, notes, and snippets.

View houssamzenati's full-sized avatar
🏠
Working from home

Houssam Zenati houssamzenati

🏠
Working from home
View GitHub Profile
@EndingCredits
EndingCredits / adamirror.py
Last active November 14, 2019 09:26
Quick and dirty tensorflow implementation of Optimistic Mirror Descent for the Adam Optimiser as in https://arxiv.org/abs/1711.00141
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from tensorflow.python.ops import control_flow_ops
from tensorflow.python.ops import math_ops
from tensorflow.python.ops import state_ops
from tensorflow.python.framework import ops
from tensorflow.python.training import optimizer
import tensorflow as tf