Sensor2EventLog 2.0.0__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.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Azin Moradbeikie
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 all
13
+ 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 THE
21
+ SOFTWARE.
@@ -0,0 +1,53 @@
1
+ Metadata-Version: 2.4
2
+ Name: Sensor2EventLog
3
+ Version: 2.0.0
4
+ Summary: Knowledge-guided framework for transforming sensor data into event logs
5
+ Author: Azin Moradbeikie
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/azinmoradbeikie/Sensor2EventLog
8
+ Project-URL: Repository, https://github.com/azinmoradbeikie/Sensor2EventLog
9
+ Requires-Python: >=3.9
10
+ Description-Content-Type: text/markdown
11
+ License-File: LICENSE
12
+ Requires-Dist: numpy>=1.21.0
13
+ Requires-Dist: pandas>=1.3.0
14
+ Requires-Dist: scipy>=1.7.0
15
+ Requires-Dist: scikit-learn>=0.24.0
16
+ Requires-Dist: hmmlearn>=0.2.8
17
+ Requires-Dist: matplotlib>=3.4.0
18
+ Requires-Dist: seaborn>=0.11.0
19
+ Dynamic: license-file
20
+
21
+ <p align="center">
22
+ <img src="https://raw.githubusercontent.com/azinmoradbeikie/Sensor2EventLog/main/images/Sensor2EventLog_001.png" width="300" />
23
+ </p>
24
+
25
+ [![Documentation Status](https://readthedocs.org/projects/sensor2eventlog/badge/?version=latest)](https://sensor2eventlog.readthedocs.io/en/latest/?badge=latest)
26
+
27
+ # Sensor2EventLog
28
+ knowledge-guided framework that transforms raw sensor data into process-aware event logs by incorporating Machine Teaching (MT) principles. The core of the framework is a modular abstraction layer embedded in an interactive teaching loop (planning, explaining, and reviewing) where human experts map sensor behaviors correspond to process states.
29
+
30
+
31
+
32
+ ## Setup
33
+
34
+ - Clone the repository:
35
+ ```bash
36
+ git clone https://github.com/azinmoradbeikie/Sensor2EventLog.git
37
+ - Install dependencies
38
+ ```bash
39
+ pip install -r requirements.txt
40
+ cd Sensor2EventLog
41
+ - Running the Analysis
42
+ ```bash
43
+ python3 main.py
44
+
45
+ ## Tutorial
46
+
47
+ A self-contained toy walkthrough is available in [`tutorial/`](tutorial/README.md).
48
+
49
+ Run it with:
50
+
51
+ ```bash
52
+ python3 tutorial/toy_walkthrough.py
53
+ ```
@@ -0,0 +1,33 @@
1
+ <p align="center">
2
+ <img src="https://raw.githubusercontent.com/azinmoradbeikie/Sensor2EventLog/main/images/Sensor2EventLog_001.png" width="300" />
3
+ </p>
4
+
5
+ [![Documentation Status](https://readthedocs.org/projects/sensor2eventlog/badge/?version=latest)](https://sensor2eventlog.readthedocs.io/en/latest/?badge=latest)
6
+
7
+ # Sensor2EventLog
8
+ knowledge-guided framework that transforms raw sensor data into process-aware event logs by incorporating Machine Teaching (MT) principles. The core of the framework is a modular abstraction layer embedded in an interactive teaching loop (planning, explaining, and reviewing) where human experts map sensor behaviors correspond to process states.
9
+
10
+
11
+
12
+ ## Setup
13
+
14
+ - Clone the repository:
15
+ ```bash
16
+ git clone https://github.com/azinmoradbeikie/Sensor2EventLog.git
17
+ - Install dependencies
18
+ ```bash
19
+ pip install -r requirements.txt
20
+ cd Sensor2EventLog
21
+ - Running the Analysis
22
+ ```bash
23
+ python3 main.py
24
+
25
+ ## Tutorial
26
+
27
+ A self-contained toy walkthrough is available in [`tutorial/`](tutorial/README.md).
28
+
29
+ Run it with:
30
+
31
+ ```bash
32
+ python3 tutorial/toy_walkthrough.py
33
+ ```