8000 Add support for differentiable LR in SGD + test v2.0 by EmmettBicker · Pull Request #143510 · pytorch/pytorch · GitHub
[go: up one dir, main page]

Skip to content

Add support for differentiable LR in SGD + test v2.0 #143510

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 10 commits into from
Prev Previous commit
remove unnecessary from __future__ import
  • Loading branch information
EmmettBicker committed Dec 19, 2024
commit ae57bfe2d066ef4edcf12b0080f918f38360702b
2 changes: 0 additions & 2 deletions torch/optim/sgd.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# mypy: allow-untyped-defs
r"""Implementation for Stochastic Gradient Descent optimizer."""
from __future__ import annotations

from typing import cast, List, Optional, Union

import torch
Expand Down
Loading
0