From 1b439d859bb4feccc0cd418060bc07525325f0d9 Mon Sep 17 00:00:00 2001 From: Nikos Gianniotis Date: Mon, 19 Aug 2024 14:18:07 +0200 Subject: [PATCH] update --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3eaa137..92632a8 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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") -``` \ No newline at end of file +``` + +## Experiment 2 \ No newline at end of file