seeq-sysid


Nameseeq-sysid JSON
Version 1.0.1 PyPI version JSON
download
home_pagehttps://github.com/BYU-PRISM/Seeq
SummarySeeq System Identification Addon
upload_time2023-04-19 16:17:18
maintainer
docs_urlNone
authorJunho Park, Mohammad Reza Babaei
requires_python
licenseMIT
keywords seeq prism system identification arx fir arimax subspace state-space neural-network addon time-series transfer function
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <!-- workflow badges -->
[![CodeQL](https://github.com/BYU-PRISM/Seeq/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/BYU-PRISM/Seeq/actions/workflows/codeql-analysis.yml)
[![Documentation](https://github.com/BYU-PRISM/Seeq/actions/workflows/pages/pages-build-deployment/badge.svg)](https://byu-prism.github.io/Seeq/)
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/BYU-PRISM/Seeq/binder?urlpath=apps%2Fsysid_notebook.ipynb)

<p align="left">
<img src="https://github.com/BYU-PRISM/Seeq/blob/main/docs/images/Title.png?raw=true" width="400" height="100"></p>

## System Identification
<!-- ![alt text](https://github.com/BYU-PRISM/Seeq/blob/main/docs/images/digital_twin.svg?raw=true) -->
<p align="center">
<img src="https://github.com/BYU-PRISM/Seeq/blob/main/docs/images/digital_twin.svg?raw=true">
</p>

## Seeq-System Identification is ...
A Seeq Add-on built-in python to identify input and output relationships for the system to create **digital twin**
models for various analytics and machine learning tasks. System dynamics are identified thereby
allowing users to get dynamic predictions quickly. The Add-on is fully integrated with
Seeq Workbench. Cleaned and contextualized data from Seeq workbench can be used to identify dynamic models; the models can be pushed back into Seeq workbench. This framework supports both ad-hoc investigations as well as streaming predictions. The system identification framework can be used for a variety of tasks including simulation, digital twin construction, advanced process control, real-time optimization, etc.

<p align="center">
<img src="https://github.com/BYU-PRISM/Seeq/blob/main/docs/images/Digital_twin_inout.png?raw=true" align="center" width="650" height="150">
</p>

## What does Seeq-System Identification do?
The System Identification Add-on supports the construction of a variety of dynamic models. White box models are primarily based on physics-based principles such as conservation laws and reaction kinetics for the chemical process. Development of these models requires extensive domain knowledge and is typically more expensive to build and maintain. Machine learning models are largely data-driven. Greybox models combine the best of both; they simplify the white-box model by lumping several parameters into fewer parameters that can be identified from data with higher degrees of confidence. These models are capable of capturing the primary dynamics of the system but are valid over smaller ranges of operation. The SysID Add-on allows users to choose a modeling option based on the application.


1. Grey-box model identification (ARX, Transfer Function, Subspace models)
1. Complex model identification (Neural Networks-based models)
1. Hybrid Physics and Machine learning model identification

<p align="center">
<img src="https://github.com/BYU-PRISM/Seeq/blob/main/docs/images/Blackbox.png?raw=true" align="center" width="600" height="150">
</p>

## ARX model
ARX model is a system identification model that uses the linear correlation between previous and future values. ARX model consists of previous output terms (y) and previous input (u) terms multiplied by the linear coefficients (a, b). The linear combination of past input and output value computes the one-step-ahead prediction of output value(y<sub>k+1</sub>).
Multiple iterations of the one-step-ahead prediction return the multi-step prediction (from y<sub>k+1</sub> to y<sub>k+n</sub>). The time window of the past input and output terms is shifted toward the next segment for every iteration for multi-step prediction.
Here is an example formula with <img src="https://render.githubusercontent.com/render/math?math=\large n_a=3"> and <img src="https://render.githubusercontent.com/render/math?math=\large n_b=2"> for the single input and single output system,
<p align="center">
<img src="https://render.githubusercontent.com/render/math?math=\large y_{k %2B 1}=a_{0} y_{k} %2B a_{1} y_{k-1} %2B a_{2} y_{k-2} %2B b_{0} u_{k} %2B b_{1} u_{k-1}" >
</p>

<p align="center">
<img src="https://github.com/BYU-PRISM/Seeq/blob/main/docs/images/Onestep-ahead.png?raw=true" align="center" width="300" height="100">
</p>

<img src="https://render.githubusercontent.com/render/math?math=\large ARX">: Auto-Regressive with eXogenous input   
("Auto" indicates the past 'y' values, and "Exogenous" indicates the past 'u' values serving as model inputs)  
<img src="https://render.githubusercontent.com/render/math?math=\large a">: ARX coefficient for the past output value  
<img src="https://render.githubusercontent.com/render/math?math=\large b">: ARX coefficient for the past input value  
<img src="https://render.githubusercontent.com/render/math?math=\large n_a">: Number of terms for the past output value  
<img src="https://render.githubusercontent.com/render/math?math=\large n_b">: Number of terms for the past input value  
<img src="https://render.githubusercontent.com/render/math?math=\large n_c">: Delay between input and output  
<img src="https://render.githubusercontent.com/render/math?math=\large k">: present time step  

Here is another example formula with **delay**  <img src="https://render.githubusercontent.com/render/math?math=\small (n_a=3, n_b=2, n_c=2)">,  

<p align="center">
<img src="https://render.githubusercontent.com/render/math?math=\large y_{k %2B 1}=a_{1} y_{k} %2B a_{2} y_{k-1} %2B a_{3} y_{k-2} %2B b_{1} u_{k-2-2} %2B b_{2} u_{k-1-2}" >
</p>

Although the ARX model can be more detailed by increasing the number of terms <img src="https://render.githubusercontent.com/render/math?math=\normalsize (n_a, n_b)">, it could result in an overfit. Thus, it could be an essential step to compare the training and validation set, ensuring the prediction for the validation set is as good as the training set. The model fitting can be quantified using different statistical methods such as **MSE** (Mean Squared Error) or **SSE** (Sum of Squared Error)


## Overview

<table border="0">
<td><img alt="image" src="https://github.com/BYU-PRISM/Seeq/blob/TF/docs/images/sysid-nn.png?raw=true"></td>
</table>

<a href="https://raw.githubusercontent.com/BYU-PRISM/Seeq/TF/docs/images/sysid-matrix-setup-sopdt.png">
<img alt="image" src="https://github.com/BYU-PRISM/Seeq/blob/TF/docs/images/sysid-matrix-setup-sopdt.png?raw=true" width=23%></a>
<!--  -->
<a href="https://raw.githubusercontent.com/BYU-PRISM/Seeq/TF/docs/images/sysid-tf-matrix2.png">
<img alt="image" src="https://github.com/BYU-PRISM/Seeq/blob/TF/docs/images/sysid-tf-matrix2.png?raw=true" width=23%></a>
<!--  -->
<a href="https://raw.githubusercontent.com/BYU-PRISM/Seeq/TF/docs/images/sysid-tf-setup.png">
<img alt="image" src="https://github.com/BYU-PRISM/Seeq/blob/TF/docs/images/sysid-tf-setup.png?raw=true" width=23%></a>
<!--  -->
<a href="https://raw.githubusercontent.com/BYU-PRISM/Seeq/TF/docs/images/seeq-sysid-gui.png">
<img alt="image" src="https://raw.githubusercontent.com/BYU-PRISM/Seeq/TF/docs/images/seeq-sysid-gui.png?raw=true" width=23%></a>
<!--  -->
<a href="https://raw.githubusercontent.com/BYU-PRISM/Seeq/TF/docs/images/sysid-ss.png">
<img alt="image" src="https://raw.githubusercontent.com/BYU-PRISM/Seeq/TF/docs/images/sysid-ss.png?raw=true" width=23%></a>
<!--  -->
<a href="https://raw.githubusercontent.com/BYU-PRISM/Seeq/TF/docs/images/sysid-matrix-loading.png">
<img alt="image" src="https://raw.githubusercontent.com/BYU-PRISM/Seeq/TF/docs/images/sysid-matrix-loading.png?raw=true" width=23%></a>
<!--  -->
<a href="https://raw.githubusercontent.com/BYU-PRISM/Seeq/TF/docs/images/sysid-step-info.png">
<img alt="image" src="https://raw.githubusercontent.com/BYU-PRISM/Seeq/TF/docs/images/sysid-step-info.png?raw=true" width=23%></a>
<!--  -->
<a href="https://raw.githubusercontent.com/BYU-PRISM/Seeq/TF/docs/images/sysid-arx.png">
<img alt="image" src="https://raw.githubusercontent.com/BYU-PRISM/Seeq/TF/docs/images/sysid-arx.png?raw=true" width=23%></a>
<br><br>
<!-- <p align="center">
<img src="https://github.com/BYU-PRISM/Seeq/blob/main/docs/images/overview0.jpg?raw=true" align="center" width="800" height="602">
</p>
<p align="center">
<img src="https://github.com/BYU-PRISM/Seeq/blob/main/docs/images/overview1.png?raw=true" align="center" width="800" height="450">
</p>
<p align="center">
<img src="https://github.com/BYU-PRISM/Seeq/blob/main/docs/images/overview2.png?raw=true" align="center" width="800" height="450">
</p>
<p align="center">
<img src="https://github.com/BYU-PRISM/Seeq/blob/main/docs/images/overview3.png?raw=true" align="center" width="800" height="450">
</p> -->


# User Guide

https://user-images.githubusercontent.com/55245976/136423446-9babb1da-41e6-4fcc-8bc0-066f98fc189d.mp4

[**SeeQ-System Identification User Guide**](https://byu-prism.github.io/Seeq)
provides a more in-depth explanation of System Identification and how
seeq-sysid works.


# Installation

The backend of **seeq-sysid** requires **Python 3.7** or later.


## Dependencies

See [`requirements.txt`](https://github.com/BYU-PRISM/Seeq/blob/main/requirements.txt) file for a list of
dependencies and versions. Additionally, you will need to install the `seeq`
module with the appropriate version that matches your Seeq server. For more
information on the `seeq` module see
[seeq at pypi](https://pypi.org/project/seeq/).


## User Installation Requirements (Seeq Data Lab)

If you want to install **seeq-sysid** as a Seeq Add-on Tool, you will need:

- Seeq Data Lab (>= R52.1.5, >=R53.0.2, or >=R54)

- `seeq` module whose version matches the Seeq server version

- Seeq administrator access

- Enable Add-on Tools (or External Tools) in the Seeq server

*Note:* For older versions of Seeq Data Lab you can find the installation guide `here``](https://user-images.githubusercontent.com/55245976/137494969-43d93065-1e23-4e7c-952f-2397993eb269.mp4).
<!-- (>= R50.5.0, >=R51.1.0, or >=R52.1.0) -->


## User Installation (Seeq Data Lab)

1. Create a **new** Seeq Data Lab project and open the **Terminal** window
2. Run `pip install seeq-sysid`
3. Run `python -m seeq_sysid [--users <users_list> --groups <groups_list>]`

For more information about adding this addon to the seeq workbench
[click here](https://seeq.atlassian.net/wiki/spaces/KB/pages/961675391/Add-on+Tool+Administration+and+Development).


## Important links
* [Documentation for SysID Add-on](https://byu-prism.github.io/Seeq/)
* [Official source code repo](https://github.com/BYU-PRISM/Seeq)
* [System Identification with Industrial Data Webinar](https://youtu.be/glWIzPPJRnQ) 

<img align=left width=400px src='https://apmonitor.com/wiki/uploads/Main/2021_12_sysid.png'>
<br><br><br><br><br><br><br><br><br><br><br>


## Source code

You can get started by cloning the repository with the command:

```shell
git clone https://github.com/BYU-PRISM/Seeq.git
```

## Installation from source

For development work, it is highly recommended to create a python virtual
environment and install the package in that working environment.
If you are not familiar with python virtual environments, you can take a
look [here](https://docs.python.org/3.8/tutorial/venv.html)

Once your virtual environment is activated, you can install **seeq-sysid** from the source with:

Go to the setup.py directory (Seeq/'SysID Addon')
```shell
python setup.py install --user
```

*Note:* Remember that the `seeq` module version in your local environment should match the Seeq server version


### User Interface Testing

To test the UI, use the `developer_notebook.ipynb` in the root directory of this project.
This notebook can also be used while debugging from your IDE. You can also
create a whl first, install it on your virtual environment, and then
run `developer_notebook.ipynb` notebook there.


# Changelog

## v1.0.1
- Notebook extensions and requirements update

## v1.0.0
- Minor improvements
- Empty worksheet warning
- Performance improvements

## v0.7.1
- Hotfix: dependencies updated for R57>=

## v0.7.0
- Performance improvement in TF identification
- Progress bar added to TF identification
- Legends added to TF chipsets
- Bugs fixed for normalized plots in TF identification

## v0.6.1
- Minor bugs fixed

## v0.6.0
- MA model added
- Units switch added
- Version number added to the GUI

## v0.5.1
- Minor bugs fixed

## v0.5.0

- ARIMAX model added
- Minor improvements
- GUI object moved to app.py
- Display results after calculation (Default)
- Unit compatibility error fixed
- Workbook pull step bypassed
- Push functions improved

## v0.4.1

- Hotfix for R57+ (search, pull, push functions)

## v0.4.0

- Export ARX model (Gekko sysid outputs as a pickle)
- Data Editor Added

## v0.3

- Push formula added for Transfer Function
- ARX Seeq formula fixed
- Mistune package conflict resolved

## v0.2

- Transfer Function
- Documentation added
- Shift method added to SubSpace.
- Installation made easier.
- Open Worksheet moved to the Hamburger Menu.

## v0.1

- Minor improvements

## v0.0.7

- Neural Network Model (RNN) added
- FIR Model added

## v0.0.6

- Installation made easier
- N4SID method was removed temporarily.



# Support

Code-related issues (e.g. bugs, feature requests) can be created in the
[issue tracker](https://github.com/BYU-PRISM/Seeq/issues)


# Citation

Please cite this work as:

```shell
seeq-sysid v1.0.1
BYU PRISM Group https://apm.byu.edu/prism/
https://github.com/BYU-PRISM/Seeq
```



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/BYU-PRISM/Seeq",
    "name": "seeq-sysid",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "Seeq Prism System Identification ARX FIR ARIMAX Subspace State-Space Neural-Network Addon Time-Series Transfer Function",
    "author": "Junho Park, Mohammad Reza Babaei",
    "author_email": "jnho.park@gmail.com, babaei_mr@outlook.com",
    "download_url": "https://files.pythonhosted.org/packages/35/76/bbb3c360ca02783dd32c7aa3fa5ef28ee73b8845e4873e70638bfddbfc43/seeq_sysid-1.0.1.tar.gz",
    "platform": null,
    "description": "<!-- workflow badges -->\n[![CodeQL](https://github.com/BYU-PRISM/Seeq/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/BYU-PRISM/Seeq/actions/workflows/codeql-analysis.yml)\n[![Documentation](https://github.com/BYU-PRISM/Seeq/actions/workflows/pages/pages-build-deployment/badge.svg)](https://byu-prism.github.io/Seeq/)\n[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/BYU-PRISM/Seeq/binder?urlpath=apps%2Fsysid_notebook.ipynb)\n\n<p align=\"left\">\n<img src=\"https://github.com/BYU-PRISM/Seeq/blob/main/docs/images/Title.png?raw=true\" width=\"400\" height=\"100\"></p>\n\n## System Identification\n<!-- ![alt text](https://github.com/BYU-PRISM/Seeq/blob/main/docs/images/digital_twin.svg?raw=true) -->\n<p align=\"center\">\n<img src=\"https://github.com/BYU-PRISM/Seeq/blob/main/docs/images/digital_twin.svg?raw=true\">\n</p>\n\n## Seeq-System Identification is ...\nA Seeq Add-on built-in python to identify input and output relationships for the system to create **digital twin**\nmodels for various analytics and machine learning tasks. System dynamics are identified thereby\nallowing users to get dynamic predictions quickly. The Add-on is fully integrated with\nSeeq Workbench. Cleaned and contextualized data from Seeq workbench can be used to identify dynamic models; the models can be pushed back into Seeq workbench. This framework supports both ad-hoc investigations as well as streaming predictions. The system identification framework can be used for a variety of tasks including simulation, digital twin construction, advanced process control, real-time optimization, etc.\n\n<p align=\"center\">\n<img src=\"https://github.com/BYU-PRISM/Seeq/blob/main/docs/images/Digital_twin_inout.png?raw=true\" align=\"center\" width=\"650\" height=\"150\">\n</p>\n\n## What does Seeq-System Identification do?\nThe System Identification Add-on supports the construction of a variety of dynamic models. White box models are primarily based on physics-based principles such as conservation laws and reaction kinetics for the chemical process. Development of these models requires extensive domain knowledge and is typically more expensive to build and maintain. Machine learning models are largely data-driven. Greybox models combine the best of both; they simplify the white-box model by lumping several parameters into fewer parameters that can be identified from data with higher degrees of confidence. These models are capable of capturing the primary dynamics of the system but are valid over smaller ranges of operation. The SysID Add-on allows users to choose a modeling option based on the application.\n\n\n1. Grey-box model identification (ARX, Transfer Function, Subspace models)\n1. Complex model identification (Neural Networks-based models)\n1. Hybrid Physics and Machine learning model identification\n\n<p align=\"center\">\n<img src=\"https://github.com/BYU-PRISM/Seeq/blob/main/docs/images/Blackbox.png?raw=true\" align=\"center\" width=\"600\" height=\"150\">\n</p>\n\n## ARX model\nARX model is a system identification model that uses the linear correlation between previous and future values. ARX model consists of previous output terms (y) and previous input (u) terms multiplied by the linear coefficients (a, b). The linear combination of past input and output value computes the one-step-ahead prediction of output value(y<sub>k+1</sub>).\nMultiple iterations of the one-step-ahead prediction return the multi-step prediction (from y<sub>k+1</sub> to y<sub>k+n</sub>). The time window of the past input and output terms is shifted toward the next segment for every iteration for multi-step prediction.\nHere is an example formula with <img src=\"https://render.githubusercontent.com/render/math?math=\\large n_a=3\"> and <img src=\"https://render.githubusercontent.com/render/math?math=\\large n_b=2\"> for the single input and single output system,\n<p align=\"center\">\n<img src=\"https://render.githubusercontent.com/render/math?math=\\large y_{k %2B 1}=a_{0} y_{k} %2B a_{1} y_{k-1} %2B a_{2} y_{k-2} %2B b_{0} u_{k} %2B b_{1} u_{k-1}\" >\n</p>\n\n<p align=\"center\">\n<img src=\"https://github.com/BYU-PRISM/Seeq/blob/main/docs/images/Onestep-ahead.png?raw=true\" align=\"center\" width=\"300\" height=\"100\">\n</p>\n\n<img src=\"https://render.githubusercontent.com/render/math?math=\\large ARX\">: Auto-Regressive with eXogenous input   \n(\"Auto\" indicates the past 'y' values, and \"Exogenous\" indicates the past 'u' values serving as model inputs)  \n<img src=\"https://render.githubusercontent.com/render/math?math=\\large a\">: ARX coefficient for the past output value  \n<img src=\"https://render.githubusercontent.com/render/math?math=\\large b\">: ARX coefficient for the past input value  \n<img src=\"https://render.githubusercontent.com/render/math?math=\\large n_a\">: Number of terms for the past output value  \n<img src=\"https://render.githubusercontent.com/render/math?math=\\large n_b\">: Number of terms for the past input value  \n<img src=\"https://render.githubusercontent.com/render/math?math=\\large n_c\">: Delay between input and output  \n<img src=\"https://render.githubusercontent.com/render/math?math=\\large k\">: present time step  \n\nHere is another example formula with **delay**  <img src=\"https://render.githubusercontent.com/render/math?math=\\small (n_a=3, n_b=2, n_c=2)\">,  \n\n<p align=\"center\">\n<img src=\"https://render.githubusercontent.com/render/math?math=\\large y_{k %2B 1}=a_{1} y_{k} %2B a_{2} y_{k-1} %2B a_{3} y_{k-2} %2B b_{1} u_{k-2-2} %2B b_{2} u_{k-1-2}\" >\n</p>\n\nAlthough the ARX model can be more detailed by increasing the number of terms <img src=\"https://render.githubusercontent.com/render/math?math=\\normalsize (n_a, n_b)\">, it could result in an overfit. Thus, it could be an essential step to compare the training and validation set, ensuring the prediction for the validation set is as good as the training set. The model fitting can be quantified using different statistical methods such as **MSE** (Mean Squared Error) or **SSE** (Sum of Squared Error)\n\n\n## Overview\n\n<table border=\"0\">\n<td><img alt=\"image\" src=\"https://github.com/BYU-PRISM/Seeq/blob/TF/docs/images/sysid-nn.png?raw=true\"></td>\n</table>\n\n<a href=\"https://raw.githubusercontent.com/BYU-PRISM/Seeq/TF/docs/images/sysid-matrix-setup-sopdt.png\">\n<img alt=\"image\" src=\"https://github.com/BYU-PRISM/Seeq/blob/TF/docs/images/sysid-matrix-setup-sopdt.png?raw=true\" width=23%></a>\n<!--  -->\n<a href=\"https://raw.githubusercontent.com/BYU-PRISM/Seeq/TF/docs/images/sysid-tf-matrix2.png\">\n<img alt=\"image\" src=\"https://github.com/BYU-PRISM/Seeq/blob/TF/docs/images/sysid-tf-matrix2.png?raw=true\" width=23%></a>\n<!--  -->\n<a href=\"https://raw.githubusercontent.com/BYU-PRISM/Seeq/TF/docs/images/sysid-tf-setup.png\">\n<img alt=\"image\" src=\"https://github.com/BYU-PRISM/Seeq/blob/TF/docs/images/sysid-tf-setup.png?raw=true\" width=23%></a>\n<!--  -->\n<a href=\"https://raw.githubusercontent.com/BYU-PRISM/Seeq/TF/docs/images/seeq-sysid-gui.png\">\n<img alt=\"image\" src=\"https://raw.githubusercontent.com/BYU-PRISM/Seeq/TF/docs/images/seeq-sysid-gui.png?raw=true\" width=23%></a>\n<!--  -->\n<a href=\"https://raw.githubusercontent.com/BYU-PRISM/Seeq/TF/docs/images/sysid-ss.png\">\n<img alt=\"image\" src=\"https://raw.githubusercontent.com/BYU-PRISM/Seeq/TF/docs/images/sysid-ss.png?raw=true\" width=23%></a>\n<!--  -->\n<a href=\"https://raw.githubusercontent.com/BYU-PRISM/Seeq/TF/docs/images/sysid-matrix-loading.png\">\n<img alt=\"image\" src=\"https://raw.githubusercontent.com/BYU-PRISM/Seeq/TF/docs/images/sysid-matrix-loading.png?raw=true\" width=23%></a>\n<!--  -->\n<a href=\"https://raw.githubusercontent.com/BYU-PRISM/Seeq/TF/docs/images/sysid-step-info.png\">\n<img alt=\"image\" src=\"https://raw.githubusercontent.com/BYU-PRISM/Seeq/TF/docs/images/sysid-step-info.png?raw=true\" width=23%></a>\n<!--  -->\n<a href=\"https://raw.githubusercontent.com/BYU-PRISM/Seeq/TF/docs/images/sysid-arx.png\">\n<img alt=\"image\" src=\"https://raw.githubusercontent.com/BYU-PRISM/Seeq/TF/docs/images/sysid-arx.png?raw=true\" width=23%></a>\n<br><br>\n<!-- <p align=\"center\">\n<img src=\"https://github.com/BYU-PRISM/Seeq/blob/main/docs/images/overview0.jpg?raw=true\" align=\"center\" width=\"800\" height=\"602\">\n</p>\n<p align=\"center\">\n<img src=\"https://github.com/BYU-PRISM/Seeq/blob/main/docs/images/overview1.png?raw=true\" align=\"center\" width=\"800\" height=\"450\">\n</p>\n<p align=\"center\">\n<img src=\"https://github.com/BYU-PRISM/Seeq/blob/main/docs/images/overview2.png?raw=true\" align=\"center\" width=\"800\" height=\"450\">\n</p>\n<p align=\"center\">\n<img src=\"https://github.com/BYU-PRISM/Seeq/blob/main/docs/images/overview3.png?raw=true\" align=\"center\" width=\"800\" height=\"450\">\n</p> -->\n\n\n# User Guide\n\nhttps://user-images.githubusercontent.com/55245976/136423446-9babb1da-41e6-4fcc-8bc0-066f98fc189d.mp4\n\n[**SeeQ-System Identification User Guide**](https://byu-prism.github.io/Seeq)\nprovides a more in-depth explanation of System Identification and how\nseeq-sysid works.\n\n\n# Installation\n\nThe backend of **seeq-sysid** requires **Python 3.7** or later.\n\n\n## Dependencies\n\nSee [`requirements.txt`](https://github.com/BYU-PRISM/Seeq/blob/main/requirements.txt) file for a list of\ndependencies and versions. Additionally, you will need to install the `seeq`\nmodule with the appropriate version that matches your Seeq server. For more\ninformation on the `seeq` module see\n[seeq at pypi](https://pypi.org/project/seeq/).\n\n\n## User Installation Requirements (Seeq Data Lab)\n\nIf you want to install **seeq-sysid** as a Seeq Add-on Tool, you will need:\n\n- Seeq Data Lab (>= R52.1.5, >=R53.0.2, or >=R54)\n\n- `seeq` module whose version matches the Seeq server version\n\n- Seeq administrator access\n\n- Enable Add-on Tools (or External Tools) in the Seeq server\n\n*Note:* For older versions of Seeq Data Lab you can find the installation guide `here``](https://user-images.githubusercontent.com/55245976/137494969-43d93065-1e23-4e7c-952f-2397993eb269.mp4).\n<!-- (>= R50.5.0, >=R51.1.0, or >=R52.1.0) -->\n\n\n## User Installation (Seeq Data Lab)\n\n1. Create a **new** Seeq Data Lab project and open the **Terminal** window\n2. Run `pip install seeq-sysid`\n3. Run `python -m seeq_sysid [--users <users_list> --groups <groups_list>]`\n\nFor more information about adding this addon to the seeq workbench\n[click here](https://seeq.atlassian.net/wiki/spaces/KB/pages/961675391/Add-on+Tool+Administration+and+Development).\n\n\n## Important links\n* [Documentation for SysID Add-on](https://byu-prism.github.io/Seeq/)\n* [Official source code repo](https://github.com/BYU-PRISM/Seeq)\n* [System Identification with Industrial Data Webinar](https://youtu.be/glWIzPPJRnQ) \n\n<img align=left width=400px src='https://apmonitor.com/wiki/uploads/Main/2021_12_sysid.png'>\n<br><br><br><br><br><br><br><br><br><br><br>\n\n\n## Source code\n\nYou can get started by cloning the repository with the command:\n\n```shell\ngit clone https://github.com/BYU-PRISM/Seeq.git\n```\n\n## Installation from source\n\nFor development work, it is highly recommended to create a python virtual\nenvironment and install the package in that working environment.\nIf you are not familiar with python virtual environments, you can take a\nlook [here](https://docs.python.org/3.8/tutorial/venv.html)\n\nOnce your virtual environment is activated, you can install **seeq-sysid** from the source with:\n\nGo to the setup.py directory (Seeq/'SysID Addon')\n```shell\npython setup.py install --user\n```\n\n*Note:* Remember that the `seeq` module version in your local environment should match the Seeq server version\n\n\n### User Interface Testing\n\nTo test the UI, use the `developer_notebook.ipynb` in the root directory of this project.\nThis notebook can also be used while debugging from your IDE. You can also\ncreate a whl first, install it on your virtual environment, and then\nrun `developer_notebook.ipynb` notebook there.\n\n\n# Changelog\n\n## v1.0.1\n- Notebook extensions and requirements update\n\n## v1.0.0\n- Minor improvements\n- Empty worksheet warning\n- Performance improvements\n\n## v0.7.1\n- Hotfix: dependencies updated for R57>=\n\n## v0.7.0\n- Performance improvement in TF identification\n- Progress bar added to TF identification\n- Legends added to TF chipsets\n- Bugs fixed for normalized plots in TF identification\n\n## v0.6.1\n- Minor bugs fixed\n\n## v0.6.0\n- MA model added\n- Units switch added\n- Version number added to the GUI\n\n## v0.5.1\n- Minor bugs fixed\n\n## v0.5.0\n\n- ARIMAX model added\n- Minor improvements\n- GUI object moved to app.py\n- Display results after calculation (Default)\n- Unit compatibility error fixed\n- Workbook pull step bypassed\n- Push functions improved\n\n## v0.4.1\n\n- Hotfix for R57+ (search, pull, push functions)\n\n## v0.4.0\n\n- Export ARX model (Gekko sysid outputs as a pickle)\n- Data Editor Added\n\n## v0.3\n\n- Push formula added for Transfer Function\n- ARX Seeq formula fixed\n- Mistune package conflict resolved\n\n## v0.2\n\n- Transfer Function\n- Documentation added\n- Shift method added to SubSpace.\n- Installation made easier.\n- Open Worksheet moved to the Hamburger Menu.\n\n## v0.1\n\n- Minor improvements\n\n## v0.0.7\n\n- Neural Network Model (RNN) added\n- FIR Model added\n\n## v0.0.6\n\n- Installation made easier\n- N4SID method was removed temporarily.\n\n\n\n# Support\n\nCode-related issues (e.g. bugs, feature requests) can be created in the\n[issue tracker](https://github.com/BYU-PRISM/Seeq/issues)\n\n\n# Citation\n\nPlease cite this work as:\n\n```shell\nseeq-sysid v1.0.1\nBYU PRISM Group https://apm.byu.edu/prism/\nhttps://github.com/BYU-PRISM/Seeq\n```\n\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Seeq System Identification Addon",
    "version": "1.0.1",
    "split_keywords": [
        "seeq",
        "prism",
        "system",
        "identification",
        "arx",
        "fir",
        "arimax",
        "subspace",
        "state-space",
        "neural-network",
        "addon",
        "time-series",
        "transfer",
        "function"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4b0f342f33a5e7a7dbff26c00fb707269ff642600767496fc70cd0c0a3f8ece6",
                "md5": "6cd02aef2bd63a49af8c2b92b4ff8198",
                "sha256": "804331956facab76f3095007f3423da7970fd782995bf817d428dd324b42cf9a"
            },
            "downloads": -1,
            "filename": "seeq_sysid-1.0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "6cd02aef2bd63a49af8c2b92b4ff8198",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 64299,
            "upload_time": "2023-04-19T16:17:16",
            "upload_time_iso_8601": "2023-04-19T16:17:16.342524Z",
            "url": "https://files.pythonhosted.org/packages/4b/0f/342f33a5e7a7dbff26c00fb707269ff642600767496fc70cd0c0a3f8ece6/seeq_sysid-1.0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3576bbb3c360ca02783dd32c7aa3fa5ef28ee73b8845e4873e70638bfddbfc43",
                "md5": "a05d68f82aaf31e13db00d3d69b59139",
                "sha256": "482d85ab684753eeca3a9657e6edcfa056cb5e4dc0b48cb27793ad9fafa0036d"
            },
            "downloads": -1,
            "filename": "seeq_sysid-1.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "a05d68f82aaf31e13db00d3d69b59139",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 55498,
            "upload_time": "2023-04-19T16:17:18",
            "upload_time_iso_8601": "2023-04-19T16:17:18.481449Z",
            "url": "https://files.pythonhosted.org/packages/35/76/bbb3c360ca02783dd32c7aa3fa5ef28ee73b8845e4873e70638bfddbfc43/seeq_sysid-1.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-04-19 16:17:18",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "BYU-PRISM",
    "github_project": "Seeq",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "circle": true,
    "lcname": "seeq-sysid"
}
        
Elapsed time: 0.06527s