joel-woodfield commited on
Commit
95c6b03
·
verified ·
1 Parent(s): fbd27f2

Update usage.md

Browse files
Files changed (1) hide show
  1. usage.md +8 -5
usage.md CHANGED
@@ -2,13 +2,16 @@
2
 
3
  In this visualizer you can visualize gaussian processes with different kernels on different datasets.
4
 
5
- ### Dataset - Generate or upload a dataset to train on.
6
- If generating, enter a function and the visualizer will sample points uniformly in the domain based on the settings. If uploading, make sure to upload a csv file with two columns with x being the first column and y being the second.
 
7
 
8
- ### Model - Specify the gaussian process model
9
- Here you can specify the gaussian process kernel, and whether to use the prior or posterior. You can also sample new y-values on the same domain. For specifying kernels, you must use the Sci-kit Learn API - see <https://scikit-learn.org/stable/modules/gaussian_process.html#kernels-for-gaussian-processes>
 
10
 
11
- **Kernel examples**
 
12
  * RBF()
13
  * RBF(length_scale=1, length_scale_bounds="fixed")
14
  * RBF(length_scale=100, length_scale_bounds="fixed") + WhiteKernel()
 
2
 
3
  In this visualizer you can visualize gaussian processes with different kernels on different datasets.
4
 
5
+ ---
6
+ ### Dataset
7
+ Generate or upload a dataset to train on. If generating, enter a function and the visualizer will sample points uniformly in the domain based on the settings.
8
 
9
+ ---
10
+ ### Model
11
+ Here you can specify the gaussian process kernel, and whether to use the prior or posterior. For specifying kernels, you must use the sci-kit Learn API - see <https://scikit-learn.org/stable/modules/gaussian_process.html#kernels-for-gaussian-processes>
12
 
13
+ ---
14
+ ### Kernel examples
15
  * RBF()
16
  * RBF(length_scale=1, length_scale_bounds="fixed")
17
  * RBF(length_scale=100, length_scale_bounds="fixed") + WhiteKernel()