Skip to content
This repository has been archived by the owner on Nov 22, 2022. It is now read-only.

Fix Circle CI build_docs error #959

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions pytext/optimizer/radam.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@

class RAdam(Optimizer, PT_Optimizer):
"""Implements rectified adam as derived in the following paper:
"On the Variance of the Adaptive Learning Rate and Beyond"
(https://arxiv.org/abs/1908.03265)
"On the Variance of the Adaptive Learning Rate and Beyond"
(https://arxiv.org/abs/1908.03265)

This code is mostly a direct copy-paste of the code provided by the authors here:
https://github.com/LiyuanLucasLiu/RAdam/blob/master/radam.py
This code is mostly a direct copy-paste of the code provided by the authors here:
https://github.com/LiyuanLucasLiu/RAdam/blob/master/radam.py
"""

class Config(Optimizer.Config):
Expand Down