Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dynamicslab/normalformae
https://github.com/dynamicslab/normalformae
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dynamicslab/normalformae
- Owner: dynamicslab
- License: agpl-3.0
- Created: 2020-04-23T16:43:02.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-08-22T15:25:50.000Z (over 3 years ago)
- Last Synced: 2024-05-04T00:24:47.573Z (8 months ago)
- Language: Julia
- Size: 8.1 MB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Normal form Autoencoder
Constructing low-dimensional parameterized representations of high dimensional dynamics using normal forms as a building block by using an autoencoder framework. Neural network training is implemented with `Flux.jl`, a Julia library. Paper available [on arXiv](https://arxiv.org/abs/2106.05102)
# Reproduce results
Download datasets from [here](https://doi.org/10.4121/14790657.v1), and extract contents to `NormalFormAE/NFAEdata`. Use the scripts in `run` to reproduce the results from the paper.
Note you need CUDA to run this package.
## How to use
- If you have Linux/Mac, run the following on your terminal to install `Julia` in one command
```terminal
bash -ci "$(curl -fsSL https://raw.githubusercontent.com/abelsiqueira/jill/master/jill.sh)"
```
from [here](https://github.com/abelsiqueira/jill).
- Clone this package and enter the directory. Run `julia` on your terminal.
- Now run the following:
```julia
julia> ] activate .
julia> ] instantiate
```
which will automatically install the necessary `Julia` packages you need.- Run an example (tests coming soon) via the terminal or [REPL Shell mode](https://docs.julialang.org/en/v1/stdlib/REPL/#man-shell-mode). Note to run in the REPL Shell mode, you need to use the backspace/delete key to exit out of Pkg mode, and then type a `;`. Find out more about running Julia files [in the Julia docs](https://docs.julialang.org/en/v1/manual/getting-started/).
```terminal
julia -i run/run_nf.jl
```