This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Programmer: Chris Tralie | |
| Purpose: To use the POT library (https://github.com/rflamary/POT) | |
| to compute the Entropic regularized Wasserstein distance | |
| between points on a 2D grid | |
| """ | |
| import numpy as np | |
| import matplotlib.pyplot as plt | |
| import ot |