bioinf-jku / FCD

Fréchet ChemNet Distance: A quality measure for generative models for molecules
GNU Lesser General Public License v3.0
68 stars 26 forks source link

Make FCD pip-installable #3

Closed avaucher closed 5 years ago

avaucher commented 5 years ago

With this PR, FCD will be installable with

pip install git+https://github.com/bioinf-jku/FCD#egg=fcd

Then users can call the functions from their code with something like

import fcd
model = fcd.load_ref_model(model_path)
FCD = fcd.calculate_frechet_distance(mu1=mu1, mu2=mu2, sigma1=cov1, sigma2=cov2)

and so on.

KristinaPreuer commented 5 years ago

Thanks for your changes!