updated doc indexes
This commit is contained in:
parent
b88307e927
commit
36c0fae7da
|
@ -230,7 +230,7 @@ Lightning will call .backward() and .step() on each one in every epoch. If you
|
||||||
|
|
||||||
|
|
||||||
##### Return
|
##### Return
|
||||||
Tuple - List of optimizers and list of schedulers
|
List or Tuple - List of optimizers with an optional second list of learning-rate schedulers
|
||||||
|
|
||||||
**Example**
|
**Example**
|
||||||
|
|
||||||
|
@ -238,7 +238,7 @@ Tuple - List of optimizers and list of schedulers
|
||||||
# most cases
|
# most cases
|
||||||
def configure_optimizers(self):
|
def configure_optimizers(self):
|
||||||
opt = Adam(self.parameters(), lr=0.01)
|
opt = Adam(self.parameters(), lr=0.01)
|
||||||
return [opt], []
|
return [opt]
|
||||||
|
|
||||||
# gan example, with scheduler for discriminator
|
# gan example, with scheduler for discriminator
|
||||||
def configure_optimizers(self):
|
def configure_optimizers(self):
|
||||||
|
|
Loading…
Reference in New Issue