accusleepy 0.4.4__py3-none-any.whl → 0.4.5__py3-none-any.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.
|
Binary file
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: accusleepy
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.5
|
|
4
4
|
Summary: Python implementation of AccuSleep
|
|
5
5
|
License: GPL-3.0-only
|
|
6
6
|
Author: Zeke Barger
|
|
7
7
|
Author-email: zekebarger@gmail.com
|
|
8
|
-
Requires-Python: >=3.
|
|
8
|
+
Requires-Python: >=3.11,<3.14
|
|
9
9
|
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
10
10
|
Classifier: Programming Language :: Python :: 3
|
|
11
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
12
11
|
Classifier: Programming Language :: Python :: 3.11
|
|
13
12
|
Classifier: Programming Language :: Python :: 3.12
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
14
14
|
Requires-Dist: fastparquet (>=2024.11.0,<2025.0.0)
|
|
15
15
|
Requires-Dist: joblib (>=1.4.2,<2.0.0)
|
|
16
16
|
Requires-Dist: matplotlib (>=3.10.1,<4.0.0)
|
|
@@ -18,7 +18,7 @@ Requires-Dist: numpy (>=2.2.4,<3.0.0)
|
|
|
18
18
|
Requires-Dist: pandas (>=2.2.3,<3.0.0)
|
|
19
19
|
Requires-Dist: pillow (>=11.1.0,<12.0.0)
|
|
20
20
|
Requires-Dist: pre-commit (>=4.2.0,<5.0.0)
|
|
21
|
-
Requires-Dist: pyside6 (>=6.
|
|
21
|
+
Requires-Dist: pyside6 (>=6.9.0,<7.0.0)
|
|
22
22
|
Requires-Dist: scipy (>=1.15.2,<2.0.0)
|
|
23
23
|
Requires-Dist: toml (>=0.10.2,<0.11.0)
|
|
24
24
|
Requires-Dist: torch (>=2.6.0,<3.0.0)
|
|
@@ -30,9 +30,17 @@ Description-Content-Type: text/markdown
|
|
|
30
30
|
|
|
31
31
|
## Description
|
|
32
32
|
|
|
33
|
-
AccuSleePy is
|
|
34
|
-
|
|
35
|
-
|
|
33
|
+
AccuSleePy is set of graphical user interfaces for scoring rodent sleep
|
|
34
|
+
using EEG and EMG recordings.
|
|
35
|
+
It offers the following improvements over the MATLAB version (AccuSleep):
|
|
36
|
+
|
|
37
|
+
- Up to 10 brain states can be configured through the user interface
|
|
38
|
+
- Classification models can be trained through the user interface
|
|
39
|
+
- Model files contain useful metadata (brain state configuration,
|
|
40
|
+
epoch length, number of epochs)
|
|
41
|
+
- Models optimized for real-time scoring can be trained
|
|
42
|
+
- Lists of recordings can be imported and exported for repeatable batch processing
|
|
43
|
+
- Undo/redo functionality in the manual scoring interface
|
|
36
44
|
|
|
37
45
|
If you use AccuSleep in your research, please cite our
|
|
38
46
|
[publication](https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0224642):
|
|
@@ -43,28 +51,20 @@ The data and models associated with AccuSleep are available at https://osf.io/py
|
|
|
43
51
|
|
|
44
52
|
Please contact zekebarger (at) gmail (dot) com with any questions or comments about the software.
|
|
45
53
|
|
|
46
|
-
## What's new
|
|
47
|
-
|
|
48
|
-
AccuSleePy offers the following improvements over the MATLAB version:
|
|
49
|
-
|
|
50
|
-
- Up to 10 brain states can be configured through the user interface
|
|
51
|
-
- Models can be trained through the user interface
|
|
52
|
-
- Model files contain useful metadata (brain state configuration,
|
|
53
|
-
epoch length, number of epochs)
|
|
54
|
-
- Models optimized for real-time scoring can be trained
|
|
55
|
-
- Lists of recordings can be imported and exported for repeatable batch processing
|
|
56
|
-
- Undo/redo functionality in the manual scoring interface
|
|
57
54
|
|
|
58
55
|
## Installation
|
|
59
56
|
|
|
60
57
|
- (recommended) create a new virtual environment (using
|
|
61
58
|
[venv](https://docs.python.org/3/library/venv.html),
|
|
62
59
|
[conda](https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html),
|
|
63
|
-
etc.)
|
|
60
|
+
etc.) with python >=3.11,<3.14
|
|
64
61
|
- (optional) if you have a CUDA device and want to speed up model training, [install PyTorch](https://pytorch.org/)
|
|
65
62
|
- `pip install accusleepy`
|
|
66
63
|
- (optional) download a classification model from https://osf.io/py5eb/ under /python_format/models/
|
|
67
64
|
|
|
65
|
+
Note that upgrading or reinstalling the package will overwrite any changes
|
|
66
|
+
to the [config file](accusleepy/config.json).
|
|
67
|
+
|
|
68
68
|
## Usage
|
|
69
69
|
|
|
70
70
|
`python -m accusleepy` will open the primary interface.
|
|
@@ -73,7 +73,16 @@ etc.) using python >=3.10,<3.13
|
|
|
73
73
|
|
|
74
74
|
[Guide to the manual scoring interface](accusleepy/gui/text/manual_scoring_guide.md)
|
|
75
75
|
|
|
76
|
+
## Changelog
|
|
77
|
+
|
|
78
|
+
- 0.4.5: Added support for python 3.13, **removed support for python 3.10.**
|
|
79
|
+
- 0.4.4: Performance improvements
|
|
80
|
+
- 0.4.3: Improved unit tests and user manuals
|
|
81
|
+
- 0.4.0: Improved visuals and user manuals
|
|
82
|
+
- 0.1.0-0.3.1: Early development versions
|
|
83
|
+
|
|
76
84
|
## Screenshots
|
|
85
|
+
|
|
77
86
|
Primary interface
|
|
78
87
|

|
|
79
88
|
|
|
@@ -17,7 +17,7 @@ accusleepy/gui/icons/save.png,sha256=J3EA8iU1BqLYRSsrq_OdoZlqrv2yfL7oV54DklTy_DI
|
|
|
17
17
|
accusleepy/gui/icons/up_arrow.png,sha256=V9yF9t1WgjPaUu-mF1YGe_DfaRHg2dUpR_sUVVcvVvY,3329
|
|
18
18
|
accusleepy/gui/icons/zoom_in.png,sha256=MFWnKZp7Rvh4bLPq4Cqo4sB_jQYedUUtT8-ZO8tNYyc,13589
|
|
19
19
|
accusleepy/gui/icons/zoom_out.png,sha256=IB8Jecb3i0U4qjWRR46ridjLpvLCSe7PozBaLqQqYSw,13055
|
|
20
|
-
accusleepy/gui/images/primary_window.png,sha256=
|
|
20
|
+
accusleepy/gui/images/primary_window.png,sha256=x_ppmv0fKySxXAzbQHCv5JFLdM2ETTxJqUHyPVo5xck,596421
|
|
21
21
|
accusleepy/gui/images/viewer_window.png,sha256=gKwIXkgsl1rTMfmMeMwNyjEAUL5I6FXk9-hpMR92qTI,970630
|
|
22
22
|
accusleepy/gui/images/viewer_window_annotated.png,sha256=M5NmoWDHRLS334Rp8SsfOPUUXzPltH1p7aB0BrISgQU,261481
|
|
23
23
|
accusleepy/gui/main.py,sha256=QLtxVvBz81CjDeBddJZNDCLd207j9WJga1n45nlsxWI,54384
|
|
@@ -35,6 +35,6 @@ accusleepy/gui/viewer_window.ui,sha256=D1LwUFR-kZ_GWGZFFtXvGJdFWghLrOWZTblQeLQt9
|
|
|
35
35
|
accusleepy/models.py,sha256=Muapsw088AUHqRIbW97Rkbv0oiwCtQvO9tEoBCC-MYg,1476
|
|
36
36
|
accusleepy/multitaper.py,sha256=V6MJDk0OSWhg2MFhrnt9dvYrHiNsk2T7IxAA7paZVyE,25549
|
|
37
37
|
accusleepy/signal_processing.py,sha256=-aXnywfp1LBsk3DcbIMmZlgv3f8j6sZ6js0bizZId0o,21718
|
|
38
|
-
accusleepy-0.4.
|
|
39
|
-
accusleepy-0.4.
|
|
40
|
-
accusleepy-0.4.
|
|
38
|
+
accusleepy-0.4.5.dist-info/METADATA,sha256=qKYYF4smvfZF2l92BjYNpDyT6mB6QTqg10kw4MAxtRU,3875
|
|
39
|
+
accusleepy-0.4.5.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
|
40
|
+
accusleepy-0.4.5.dist-info/RECORD,,
|
|
File without changes
|