accusleepy 0.1.0__py3-none-any.whl → 0.1.2__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.
- accusleepy/gui/main.py +3 -1
- accusleepy/gui/primary_window.py +399 -365
- accusleepy/gui/primary_window.ui +1055 -936
- accusleepy/gui/text/config_guide.txt +5 -2
- {accusleepy-0.1.0.dist-info → accusleepy-0.1.2.dist-info}/METADATA +11 -7
- {accusleepy-0.1.0.dist-info → accusleepy-0.1.2.dist-info}/RECORD +7 -7
- {accusleepy-0.1.0.dist-info → accusleepy-0.1.2.dist-info}/WHEEL +0 -0
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
This is the current brain state configuration.
|
|
2
|
+
If you change it, click 'Save' to store the changes.
|
|
2
3
|
|
|
3
4
|
Each brain state has several attributes:
|
|
4
5
|
|
|
@@ -20,5 +21,7 @@ Each brain state has several attributes:
|
|
|
20
21
|
influence classification accuracy slightly. The values
|
|
21
22
|
for all scored brain states must sum to 1.
|
|
22
23
|
|
|
23
|
-
|
|
24
|
-
|
|
24
|
+
Important notes:
|
|
25
|
+
- Changing these settings can invalidate existing label files,
|
|
26
|
+
calibration files, and trained models!
|
|
27
|
+
- Reinstalling AccuSleePy will overwrite this configuration.
|
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: accusleepy
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
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.10,<3.
|
|
8
|
+
Requires-Python: >=3.10,<3.13
|
|
9
9
|
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
10
10
|
Classifier: Programming Language :: Python :: 3
|
|
11
11
|
Classifier: Programming Language :: Python :: 3.10
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.11
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.12
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.13
|
|
15
14
|
Requires-Dist: fastparquet (>=2024.11.0,<2025.0.0)
|
|
16
15
|
Requires-Dist: joblib (>=1.4.2,<2.0.0)
|
|
17
16
|
Requires-Dist: matplotlib (>=3.10.1,<4.0.0)
|
|
@@ -19,7 +18,7 @@ Requires-Dist: numpy (>=2.2.4,<3.0.0)
|
|
|
19
18
|
Requires-Dist: pandas (>=2.2.3,<3.0.0)
|
|
20
19
|
Requires-Dist: pillow (>=11.1.0,<12.0.0)
|
|
21
20
|
Requires-Dist: pre-commit (>=4.2.0,<5.0.0)
|
|
22
|
-
Requires-Dist: pyside6 (>=6.
|
|
21
|
+
Requires-Dist: pyside6 (>=6.7.1,<6.8.0)
|
|
23
22
|
Requires-Dist: scipy (>=1.15.2,<2.0.0)
|
|
24
23
|
Requires-Dist: torch (>=2.6.0,<3.0.0)
|
|
25
24
|
Requires-Dist: torchvision (>=0.21.0,<0.22.0)
|
|
@@ -42,11 +41,16 @@ Please contact zekebarger (at) gmail (dot) com with any questions or comments ab
|
|
|
42
41
|
|
|
43
42
|
## Installation instructions
|
|
44
43
|
|
|
45
|
-
|
|
44
|
+
- (recommended) create a new virtual environment (using
|
|
45
|
+
[venv](https://docs.python.org/3/library/venv.html),
|
|
46
|
+
[conda](https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html),
|
|
47
|
+
etc.) using python >=3.10,<3.13
|
|
48
|
+
- (optional) if you have a CUDA device and want to speed up model training, [install PyTorch](https://pytorch.org/)
|
|
49
|
+
- `pip install accusleepy`
|
|
46
50
|
|
|
47
|
-
##
|
|
51
|
+
## Usage
|
|
48
52
|
|
|
49
|
-
|
|
53
|
+
`python -m accusleepy`
|
|
50
54
|
|
|
51
55
|
## Acknowledgements
|
|
52
56
|
|
|
@@ -17,14 +17,14 @@ 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/main.py,sha256=
|
|
20
|
+
accusleepy/gui/main.py,sha256=8W2UvYwEvVXNS88Z5MoAOnyj5jmsRG-c_lXk58WnI98,53049
|
|
21
21
|
accusleepy/gui/manual_scoring.py,sha256=Ce-X4A7pm3Hb0PtiqebF59rpSEMcHhWWhoO-L7rYtTE,40677
|
|
22
22
|
accusleepy/gui/mplwidget.py,sha256=f9O3u_96whQGUwpi3o_QGc7yjiETX5vE0oj3ePXTJWE,12279
|
|
23
|
-
accusleepy/gui/primary_window.py,sha256=
|
|
24
|
-
accusleepy/gui/primary_window.ui,sha256=
|
|
23
|
+
accusleepy/gui/primary_window.py,sha256=1CsHrX9jenL_22imlnI4CDsNUYVCfrDwI2lR4tapcgU,99422
|
|
24
|
+
accusleepy/gui/primary_window.ui,sha256=r4d3g7CRC2DZof9FjR12lid1kxWP3wb5JpPuPm0ijY0,141515
|
|
25
25
|
accusleepy/gui/resources.qrc,sha256=ByNEmJqr0YbKBqoZGvONZtjyNYr4ST4enO6TEdYSqWg,802
|
|
26
26
|
accusleepy/gui/resources_rc.py,sha256=Z2e34h30U4snJjnYdZVV9B6yjATKxxfvgTRt5uXtQdo,329727
|
|
27
|
-
accusleepy/gui/text/config_guide.txt,sha256=
|
|
27
|
+
accusleepy/gui/text/config_guide.txt,sha256=4JL9rPd8yr6aYHborzx5c1GQlq8r0_sckINzqmNoNjw,1031
|
|
28
28
|
accusleepy/gui/text/main_guide.txt,sha256=bIDL8SQKK88MhVqmgKYQWygR4oSfS-CsKNuUUOi2hzU,7684
|
|
29
29
|
accusleepy/gui/text/manual_scoring_guide.txt,sha256=onBnUZJyX18oN1CgjD2HSnlEQHsUscHpOYf11kTKZ4U,1460
|
|
30
30
|
accusleepy/gui/viewer_window.py,sha256=5PkbuYMXUegH1CExCoqSGDZ9GeJqCCUz0-3WWkM8Vfc,24049
|
|
@@ -32,6 +32,6 @@ accusleepy/gui/viewer_window.ui,sha256=D1LwUFR-kZ_GWGZFFtXvGJdFWghLrOWZTblQeLQt9
|
|
|
32
32
|
accusleepy/models.py,sha256=Muapsw088AUHqRIbW97Rkbv0oiwCtQvO9tEoBCC-MYg,1476
|
|
33
33
|
accusleepy/multitaper.py,sha256=V6MJDk0OSWhg2MFhrnt9dvYrHiNsk2T7IxAA7paZVyE,25549
|
|
34
34
|
accusleepy/signal_processing.py,sha256=-aXnywfp1LBsk3DcbIMmZlgv3f8j6sZ6js0bizZId0o,21718
|
|
35
|
-
accusleepy-0.1.
|
|
36
|
-
accusleepy-0.1.
|
|
37
|
-
accusleepy-0.1.
|
|
35
|
+
accusleepy-0.1.2.dist-info/METADATA,sha256=UiI9nm7G9U9v5m-UqHA8Uy035XNZh2Ud84ygcV-W9Oc,2488
|
|
36
|
+
accusleepy-0.1.2.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
|
37
|
+
accusleepy-0.1.2.dist-info/RECORD,,
|
|
File without changes
|