Skip to content

Radio interferometric calibration with PyTorch. An example of how to solve a general optimization problem.

Notifications You must be signed in to change notification settings

SarodYatawatta/calibration-pytorch-test

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 

Repository files navigation

Radio interferometric calibration with PyTorch

This is a simple example to compare popular optimizers used in deep learning (Adam etc.) with stochastic LBFGS.

The stochastic LBFGS optimizer is provided with the code. Further details are given in this paper and also this. Also see this introduction.

Files included are:

lbfgsnew.py: New LBFGS optimizer

run_calibration.py: Run a simple calibration

reduction of calibration cost

Here is an image showing the reduction of calibration error (Student's T loss) with minibatch (CPU time) for LBFGS and Adam. Adam runs faster but slower to converge. LBFGS uses 1 epoch and Adam uses 4 epochs in the image. The minibatch size is 1/10-th of the full dataset.

For a much faster, C/CUDA version of the LBFGS optimizer, follow this link.

For a completely different method to calibrate, see also ManOpt.

About

Radio interferometric calibration with PyTorch. An example of how to solve a general optimization problem.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages