sapsan


Namesapsan JSON
Version 0.6.5 PyPI version JSON
download
home_pagehttps://github.com/pikarpov-LANL/Sapsan
SummarySapsan project
upload_time2023-08-17 06:18:02
maintainer
docs_urlNone
authorPlaton Karpov, Iskandar Sitdikov
requires_python>=3.7, <3.11
licenseBSD
keywords experiments reproducibility astrophysics
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Sapsan  <a href="https://sapsan-wiki.github.io/"><img src="https://github.com/pikarpov-LANL/Sapsan/blob/images/docs/images/logo3_black_slim_notitle_whitebg.png?raw=true"  alt="Sapsan logo" align="right" width="100"></a>

Sapsan is a pipeline for Machine Learning (ML) based turbulence modeling. While turbulence is important in a wide range of mediums, the pipeline primarily focuses on astrophysical applications. With Sapsan, one can create their own custom models or use either conventional or physics-informed ML approaches for turbulence modeling included with the pipeline ([estimators](https://sapsan-wiki.github.io/details/estimators/)). Sapsan is designed to take out all the hard work from data preparation and analysis, leaving you focused on ML model design, layer by layer.

Feel free to check out a website version at [sapsan.app](http://sapsan.app). The interface is identical to the GUI of the local version of Sapsan, except lacking the ability to edit the model code on the fly.

[![pypi](https://img.shields.io/pypi/v/sapsan?label=sapsan)](https://pypi.org/project/sapsan/)
[![pypi](https://img.shields.io/pypi/pyversions/sapsan)](https://pypi.org/project/sapsan/)
[![DOI](https://joss.theoj.org/papers/10.21105/joss.03199/status.svg)](https://doi.org/10.21105/joss.03199)

## [Documentation](https://sapsan-wiki.github.io/)

Please refer to Sapsan's Wiki for detailed installation, tutorials, troubleshooting, and API, as well as to learn more about the framework's capabilities.

## Quick Start

### 1. Install PyTorch (prerequisite)
Sapsan can be run on both CPU and GPU. Please follow the instructions on [PyTorch](https://pytorch.org/get-started/locally/) to install the latest version (torch>=1.7.1 & CUDA>=11.0).

### 2. Install via pip (recommended)
```
pip install sapsan
```

#### OR Clone from git
```
git clone https://github.com/pikarpov-LANL/Sapsan.git
cd Sapsan/
python setup.py install
```

Note: see [Installation Page](https://sapsan-wiki.github.io/overview/installation/) on the Wiki for complete instructions with Graphviz and Docker installation.

### 3. Test Installation

To make sure everything is alright, run a test of your setup:
```
sapsan test
```

### 4. Run Examples

To get started and familiarize yourself with the interface, feel free to run the included examples ([CNN](https://sapsan-wiki.github.io/details/estimators/#convolution-neural-network-cnn), [PIMLTurb](https://sapsan-wiki.github.io/details/estimators/#physics-informed-cnn-for-turbulence-modeling-pimlturb), [PICAE](https://sapsan-wiki.github.io/details/estimators/#physics-informed-convolutional-autoencoder-picae) or on 3D data, and [KRR](https://sapsan-wiki.github.io/details/estimators/#kernel-ridge-regression-krr) on 2D data). To copy the examples, type:
```
sapsan get_examples
```
This will create a folder `./sapsan_examples` with appropriate example jupyter notebooks.

### 5. Create Custom Projects!
To start a custom project, designing your own custom estimator, i.e., network, go ahead and run:
```
sapsan create {name}
```
where `{name}` should be replaced with your custom project name. As a result, a pre-filled template for the estimator, a jupyter notebook to run everything from, and Docker will be initialized.




-------
Sapsan has a BSD-style license, as found in the [LICENSE](https://github.com/pikarpov-LANL/Sapsan/blob/master/LICENSE) file.

© (or copyright) 2019. Triad National Security, LLC. All rights reserved.
This program was produced under U.S. Government contract 89233218CNA000001 for Los Alamos
National Laboratory (LANL), which is operated by Triad National Security, LLC for the U.S.
Department of Energy/National Nuclear Security Administration. All rights in the program are
reserved by Triad National Security, LLC, and the U.S. Department of Energy/National Nuclear
Security Administration. The Government is granted for itself and others acting on its behalf a
nonexclusive, paid-up, irrevocable worldwide license in this material to reproduce, prepare
derivative works, distribute copies to the public, perform publicly and display publicly, and to permit
others to do so.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/pikarpov-LANL/Sapsan",
    "name": "sapsan",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7, <3.11",
    "maintainer_email": "",
    "keywords": "experiments,reproducibility,astrophysics",
    "author": "Platon Karpov, Iskandar Sitdikov",
    "author_email": "plkarpov@ucsc.edu",
    "download_url": "https://files.pythonhosted.org/packages/b3/15/ad32ed4da356f86552553e821039356cb15c392d220e1f9756b2f16f1259/sapsan-0.6.5.tar.gz",
    "platform": null,
    "description": "# Sapsan  <a href=\"https://sapsan-wiki.github.io/\"><img src=\"https://github.com/pikarpov-LANL/Sapsan/blob/images/docs/images/logo3_black_slim_notitle_whitebg.png?raw=true\"  alt=\"Sapsan logo\" align=\"right\" width=\"100\"></a>\n\nSapsan is a pipeline for Machine Learning (ML) based turbulence modeling. While turbulence is important in a wide range of mediums, the pipeline primarily focuses on astrophysical applications. With Sapsan, one can create their own custom models or use either conventional or physics-informed ML approaches for turbulence modeling included with the pipeline ([estimators](https://sapsan-wiki.github.io/details/estimators/)). Sapsan is designed to take out all the hard work from data preparation and analysis, leaving you focused on ML model design, layer by layer.\n\nFeel free to check out a website version at [sapsan.app](http://sapsan.app). The interface is identical to the GUI of the local version of Sapsan, except lacking the ability to edit the model code on the fly.\n\n[![pypi](https://img.shields.io/pypi/v/sapsan?label=sapsan)](https://pypi.org/project/sapsan/)\n[![pypi](https://img.shields.io/pypi/pyversions/sapsan)](https://pypi.org/project/sapsan/)\n[![DOI](https://joss.theoj.org/papers/10.21105/joss.03199/status.svg)](https://doi.org/10.21105/joss.03199)\n\n## [Documentation](https://sapsan-wiki.github.io/)\n\nPlease refer to Sapsan's Wiki for detailed installation, tutorials, troubleshooting, and API, as well as to learn more about the framework's capabilities.\n\n## Quick Start\n\n### 1. Install PyTorch (prerequisite)\nSapsan can be run on both CPU and GPU. Please follow the instructions on [PyTorch](https://pytorch.org/get-started/locally/) to install the latest version (torch>=1.7.1 & CUDA>=11.0).\n\n### 2. Install via pip (recommended)\n```\npip install sapsan\n```\n\n#### OR Clone from git\n```\ngit clone https://github.com/pikarpov-LANL/Sapsan.git\ncd Sapsan/\npython setup.py install\n```\n\nNote: see [Installation Page](https://sapsan-wiki.github.io/overview/installation/) on the Wiki for complete instructions with Graphviz and Docker installation.\n\n### 3. Test Installation\n\nTo make sure everything is alright, run a test of your setup:\n```\nsapsan test\n```\n\n### 4. Run Examples\n\nTo get started and familiarize yourself with the interface, feel free to run the included examples ([CNN](https://sapsan-wiki.github.io/details/estimators/#convolution-neural-network-cnn), [PIMLTurb](https://sapsan-wiki.github.io/details/estimators/#physics-informed-cnn-for-turbulence-modeling-pimlturb), [PICAE](https://sapsan-wiki.github.io/details/estimators/#physics-informed-convolutional-autoencoder-picae) or on 3D data, and [KRR](https://sapsan-wiki.github.io/details/estimators/#kernel-ridge-regression-krr) on 2D data). To copy the examples, type:\n```\nsapsan get_examples\n```\nThis will create a folder `./sapsan_examples` with appropriate example jupyter notebooks.\n\n### 5. Create Custom Projects!\nTo start a custom project, designing your own custom estimator, i.e., network, go ahead and run:\n```\nsapsan create {name}\n```\nwhere `{name}` should be replaced with your custom project name. As a result, a pre-filled template for the estimator, a jupyter notebook to run everything from, and Docker will be initialized.\n\n\n\n\n-------\nSapsan has a BSD-style license, as found in the [LICENSE](https://github.com/pikarpov-LANL/Sapsan/blob/master/LICENSE) file.\n\n\u00a9 (or copyright) 2019. Triad National Security, LLC. All rights reserved.\nThis program was produced under U.S. Government contract 89233218CNA000001 for Los Alamos\nNational Laboratory (LANL), which is operated by Triad National Security, LLC for the U.S.\nDepartment of Energy/National Nuclear Security Administration. All rights in the program are\nreserved by Triad National Security, LLC, and the U.S. Department of Energy/National Nuclear\nSecurity Administration. The Government is granted for itself and others acting on its behalf a\nnonexclusive, paid-up, irrevocable worldwide license in this material to reproduce, prepare\nderivative works, distribute copies to the public, perform publicly and display publicly, and to permit\nothers to do so.\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Sapsan project",
    "version": "0.6.5",
    "project_urls": {
        "Homepage": "https://github.com/pikarpov-LANL/Sapsan"
    },
    "split_keywords": [
        "experiments",
        "reproducibility",
        "astrophysics"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2e200d9a5ba4a5068025eff53837346d3a5e2da2d091ac3c1fbbca9be3e065fa",
                "md5": "7d4f95d4a4e0fe9de6207e5e91102eee",
                "sha256": "2864f4d6a9ba454cfb9765ba110dfdfca77fcbf9b80a8d039a88ac4a9e7af193"
            },
            "downloads": -1,
            "filename": "sapsan-0.6.5-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "7d4f95d4a4e0fe9de6207e5e91102eee",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7, <3.11",
            "size": 11041587,
            "upload_time": "2023-08-17T06:17:59",
            "upload_time_iso_8601": "2023-08-17T06:17:59.383297Z",
            "url": "https://files.pythonhosted.org/packages/2e/20/0d9a5ba4a5068025eff53837346d3a5e2da2d091ac3c1fbbca9be3e065fa/sapsan-0.6.5-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b315ad32ed4da356f86552553e821039356cb15c392d220e1f9756b2f16f1259",
                "md5": "3de8f8980cca734e38a031ea20cc165a",
                "sha256": "00ba4aae52490d1ece60685a68fec9a831bed426124d2f3e2dd87e29cd885124"
            },
            "downloads": -1,
            "filename": "sapsan-0.6.5.tar.gz",
            "has_sig": false,
            "md5_digest": "3de8f8980cca734e38a031ea20cc165a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7, <3.11",
            "size": 11015221,
            "upload_time": "2023-08-17T06:18:02",
            "upload_time_iso_8601": "2023-08-17T06:18:02.676336Z",
            "url": "https://files.pythonhosted.org/packages/b3/15/ad32ed4da356f86552553e821039356cb15c392d220e1f9756b2f16f1259/sapsan-0.6.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-17 06:18:02",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pikarpov-LANL",
    "github_project": "Sapsan",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "sapsan"
}
        
Elapsed time: 0.13201s