Skip to content

Latest commit

 

History

History
67 lines (50 loc) · 2.92 KB

README.md

File metadata and controls

67 lines (50 loc) · 2.92 KB
logo

GPX

GPX is Gaussian Process Regression, written in JAX.

GPX currently supports:

Installation

An environment with python 3.10 is recommended. You can create it with conda, virtualenv, or pyenv. Then simply clone the project and install it with pip.

For example, using conda:

conda create -n gpx-env python=3.10
conda activate gpx-env
git clone https://github.com/Molecolab-Pisa/GPX
cd GPX
pip install .

If you need to install JAX with GPU support, install JAX first following the instructions provided by JAX.

Getting Started

You may want to look at our list of examples:

Citing GPX

In order to cite GPX you can use the following bibtex entry:

@software{gpx2023github,
  author = {Edoardo Cignoni and Patrizia Mazzeo and Amanda Arcidiacono and Lorenzo Cupellini and Benedetta Mennucci},
  title = {GPX: Gaussian Process Regression in JAX},
  url = {https://github.com/Molecolab-Pisa/GPX},
  version = {0.1.0},
  year = {2023},
}