|
1 |
| -# NeuralOperators |
| 1 | +# NeuralOperators.jl |
2 | 2 |
|
3 |
| -NeuralOperators built using [Lux.jl](https://lux.csail.mit.edu/). |
4 |
| -For a version built using an old-generation framework [Flux.jl](https://fluxml.ai/), see |
5 |
| -[NeuralOperators.jl](https://docs.sciml.ai/NeuralOperators/stable/), though that version |
6 |
| -will be soon replaced by this one. |
| 3 | +[](https://julialang.zulipchat.com/#narrow/stream/279055-sciml-bridged) |
| 4 | +[](https://docs.sciml.ai/NeuralOperators/stable/) |
| 5 | + |
| 6 | +[](https://codecov.io/gh/SciML/NeuralOperators.jl) |
| 7 | +[](https://github.com/SciML/NeuralOperators.jl/actions?query=workflow%3ACI) |
| 8 | +[](https://buildkite.com/julialang/neuraloperators-dot-jl) |
| 9 | + |
| 10 | +[](https://github.com/SciML/ColPrac) |
| 11 | +[](https://github.com/SciML/SciMLStyle) |
| 12 | + |
| 13 | +NeuralOperators.jl is a package written in Julia to provide the architectures for learning |
| 14 | +mapping between function spaces, and learning grid invariant solution of PDEs. Checkout the |
| 15 | +[documentation](https://docs.sciml.ai/NeuralOperators/stable/) for tutorials and API |
| 16 | +reference. |
| 17 | + |
| 18 | +## Installation |
| 19 | + |
| 20 | +On Julia 1.10+, you can install `NeuralOperators.jl` by running |
| 21 | + |
| 22 | +```julia |
| 23 | +import Pkg |
| 24 | +Pkg.add("NeuralOperators") |
| 25 | +``` |
| 26 | + |
| 27 | +## Citation |
| 28 | + |
| 29 | +If you found this library to be useful in academic work, then please cite: |
| 30 | + |
| 31 | +```bibtex |
| 32 | +@software{pal2023lux, |
| 33 | + author = {Pal, Avik}, |
| 34 | + title = {{Lux: Explicit Parameterization of Deep Neural Networks in Julia}}, |
| 35 | + month = apr, |
| 36 | + year = 2023, |
| 37 | + note = {If you use this software, please cite it as below.}, |
| 38 | + publisher = {Zenodo}, |
| 39 | + version = {v0.5.0}, |
| 40 | + doi = {10.5281/zenodo.7808904}, |
| 41 | + url = {https://doi.org/10.5281/zenodo.7808904} |
| 42 | +} |
| 43 | +
|
| 44 | +@thesis{pal2023efficient, |
| 45 | + title = {{On Efficient Training \& Inference of Neural Differential Equations}}, |
| 46 | + author = {Pal, Avik}, |
| 47 | + year = {2023}, |
| 48 | + school = {Massachusetts Institute of Technology} |
| 49 | +} |
| 50 | +``` |
0 commit comments