Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
ngiann committed Aug 19, 2024
1 parent cbe993b commit 1b439d8
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Implementation of the $\mbox{GPLVM}_+$ model presented in *Positive and Scale Invariant Gaussian Process Latent Variable Model for Astronomical Spectra, ESANN 2024*.

Below we show an example of how to use the model with a dataset of 72 images that are made available via the package GPLVMplusData.jl.

## Experiment 1

```
using GPLVMplus
using GPLVMplusData # must be independently installed
Expand All @@ -20,4 +24,6 @@ result = gplvmplus(X; Q = 2, H1 = 20, H2 = 20, iterations = 5000);
# Plot latent coordinates
using PyPlot # must be independently installed
plot(result[:Z][1,:],result[:Z][2,:],"o")
```
```

## Experiment 2

0 comments on commit 1b439d8

Please sign in to comment.