f-dangel / backpack

BackPACK - a backpropagation package built on top of PyTorch which efficiently computes quantities other than the gradient.
https://backpack.pt/
MIT License
555 stars 55 forks source link

[FIX] Use correct imports from backpack in website examples #262

Closed f-dangel closed 1 year ago

f-dangel commented 1 year ago

Fixes #261.

Replaces from backpack import ..., X <-> from backpack import ..., extensions and with backpack(X()) <-> with backpack(extensions.X())

on the website examples.