I hereby claim:
- I am hatzel on github.
- I am hansole (https://keybase.io/hansole) on keybase.
- I have a public key ASCZPS-MKmwW2ddrPMvwzpbiNlaSKQMtZP79RqrfR4jNfAo
To claim this, I am signing this object:
var DBus = require('../'); | |
var dbus = new DBus(); | |
function Type(signature, name) { | |
return { type: signature, name: name }; | |
} | |
var service = dbus.registerService('session', 'test.lol'); | |
var obj = service.createObject('/test/lol'); |
I hereby claim:
To claim this, I am signing this object:
import torch | |
from torch.optim.lr_scheduler import CosineAnnealingLR | |
from torch.optim import SGD | |
import matplotlib.pyplot as plt | |
STEPS = 100 | |
optimizer = SGD([torch.tensor(1)], lr=1) | |
# Use a scheduler of your choice below. | |
# Great for debugging your own schedulers! |