(input_img)
| 393 | # |
| 394 | |
| 395 | def get_input_optimizer(input_img): |
| 396 | # this line to show that input is a parameter that requires a gradient |
| 397 | optimizer = optim.LBFGS([input_img]) |
| 398 | return optimizer |
| 399 | |
| 400 | |
| 401 | ###################################################################### |
no outgoing calls
no test coverage detected