All Projects → st-- → interactive-gp-visualization

st-- / interactive-gp-visualization

Licence: MIT license
Interactive visualization of Gaussian processes

Programming Languages

Svelte
593 projects
typescript
32286 projects
javascript
184084 projects - #8 most used programming language
CSS
56736 projects
HTML
75241 projects

Projects that are alternatives of or similar to interactive-gp-visualization

TrajSuite
TrajSuite is a cross-platform Java application that provides a suite of trajectory data-mining and visualisation features.
Stars: ✭ 15 (-88.72%)
Mutual labels:  visualisation
Animations-with-Matplotlib
Using the matplotlib library to create some interesting animations.
Stars: ✭ 42 (-68.42%)
Mutual labels:  visualisation
random-fourier-features
Implementation of random Fourier features for kernel method, like support vector machine and Gaussian process model
Stars: ✭ 50 (-62.41%)
Mutual labels:  gaussian-processes
visualisation-lab
An experimental visualisation workbench built using Svelte
Stars: ✭ 17 (-87.22%)
Mutual labels:  visualisation
GPBoost
Combining tree-boosting with Gaussian process and mixed effects models
Stars: ✭ 360 (+170.68%)
Mutual labels:  gaussian-processes
scenery
Flexible VR Visualisation for Volumetric and Geometric Data on the Java VM, powered by Kotlin and Vulkan
Stars: ✭ 107 (-19.55%)
Mutual labels:  visualisation
iterated-function-systems
Iterated Function Systems fractals with OCaml.
Stars: ✭ 33 (-75.19%)
Mutual labels:  visualisation
baltic
baltic - backronymed adaptable lightweight tree import code for molecular phylogeny manipulation, analysis and visualisation. Development is back on the evogytis/baltic branch (i.e. here).
Stars: ✭ 60 (-54.89%)
Mutual labels:  visualisation
workshop
Workshop: Micromagnetics with Ubermag
Stars: ✭ 19 (-85.71%)
Mutual labels:  visualisation
chord-transitions
Transitioning Chord Diagram Demo with Angular/D3
Stars: ✭ 38 (-71.43%)
Mutual labels:  visualisation
NBA-Shot-Charts
Create NBA shot charts using data scrapped from stats.nba.com and R package ggplot2.
Stars: ✭ 33 (-75.19%)
Mutual labels:  visualisation
ltr-tools
Set of command line tools for Learning To Rank
Stars: ✭ 13 (-90.23%)
Mutual labels:  visualisation
TrendinessOfTrends
The Trendiness of Trends
Stars: ✭ 14 (-89.47%)
Mutual labels:  gaussian-processes
BigComputeLabs
Big Compute Learning Labs
Stars: ✭ 19 (-85.71%)
Mutual labels:  visualisation
downsample
Collection of several downsampling methods for time series visualisation purposes.
Stars: ✭ 50 (-62.41%)
Mutual labels:  visualisation
midi-recorder
🎹 The easiest way to record MIDI. No install. Automatically records.
Stars: ✭ 38 (-71.43%)
Mutual labels:  visualisation
CometVisu
Repository for the CometVisu building automation visualisation.
Stars: ✭ 60 (-54.89%)
Mutual labels:  visualisation
Neural-Network-Architecture-Diagrams
Diagrams for visualizing neural network architecture (Created with diagrams.net)
Stars: ✭ 194 (+45.86%)
Mutual labels:  visualisation
notebook-examples
Example notebooks showing how to work with ECMWF services and data
Stars: ✭ 103 (-22.56%)
Mutual labels:  visualisation
bruno
a deep recurrent model for exchangeable data
Stars: ✭ 34 (-74.44%)
Mutual labels:  gaussian-processes

Interactive Visualisation of Gaussian processes

This is an interactive extension of a visualisation I developed for an invited talk at the FAI seminar series at University College London. Try out the live demo!

Standing on the shoulders of...

This webapp is built using Svelte, D3.js, and ml-matrix. Equations are rendered by KaTeX. Thanks to Ryan Davis for the CollapsibleCard.

There are several ways to make smooth animations across different samples. One way is to take random samples (independently or from HMC trajectories) and smoothly interpolate between them; here, using Catmull–Rom splines. Another way is to construct great circles in the sample space, which goes back to Philipp Hennig's technical note Animating samples from Gaussian distributions. How to compute the isocontour ellipses of a bivariate Gaussian distribution is explained by Chuong B. Do in this note.

Other visualisations

There are plenty of other Gaussian process visualisations out there; here are some I came across so far (if you know of others you like, please let me know, I'm happy to extend the list!):

Comments, bugs, feature suggestions

If you encounter any issues or have ideas for what might make this visualisation even better, please get in touch or open an issue in this repository. :)


Svelte development

Get started

Install the dependencies...

# cd into this directory
npm install

...then start Rollup:

npm run dev

Navigate to localhost:5000. You should see your app running. Edit a component file in src, save it, and reload the page to see your changes.

By default, the server will only respond to requests from localhost. To allow connections from other computers, edit the sirv commands in package.json to include the option --host 0.0.0.0.

If you're using Visual Studio Code we recommend installing the official extension Svelte for VS Code. If you are using other editors you may need to install a plugin in order to get syntax highlighting and intellisense.

Contributing

Using TypeScript

This repository is set up to use TypeScript. Run the checks with

npx svelte-check

(Note: if you run svelte-check from a subdirectory, e.g. src/, it will not find the included type hints in custom_typings/.)

Using Prettier

This repository is set up to use Prettier. Before committing code, run

npx prettier -w src

Building and running in production mode

To create an optimised version of the app:

npm run build

You can run the newly built app with npm run start. This uses sirv, which is included in your package.json's dependencies so that the app will work when you deploy to platforms like Heroku.

Single-page app mode

By default, sirv will only respond to requests that match files in public. This is to maximise compatibility with static fileservers, allowing you to deploy your app anywhere.

If you're building a single-page app (SPA) with multiple routes, sirv needs to be able to respond to requests for any path. You can make it so by editing the "start" command in package.json:

"start": "sirv public --single"

Deploying to the web

With Vercel

Install vercel if you haven't already:

npm install -g vercel

Then, from within your project folder:

cd public
vercel deploy --name my-project

With surge

Install surge if you haven't already:

npm install -g surge

Then, from within your project folder:

npm run build
surge public my-project.surge.sh
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].