effspm 0.1.5__cp39-cp39-macosx_11_0_arm64.whl → 0.2.7__cp39-cp39-macosx_11_0_arm64.whl
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.
- effspm/__init__.py +9 -2
- effspm/_core.cpp +91 -13
- effspm/_effspm.cpp +609 -0
- effspm/_effspm.cpython-39-darwin.so +0 -0
- effspm/btminer/src/build_mdd.cpp +63 -0
- effspm/btminer/src/build_mdd.hpp +40 -0
- effspm/btminer/src/freq_miner.cpp +179 -0
- effspm/btminer/src/freq_miner.hpp +39 -0
- effspm/btminer/src/load_inst.cpp +200 -0
- effspm/btminer/src/load_inst.hpp +25 -0
- effspm/btminer/src/utility.cpp +65 -0
- effspm/btminer/src/utility.hpp +40 -0
- effspm/freq_miner.hpp +7 -2
- effspm/htminer/src/build_mdd.cpp +192 -0
- effspm/htminer/src/build_mdd.hpp +64 -0
- effspm/htminer/src/freq_miner.cpp +350 -0
- effspm/htminer/src/freq_miner.hpp +60 -0
- effspm/htminer/src/load_inst.cpp +394 -0
- effspm/htminer/src/load_inst.hpp +23 -0
- effspm/htminer/src/utility.cpp +72 -0
- effspm/htminer/src/utility.hpp +77 -0
- effspm/largebm/src/build_mdd.cpp +137 -0
- effspm/largebm/src/build_mdd.hpp +47 -0
- effspm/largebm/src/freq_miner.cpp +349 -0
- effspm/largebm/src/freq_miner.hpp +48 -0
- effspm/largebm/src/load_inst.cpp +230 -0
- effspm/largebm/src/load_inst.hpp +45 -0
- effspm/largebm/src/utility.cpp +45 -0
- effspm/largebm/src/utility.hpp +18 -0
- effspm/largehm/src/build_mdd.cpp +174 -0
- effspm/largehm/src/build_mdd.hpp +93 -0
- effspm/largehm/src/freq_miner.cpp +445 -0
- effspm/largehm/src/freq_miner.hpp +77 -0
- effspm/largehm/src/load_inst.cpp +357 -0
- effspm/largehm/src/load_inst.hpp +64 -0
- effspm/largehm/src/utility.cpp +38 -0
- effspm/largehm/src/utility.hpp +29 -0
- effspm/largepp/src/freq_miner.cpp +170 -0
- effspm/largepp/src/freq_miner.hpp +43 -0
- effspm/largepp/src/load_inst.cpp +219 -0
- effspm/largepp/src/load_inst.hpp +28 -0
- effspm/largepp/src/utility.cpp +34 -0
- effspm/largepp/src/utility.hpp +21 -0
- effspm/load_inst.hpp +18 -12
- effspm-0.2.7.dist-info/METADATA +237 -0
- effspm-0.2.7.dist-info/RECORD +53 -0
- {effspm-0.1.5.dist-info → effspm-0.2.7.dist-info}/WHEEL +1 -2
- effspm/_core.cpython-39-darwin.so +0 -0
- effspm-0.1.5.dist-info/METADATA +0 -38
- effspm-0.1.5.dist-info/RECORD +0 -14
- {effspm-0.1.5.dist-info → effspm-0.2.7.dist-info}/licenses/LICENSE +0 -0
- {effspm-0.1.5.dist-info → effspm-0.2.7.dist-info}/top_level.txt +0 -0
effspm-0.1.5.dist-info/METADATA
DELETED
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: effspm
|
|
3
|
-
Version: 0.1.5
|
|
4
|
-
Summary: Prefix‑Projection sequential pattern mining
|
|
5
|
-
Home-page: https://github.com/yeshu999/effspm
|
|
6
|
-
Author: yeshu999
|
|
7
|
-
Author-email: yeshu999 <vootlayeswanth20@gmail.com>
|
|
8
|
-
Project-URL: Homepage, https://github.com/yeshu999/effspm
|
|
9
|
-
Project-URL: Source, https://github.com/yeshu999/effspm
|
|
10
|
-
Classifier: Programming Language :: Python :: 3
|
|
11
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
12
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
15
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
-
Classifier: Programming Language :: C++
|
|
18
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
19
|
-
Classifier: Operating System :: OS Independent
|
|
20
|
-
Requires-Python: >=3.7
|
|
21
|
-
Description-Content-Type: text/markdown
|
|
22
|
-
License-File: LICENSE
|
|
23
|
-
Requires-Dist: pybind11>=2.6
|
|
24
|
-
Dynamic: author
|
|
25
|
-
Dynamic: home-page
|
|
26
|
-
Dynamic: license-file
|
|
27
|
-
Dynamic: requires-python
|
|
28
|
-
|
|
29
|
-
# effspm
|
|
30
|
-
|
|
31
|
-
**Efficient Sequential Pattern Mining via Prefix‑Projection**
|
|
32
|
-
|
|
33
|
-
This library provides a Python interface to mine sequential patterns using the prefix‑projection algorithm, implemented in C++ for performance and exposed via pybind11.
|
|
34
|
-
|
|
35
|
-
## Installation
|
|
36
|
-
|
|
37
|
-
```bash
|
|
38
|
-
pip install effspm
|
effspm-0.1.5.dist-info/RECORD
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
effspm/utility.hpp,sha256=Y_MQVk9AmJWjguKyuyk0LraTi_6VzZFg0StsmVOCkNc,744
|
|
2
|
-
effspm/_core.cpp,sha256=-YJAJtMQ_ssFQe6dByk78q8uXEJIRpG9lvDTLsVjjZE,736
|
|
3
|
-
effspm/load_inst.hpp,sha256=-j06r2yatU-MAzlPlPw7p4QqWVLWaaZKLD3IDWZSIb8,440
|
|
4
|
-
effspm/__init__.py,sha256=42d7tN5Mq0H7ezvMGQWnA83G-5t5Y-QRU5tQjOn4x5s,45
|
|
5
|
-
effspm/freq_miner.cpp,sha256=9K-nO_c-vVzbFlmh511vmvypA2fu1TXpiJhyx03owDU,4642
|
|
6
|
-
effspm/load_inst.cpp,sha256=804fvkfdtYqFMP9Jla6dM2romWWPJmSeCwLm0wEZE5M,4517
|
|
7
|
-
effspm/_core.cpython-39-darwin.so,sha256=BY9n9ZILYtGhIaili3G0xPESxNhW4kXYJkZJ8WDAHlI,228792
|
|
8
|
-
effspm/freq_miner.hpp,sha256=nyIv7HU94UcimdLlzN8yW_mHwOEzrHj5cRvTTDd6bRU,669
|
|
9
|
-
effspm/utility.cpp,sha256=luWwBNy7OVWRmam9gz2RjhtrRmx6c37oOobFJaDWqcA,1403
|
|
10
|
-
effspm-0.1.5.dist-info/RECORD,,
|
|
11
|
-
effspm-0.1.5.dist-info/WHEEL,sha256=HO9mXbqgM4Go8g994JGCRqzrGrswAcuXl8i0pdN2UG8,134
|
|
12
|
-
effspm-0.1.5.dist-info/top_level.txt,sha256=2O-AuI0nw0pDmJMo2jzM1wvV2rj48AmkjskkAnsuuQk,7
|
|
13
|
-
effspm-0.1.5.dist-info/METADATA,sha256=WpDCne8CdEA7d5tLDBO3av1GdVqAwYExcyEMpvvONy4,1311
|
|
14
|
-
effspm-0.1.5.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
File without changes
|
|
File without changes
|