ivoryos 0.1.9__tar.gz → 0.1.10__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {ivoryos-0.1.9 → ivoryos-0.1.10}/LICENSE +21 -21
- {ivoryos-0.1.9 → ivoryos-0.1.10}/MANIFEST.in +7 -7
- {ivoryos-0.1.9/ivoryos.egg-info → ivoryos-0.1.10}/PKG-INFO +162 -169
- {ivoryos-0.1.9 → ivoryos-0.1.10}/README.md +151 -150
- {ivoryos-0.1.9 → ivoryos-0.1.10/ivoryOS.egg-info}/PKG-INFO +162 -169
- {ivoryos-0.1.9/ivoryos.egg-info → ivoryos-0.1.10/ivoryOS.egg-info}/SOURCES.txt +7 -0
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/__init__.py +118 -99
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/config.py +47 -47
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/routes/auth/auth.py +100 -65
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/routes/auth/templates/auth/login.html +25 -25
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/routes/auth/templates/auth/signup.html +32 -32
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/routes/control/control.py +400 -272
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/routes/control/templates/control/controllers.html +75 -75
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/routes/control/templates/control/controllers_home.html +50 -50
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/routes/control/templates/control/controllers_new.html +89 -89
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/routes/database/database.py +188 -114
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/routes/database/templates/database/experiment_database.html +72 -72
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/routes/design/design.py +541 -416
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/routes/design/templates/design/experiment_builder.html +415 -415
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/routes/design/templates/design/experiment_run.html +325 -325
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/routes/main/main.py +42 -25
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/routes/main/templates/main/help.html +141 -141
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/routes/main/templates/main/home.html +68 -68
- ivoryos-0.1.10/ivoryos/static/.DS_Store +0 -0
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/static/js/overlay.js +12 -12
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/static/js/socket_handler.js +34 -34
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/static/js/sortable_card.js +24 -24
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/static/js/sortable_design.js +36 -36
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/static/style.css +201 -201
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/templates/base.html +143 -143
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/utils/db_models.py +518 -518
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/utils/form.py +316 -316
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/utils/global_config.py +67 -67
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/utils/llm_agent.py +183 -183
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/utils/script_runner.py +165 -164
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/utils/utils.py +425 -422
- ivoryos-0.1.10/ivoryos/version.py +1 -0
- {ivoryos-0.1.9 → ivoryos-0.1.10}/setup.cfg +4 -4
- {ivoryos-0.1.9 → ivoryos-0.1.10}/setup.py +28 -27
- {ivoryos-0.1.9/ivoryos.egg-info → ivoryos-0.1.10/ivoryOS.egg-info}/dependency_links.txt +0 -0
- {ivoryos-0.1.9/ivoryos.egg-info → ivoryos-0.1.10/ivoryOS.egg-info}/requires.txt +0 -0
- {ivoryos-0.1.9/ivoryos.egg-info → ivoryos-0.1.10/ivoryOS.egg-info}/top_level.txt +0 -0
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/routes/__init__.py +0 -0
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/routes/auth/__init__.py +0 -0
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/routes/control/__init__.py +0 -0
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/routes/database/__init__.py +0 -0
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/routes/design/__init__.py +0 -0
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/routes/main/__init__.py +0 -0
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/static/favicon.ico +0 -0
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/static/gui_annotation/Slide1.png +0 -0
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/static/gui_annotation/Slide2.PNG +0 -0
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/static/logo.webp +0 -0
- {ivoryos-0.1.9 → ivoryos-0.1.10}/ivoryos/utils/__init__.py +0 -0
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2023-2024 Ivory Zhang | Hein Lab
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in
|
|
13
|
-
all copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
-
THE SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023-2024 Ivory Zhang | Hein Lab
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
graft ivoryos/static
|
|
2
|
-
graft ivoryos/templates
|
|
3
|
-
graft ivoryos/routes
|
|
4
|
-
global-exclude *.pyc
|
|
5
|
-
|
|
6
|
-
# exclude examples
|
|
7
|
-
prune ivoryos/example
|
|
1
|
+
graft ivoryos/static
|
|
2
|
+
graft ivoryos/templates
|
|
3
|
+
graft ivoryos/routes
|
|
4
|
+
global-exclude *.pyc
|
|
5
|
+
|
|
6
|
+
# exclude examples
|
|
7
|
+
prune ivoryos/example
|
|
8
8
|
prune ivoryos/docs
|
|
@@ -1,169 +1,162 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: ivoryos
|
|
3
|
-
Version: 0.1.
|
|
4
|
-
Summary: an open-source Python package enabling Self-Driving Labs (SDLs) interoperability
|
|
5
|
-
Home-page: https://gitlab.com/heingroup/ivoryos
|
|
6
|
-
Author: Ivory Zhang
|
|
7
|
-
Author-email: ivoryzhang@chem.ubc.ca
|
|
8
|
-
License: MIT
|
|
9
|
-
Description-Content-Type: text/markdown
|
|
10
|
-
License-File: LICENSE
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
- [
|
|
26
|
-
- [
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
-
|
|
46
|
-
-
|
|
47
|
-
- Flask-
|
|
48
|
-
-
|
|
49
|
-
-
|
|
50
|
-
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
```bash
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
```
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
```
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
- **
|
|
81
|
-
- **
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
```python
|
|
114
|
-
ivoryos.run(__name__, logger="logger
|
|
115
|
-
```
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
```
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
```
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
- **`ivoryos_data/`**:
|
|
148
|
-
- **`ivoryos_data/
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
## Authors and Acknowledgement
|
|
164
|
-
Ivory Zhang, Lucy Hao
|
|
165
|
-
|
|
166
|
-
Authors acknowledge all former and current Hein Lab members for their valuable suggestions.
|
|
167
|
-
|
|
168
|
-
## License
|
|
169
|
-
[LICENSE](LICENSE)
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: ivoryos
|
|
3
|
+
Version: 0.1.10
|
|
4
|
+
Summary: an open-source Python package enabling Self-Driving Labs (SDLs) interoperability
|
|
5
|
+
Home-page: https://gitlab.com/heingroup/ivoryos
|
|
6
|
+
Author: Ivory Zhang
|
|
7
|
+
Author-email: ivoryzhang@chem.ubc.ca
|
|
8
|
+
License: MIT
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
License-File: LICENSE
|
|
11
|
+
|
|
12
|
+
[](https://ivoryos.readthedocs.io/en/latest/?badge=latest)
|
|
13
|
+
[](https://pypi.org/project/ivoryos/)
|
|
14
|
+

|
|
15
|
+
|
|
16
|
+

|
|
17
|
+
# ivoryOS: interoperable Web UI for self-driving laboratories (SDLs)
|
|
18
|
+
"plug and play" web UI extension for flexible SDLs.
|
|
19
|
+
|
|
20
|
+
## Table of Contents
|
|
21
|
+
- [Description](#description)
|
|
22
|
+
- [System requirements](#system-requirements)
|
|
23
|
+
- [Installation](#installation)
|
|
24
|
+
- [Instructions for use](#instructions-for-use)
|
|
25
|
+
- [Demo](#demo)
|
|
26
|
+
- [License](#license)
|
|
27
|
+
|
|
28
|
+
## Description
|
|
29
|
+
Granting SDLs flexibility and modularity makes it almost impossible to design a UI, yet it's a necessity for allowing more people to interact with it (democratisation).
|
|
30
|
+
This web UI aims to ease up the control of any Python-based SDLs by displaying functions and parameters for initialized modules dynamically.
|
|
31
|
+
The modules can be hardware API, high-level functions, or experiment workflow.
|
|
32
|
+
With the least modification of the current workflow, user can design, manage and execute their experimental designs and monitor the execution process.
|
|
33
|
+
|
|
34
|
+
## System requirements
|
|
35
|
+
This software is developed and tested using Windows. This software and its dependencies are compatible across major platforms: Linux, macOS, and Windows. Some dependencies (Flask-SQLAlchemy) may require additional setup.
|
|
36
|
+
|
|
37
|
+
### Python Version
|
|
38
|
+
Python >=3.7 for best compatibility.
|
|
39
|
+
### Python dependencies
|
|
40
|
+
This software is compatible with the latest versions of all dependencies.
|
|
41
|
+
- bcrypt~=4.0
|
|
42
|
+
- Flask-Login~=0.6
|
|
43
|
+
- Flask-Session~=0.8
|
|
44
|
+
- Flask-SocketIO~=5.3
|
|
45
|
+
- Flask-SQLAlchemy~=3.1
|
|
46
|
+
- SQLAlchemy-Utils~=0.41
|
|
47
|
+
- Flask-WTF~=1.2
|
|
48
|
+
- python-dotenv==1.0.1
|
|
49
|
+
- openai (optional ~=1.53)
|
|
50
|
+
- ax-platform (optional ~=0.3 or ~=0.4 for Python>=3.9)
|
|
51
|
+
|
|
52
|
+
## Installation
|
|
53
|
+
```bash
|
|
54
|
+
pip install ivoryos
|
|
55
|
+
```
|
|
56
|
+
or
|
|
57
|
+
```bash
|
|
58
|
+
git clone https://gitlab.com/heingroup/ivoryos.git
|
|
59
|
+
cd ivoryos
|
|
60
|
+
pip install -e .
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
The installation may take 10 to 30 seconds to install. The installation time may vary and take up to several minutes, depending on the network speed, computer performance, and virtual environment settings.
|
|
64
|
+
|
|
65
|
+
## Instructions for use
|
|
66
|
+
### Quick start
|
|
67
|
+
In your SDL script, use `ivoryos(__name__)`.
|
|
68
|
+
```python
|
|
69
|
+
import ivoryos
|
|
70
|
+
|
|
71
|
+
ivoryos.run(__name__)
|
|
72
|
+
```
|
|
73
|
+
### Login
|
|
74
|
+
Create an account and login (local database)
|
|
75
|
+
### Features
|
|
76
|
+
- **Direct control**: direct function calling _Device_ tab
|
|
77
|
+
- **Workflow design and iteration**:
|
|
78
|
+
- **Design**: add function to canvas in _Design_ tab. click `Compile and Run` button to go to the execution page
|
|
79
|
+
- **Execution**: configure iteration methods and parameters in _Compile/Run_ tab.
|
|
80
|
+
- **Database**: manage workflows in _Library_ tab.
|
|
81
|
+
- **Info page**: additional info in _About_ tab.
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
### Additional settings
|
|
85
|
+
#### AI assistant
|
|
86
|
+
To streamline the experimental design on SDLs, we also integrate Large Language Models (LLMs) to interpret the inspected functions and generate code according to task descriptions.
|
|
87
|
+
|
|
88
|
+
#### Enable LLMs with [OpenAI API](https://github.com/openai/openai-python)
|
|
89
|
+
1. Create a `.env` file for `OPENAI_API_KEY`
|
|
90
|
+
```
|
|
91
|
+
OPENAI_API_KEY="Your API Key"
|
|
92
|
+
```
|
|
93
|
+
2. In your SDL script, define model, you can use any GPT models.
|
|
94
|
+
|
|
95
|
+
```python
|
|
96
|
+
ivoryos.run(__name__, model="gpt-3.5-turbo")
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
#### Enable local LLMs with [Ollama](https://ollama.com/)
|
|
100
|
+
1. Download Ollama.
|
|
101
|
+
2. pull models from Ollama
|
|
102
|
+
3. In your SDL script, define LLM server and model, you can use any models available on Ollama.
|
|
103
|
+
|
|
104
|
+
```python
|
|
105
|
+
ivoryos.run(__name__, llm_server="localhost", model="llama3.1")
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
#### Add additional logger(s)
|
|
109
|
+
```python
|
|
110
|
+
ivoryos.run(__name__, logger="logger name")
|
|
111
|
+
```
|
|
112
|
+
or
|
|
113
|
+
```python
|
|
114
|
+
ivoryos.run(__name__, logger=["logger 1", "logger 2"])
|
|
115
|
+
```
|
|
116
|
+
#### Offline (design without hardware connection)
|
|
117
|
+
After one successful connection, a blueprint will be automatically saved and made accessible without hardware connection. In a new Python script in the same directory, use `ivoryos.run()` to start offline mode.
|
|
118
|
+
|
|
119
|
+
```python
|
|
120
|
+
ivoryos.run()
|
|
121
|
+
```
|
|
122
|
+
## Demo
|
|
123
|
+
In the [abstract_sdl.py](https://gitlab.com/heingroup/ivoryos/-/blob/main/example/sdl_example/abstract_sdl.py), where instances of `AbstractSDL` is created as `sdl`,
|
|
124
|
+
addresses will be available on terminal.
|
|
125
|
+
```Python
|
|
126
|
+
ivoryos.run(__name__)
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
* Running on all addresses (0.0.0.0)
|
|
130
|
+
* Running on http://127.0.0.1:8000
|
|
131
|
+
* Running on http://xxx.xx.xx.xxx:8000
|
|
132
|
+
|
|
133
|
+
### Deck function and web form
|
|
134
|
+

|
|
135
|
+
|
|
136
|
+
### Text-to-code demo
|
|
137
|
+

|
|
138
|
+
|
|
139
|
+
### Directory structure
|
|
140
|
+
|
|
141
|
+
When you run the application for the first time, it will automatically create the following folders and files in the same directory:
|
|
142
|
+
|
|
143
|
+
- **`ivoryos_data/`**: Main directory for application-related data.
|
|
144
|
+
- **`ivoryos_data/config_csv/`**: Contains iteration configuration files in CSV format.
|
|
145
|
+
- **`ivoryos_data/llm_output/`**: Stores raw prompt generated for the large language model.
|
|
146
|
+
- **`ivoryos_data/pseudo_deck/`**: Contains pseudo-deck `.pkl` files for offline access.
|
|
147
|
+
- **`ivoryos_data/results/`**: Used for storing results or outputs during workflow execution.
|
|
148
|
+
- **`ivoryos_data/scripts/`**: Holds Python scripts compiled from the visual programming script design.
|
|
149
|
+
|
|
150
|
+
- **`default.log`**: Log file that captures application logs.
|
|
151
|
+
- **`ivoryos.db`**: Database file that stores application data locally.
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
### Demo video
|
|
155
|
+
Intro + Tutorial + Demo with PurPOSE platform
|
|
156
|
+
https://youtu.be/dFfJv9I2-1g
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
## Authors and Acknowledgement
|
|
160
|
+
Ivory Zhang, Lucy Hao
|
|
161
|
+
|
|
162
|
+
Authors acknowledge all former and current Hein Lab members for their valuable suggestions.
|