peyes 0.0.7__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.
Files changed (74) hide show
  1. peyes-0.0.7/.gitignore +167 -0
  2. peyes-0.0.7/.idea/.gitignore +8 -0
  3. peyes-0.0.7/.idea/inspectionProfiles/Project_Default.xml +111 -0
  4. peyes-0.0.7/.idea/inspectionProfiles/profiles_settings.xml +6 -0
  5. peyes-0.0.7/.idea/misc.xml +7 -0
  6. peyes-0.0.7/.idea/modules.xml +8 -0
  7. peyes-0.0.7/.idea/pEYES.iml +14 -0
  8. peyes-0.0.7/.idea/vcs.xml +6 -0
  9. peyes-0.0.7/.idea/workspace.xml +117 -0
  10. peyes-0.0.7/PKG-INFO +60 -0
  11. peyes-0.0.7/README.md +35 -0
  12. peyes-0.0.7/analysis/playground.py +242 -0
  13. peyes-0.0.7/analysis/process/_helpers.py +25 -0
  14. peyes-0.0.7/analysis/process/_unused_events_channel_.py +163 -0
  15. peyes-0.0.7/analysis/process/full_pipeline.py +154 -0
  16. peyes-0.0.7/analysis/process/match_metrics.py +176 -0
  17. peyes-0.0.7/analysis/process/preprocess.py +187 -0
  18. peyes-0.0.7/analysis/process/sample_metrics.py +160 -0
  19. peyes-0.0.7/analysis/process/samples_channel.py +156 -0
  20. peyes-0.0.7/analysis/run_processing.py +18 -0
  21. peyes-0.0.7/analysis/statistics/_helpers.py +219 -0
  22. peyes-0.0.7/analysis/statistics/channel_sdt.py +195 -0
  23. peyes-0.0.7/analysis/statistics/channel_time_diffs.py +49 -0
  24. peyes-0.0.7/analysis/statistics/matched_features.py +135 -0
  25. peyes-0.0.7/analysis/statistics/matched_sdt.py +187 -0
  26. peyes-0.0.7/analysis/statistics/sample_metrics.py +71 -0
  27. peyes-0.0.7/analysis/utils.py +136 -0
  28. peyes-0.0.7/docs/README.md +0 -0
  29. peyes-0.0.7/peyes/_DataModels/DatasetLoader.py +559 -0
  30. peyes-0.0.7/peyes/_DataModels/Detector.py +1383 -0
  31. peyes-0.0.7/peyes/_DataModels/Event.py +434 -0
  32. peyes-0.0.7/peyes/_DataModels/EventLabelEnum.py +14 -0
  33. peyes-0.0.7/peyes/_DataModels/EventMatcher.py +298 -0
  34. peyes-0.0.7/peyes/_DataModels/UnparsedEventLabel.py +9 -0
  35. peyes-0.0.7/peyes/_DataModels/config.py +53 -0
  36. peyes-0.0.7/peyes/__init__.py +15 -0
  37. peyes-0.0.7/peyes/_base/create.py +241 -0
  38. peyes-0.0.7/peyes/_base/match.py +122 -0
  39. peyes-0.0.7/peyes/_base/parse.py +52 -0
  40. peyes-0.0.7/peyes/_base/postprocess_events.py +42 -0
  41. peyes-0.0.7/peyes/_utils/constants.py +106 -0
  42. peyes-0.0.7/peyes/_utils/event_utils.py +95 -0
  43. peyes-0.0.7/peyes/_utils/metric_utils.py +104 -0
  44. peyes-0.0.7/peyes/_utils/pixel_utils.py +180 -0
  45. peyes-0.0.7/peyes/_utils/vector_utils.py +107 -0
  46. peyes-0.0.7/peyes/_utils/visualization_utils.py +128 -0
  47. peyes-0.0.7/peyes/channel_metrics/__init__.py +3 -0
  48. peyes-0.0.7/peyes/channel_metrics/_signal_detection_metrics.py +166 -0
  49. peyes-0.0.7/peyes/channel_metrics/_timing_differences.py +92 -0
  50. peyes-0.0.7/peyes/datasets/__init__.py +52 -0
  51. peyes-0.0.7/peyes/datasets/get_metadata.py +45 -0
  52. peyes-0.0.7/peyes/datasets/load_dataset.py +33 -0
  53. peyes-0.0.7/peyes/event_metrics/__init__.py +44 -0
  54. peyes-0.0.7/peyes/event_metrics/_get_features.py +73 -0
  55. peyes-0.0.7/peyes/event_metrics/_rates_and_transitions.py +57 -0
  56. peyes-0.0.7/peyes/match_metrics/__init__.py +42 -0
  57. peyes-0.0.7/peyes/match_metrics/_get_features.py +59 -0
  58. peyes-0.0.7/peyes/match_metrics/_match_evaluation.py +142 -0
  59. peyes-0.0.7/peyes/sample_metrics/__init__.py +72 -0
  60. peyes-0.0.7/peyes/sample_metrics/_calculate_metrics.py +120 -0
  61. peyes-0.0.7/peyes/sample_metrics/_counts_and_matrices.py +52 -0
  62. peyes-0.0.7/peyes/visualize/__init__.py +6 -0
  63. peyes-0.0.7/peyes/visualize/_event_summary.py +279 -0
  64. peyes-0.0.7/peyes/visualize/_features.py +192 -0
  65. peyes-0.0.7/peyes/visualize/_gaze.py +239 -0
  66. peyes-0.0.7/peyes/visualize/_scarfplot.py +97 -0
  67. peyes-0.0.7/peyes/visualize/_video.py +122 -0
  68. peyes-0.0.7/pyproject.toml +37 -0
  69. peyes-0.0.7/tests/unit_tests/data_models/test_event.py +83 -0
  70. peyes-0.0.7/tests/unit_tests/utils/test_event_utils.py +62 -0
  71. peyes-0.0.7/tests/unit_tests/utils/test_metric_utils.py +88 -0
  72. peyes-0.0.7/tests/unit_tests/utils/test_pixel_utils.py +122 -0
  73. peyes-0.0.7/tests/unit_tests/utils/test_vector_utils.py +79 -0
  74. peyes-0.0.7/tests/unit_tests/utils/test_visualization_utils.py +10 -0
peyes-0.0.7/.gitignore ADDED
@@ -0,0 +1,167 @@
1
+
2
+ output/*
3
+ analysis/output/*
4
+
5
+ # Byte-compiled / optimized / DLL files
6
+ __pycache__/
7
+ *.py[cod]
8
+ *$py.class
9
+
10
+ # C extensions
11
+ *.so
12
+
13
+ # Distribution / packaging
14
+ .Python
15
+ build/
16
+ develop-eggs/
17
+ dist/
18
+ downloads/
19
+ eggs/
20
+ .eggs/
21
+ lib/
22
+ lib64/
23
+ parts/
24
+ sdist/
25
+ var/
26
+ wheels/
27
+ share/python-wheels/
28
+ *.egg-info/
29
+ .installed.cfg
30
+ *.egg
31
+ MANIFEST
32
+
33
+ # PyInstaller
34
+ # Usually these files are written by a python script from a template
35
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
36
+ *.manifest
37
+ *.spec
38
+
39
+ # Installer logs
40
+ pip-log.txt
41
+ pip-delete-this-directory.txt
42
+
43
+ # Unit test / coverage reports
44
+ htmlcov/
45
+ .tox/
46
+ .nox/
47
+ .coverage
48
+ .coverage.*
49
+ .cache
50
+ nosetests.xml
51
+ coverage.xml
52
+ *.cover
53
+ *.py,cover
54
+ .hypothesis/
55
+ .pytest_cache/
56
+ cover/
57
+
58
+ # Translations
59
+ *.mo
60
+ *.pot
61
+
62
+ # Django stuff:
63
+ *.log
64
+ local_settings.py
65
+ db.sqlite3
66
+ db.sqlite3-journal
67
+
68
+ # Flask stuff:
69
+ instance/
70
+ .webassets-cache
71
+
72
+ # Scrapy stuff:
73
+ .scrapy
74
+
75
+ # Sphinx documentation
76
+ docs/_build/
77
+
78
+ # PyBuilder
79
+ .pybuilder/
80
+ target/
81
+
82
+ # Jupyter Notebook
83
+ .ipynb_checkpoints
84
+
85
+ # IPython
86
+ profile_default/
87
+ ipython_config.py
88
+
89
+ # pyenv
90
+ # For a library or package, you might want to ignore these files since the code is
91
+ # intended to run in multiple environments; otherwise, check them in:
92
+ # .python-version
93
+
94
+ # pipenv
95
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
96
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
97
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
98
+ # install all needed dependencies.
99
+ #Pipfile.lock
100
+
101
+ # poetry
102
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
103
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
104
+ # commonly ignored for libraries.
105
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
106
+ #poetry.lock
107
+
108
+ # pdm
109
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
110
+ #pdm.lock
111
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
112
+ # in version control.
113
+ # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
114
+ .pdm.toml
115
+ .pdm-python
116
+ .pdm-build/
117
+
118
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
119
+ __pypackages__/
120
+
121
+ # Celery stuff
122
+ celerybeat-schedule
123
+ celerybeat.pid
124
+
125
+ # SageMath parsed files
126
+ *.sage.py
127
+
128
+ # Environments
129
+ .env
130
+ .venv
131
+ env/
132
+ venv/
133
+ ENV/
134
+ env.bak/
135
+ venv.bak/
136
+
137
+ # Spyder project settings
138
+ .spyderproject
139
+ .spyproject
140
+
141
+ # Rope project settings
142
+ .ropeproject
143
+
144
+ # mkdocs documentation
145
+ /site
146
+
147
+ # mypy
148
+ .mypy_cache/
149
+ .dmypy.json
150
+ dmypy.json
151
+
152
+ # Pyre type checker
153
+ .pyre/
154
+
155
+ # pytype static type analyzer
156
+ .pytype/
157
+
158
+ # Cython debug symbols
159
+ cython_debug/
160
+
161
+ # PyCharm
162
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
163
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
164
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
165
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
166
+ #.idea/
167
+
@@ -0,0 +1,8 @@
1
+ # Default ignored files
2
+ /shelf/
3
+ /workspace.xml
4
+ # Editor-based HTTP Client requests
5
+ /httpRequests/
6
+ # Datasource local storage ignored files
7
+ /dataSources/
8
+ /dataSources.local.xml
@@ -0,0 +1,111 @@
1
+ <component name="InspectionProjectProfileManager">
2
+ <profile version="1.0">
3
+ <option name="myName" value="Project Default" />
4
+ <inspection_tool class="Eslint" enabled="true" level="WARNING" enabled_by_default="true" />
5
+ <inspection_tool class="PyPackageRequirementsInspection" enabled="true" level="WARNING" enabled_by_default="true">
6
+ <option name="ignoredPackages">
7
+ <value>
8
+ <list size="78">
9
+ <item index="0" class="java.lang.String" itemvalue="notebook_shim" />
10
+ <item index="1" class="java.lang.String" itemvalue="traitlets" />
11
+ <item index="2" class="java.lang.String" itemvalue="pywinpty" />
12
+ <item index="3" class="java.lang.String" itemvalue="rfc3339-validator" />
13
+ <item index="4" class="java.lang.String" itemvalue="arrow" />
14
+ <item index="5" class="java.lang.String" itemvalue="pickleshare" />
15
+ <item index="6" class="java.lang.String" itemvalue="defusedxml" />
16
+ <item index="7" class="java.lang.String" itemvalue="nbclient" />
17
+ <item index="8" class="java.lang.String" itemvalue="QtPy" />
18
+ <item index="9" class="java.lang.String" itemvalue="executing" />
19
+ <item index="10" class="java.lang.String" itemvalue="tinycss2" />
20
+ <item index="11" class="java.lang.String" itemvalue="ipython-genutils" />
21
+ <item index="12" class="java.lang.String" itemvalue="python-json-logger" />
22
+ <item index="13" class="java.lang.String" itemvalue="jupyterlab-widgets" />
23
+ <item index="14" class="java.lang.String" itemvalue="pyzmq" />
24
+ <item index="15" class="java.lang.String" itemvalue="bleach" />
25
+ <item index="16" class="java.lang.String" itemvalue="anyio" />
26
+ <item index="17" class="java.lang.String" itemvalue="jupyter_server_terminals" />
27
+ <item index="18" class="java.lang.String" itemvalue="entrypoints" />
28
+ <item index="19" class="java.lang.String" itemvalue="jsonschema" />
29
+ <item index="20" class="java.lang.String" itemvalue="notebook" />
30
+ <item index="21" class="java.lang.String" itemvalue="qtconsole" />
31
+ <item index="22" class="java.lang.String" itemvalue="terminado" />
32
+ <item index="23" class="java.lang.String" itemvalue="comm" />
33
+ <item index="24" class="java.lang.String" itemvalue="isoduration" />
34
+ <item index="25" class="java.lang.String" itemvalue="nbclassic" />
35
+ <item index="26" class="java.lang.String" itemvalue="fqdn" />
36
+ <item index="27" class="java.lang.String" itemvalue="jupyter_client" />
37
+ <item index="28" class="java.lang.String" itemvalue="netCDF4" />
38
+ <item index="29" class="java.lang.String" itemvalue="jupyterlab-pygments" />
39
+ <item index="30" class="java.lang.String" itemvalue="ipykernel" />
40
+ <item index="31" class="java.lang.String" itemvalue="nbconvert" />
41
+ <item index="32" class="java.lang.String" itemvalue="xarray" />
42
+ <item index="33" class="java.lang.String" itemvalue="jupyter_server" />
43
+ <item index="34" class="java.lang.String" itemvalue="pure-eval" />
44
+ <item index="35" class="java.lang.String" itemvalue="screeninfo" />
45
+ <item index="36" class="java.lang.String" itemvalue="asttokens" />
46
+ <item index="37" class="java.lang.String" itemvalue="backcall" />
47
+ <item index="38" class="java.lang.String" itemvalue="platformdirs" />
48
+ <item index="39" class="java.lang.String" itemvalue="PsychoPy" />
49
+ <item index="40" class="java.lang.String" itemvalue="widgetsnbextension" />
50
+ <item index="41" class="java.lang.String" itemvalue="argon2-cffi-bindings" />
51
+ <item index="42" class="java.lang.String" itemvalue="matplotlib-inline" />
52
+ <item index="43" class="java.lang.String" itemvalue="webcolors" />
53
+ <item index="44" class="java.lang.String" itemvalue="pandocfilters" />
54
+ <item index="45" class="java.lang.String" itemvalue="pkgutil_resolve_name" />
55
+ <item index="46" class="java.lang.String" itemvalue="wcwidth" />
56
+ <item index="47" class="java.lang.String" itemvalue="numpy" />
57
+ <item index="48" class="java.lang.String" itemvalue="jupyter-events" />
58
+ <item index="49" class="java.lang.String" itemvalue="jupyter_core" />
59
+ <item index="50" class="java.lang.String" itemvalue="importlib-metadata" />
60
+ <item index="51" class="java.lang.String" itemvalue="rfc3986-validator" />
61
+ <item index="52" class="java.lang.String" itemvalue="sniffio" />
62
+ <item index="53" class="java.lang.String" itemvalue="pyrsistent" />
63
+ <item index="54" class="java.lang.String" itemvalue="uri-template" />
64
+ <item index="55" class="java.lang.String" itemvalue="jupyter" />
65
+ <item index="56" class="java.lang.String" itemvalue="seaborn" />
66
+ <item index="57" class="java.lang.String" itemvalue="stack-data" />
67
+ <item index="58" class="java.lang.String" itemvalue="zipp" />
68
+ <item index="59" class="java.lang.String" itemvalue="nest-asyncio" />
69
+ <item index="60" class="java.lang.String" itemvalue="prompt-toolkit" />
70
+ <item index="61" class="java.lang.String" itemvalue="tobii-research" />
71
+ <item index="62" class="java.lang.String" itemvalue="ipywidgets" />
72
+ <item index="63" class="java.lang.String" itemvalue="scipy" />
73
+ <item index="64" class="java.lang.String" itemvalue="tornado" />
74
+ <item index="65" class="java.lang.String" itemvalue="nbformat" />
75
+ <item index="66" class="java.lang.String" itemvalue="ipython" />
76
+ <item index="67" class="java.lang.String" itemvalue="jsonpointer" />
77
+ <item index="68" class="java.lang.String" itemvalue="Send2Trash" />
78
+ <item index="69" class="java.lang.String" itemvalue="fastjsonschema" />
79
+ <item index="70" class="java.lang.String" itemvalue="prometheus-client" />
80
+ <item index="71" class="java.lang.String" itemvalue="mistune" />
81
+ <item index="72" class="java.lang.String" itemvalue="importlib-resources" />
82
+ <item index="73" class="java.lang.String" itemvalue="cftime" />
83
+ <item index="74" class="java.lang.String" itemvalue="jupyter-console" />
84
+ <item index="75" class="java.lang.String" itemvalue="debugpy" />
85
+ <item index="76" class="java.lang.String" itemvalue="argon2-cffi" />
86
+ <item index="77" class="java.lang.String" itemvalue="webencodings" />
87
+ </list>
88
+ </value>
89
+ </option>
90
+ </inspection_tool>
91
+ <inspection_tool class="PyPep8Inspection" enabled="true" level="WEAK WARNING" enabled_by_default="true">
92
+ <option name="ignoredErrors">
93
+ <list>
94
+ <option value="E303" />
95
+ <option value="E203" />
96
+ <option value="E266" />
97
+ </list>
98
+ </option>
99
+ </inspection_tool>
100
+ <inspection_tool class="PyPep8NamingInspection" enabled="true" level="WEAK WARNING" enabled_by_default="true">
101
+ <option name="ignoredErrors">
102
+ <list>
103
+ <option value="N813" />
104
+ <option value="N806" />
105
+ <option value="N803" />
106
+ <option value="N802" />
107
+ </list>
108
+ </option>
109
+ </inspection_tool>
110
+ </profile>
111
+ </component>
@@ -0,0 +1,6 @@
1
+ <component name="InspectionProjectProfileManager">
2
+ <settings>
3
+ <option name="USE_PROJECT_PROFILE" value="false" />
4
+ <version value="1.0" />
5
+ </settings>
6
+ </component>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="Black">
4
+ <option name="sdkName" value="Python 3.12 (pEYES)" />
5
+ </component>
6
+ <component name="ProjectRootManager" version="2" project-jdk-name="Python 3.12 (pEYES)" project-jdk-type="Python SDK" />
7
+ </project>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectModuleManager">
4
+ <modules>
5
+ <module fileurl="file://$PROJECT_DIR$/.idea/pEYES.iml" filepath="$PROJECT_DIR$/.idea/pEYES.iml" />
6
+ </modules>
7
+ </component>
8
+ </project>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="PYTHON_MODULE" version="4">
3
+ <component name="NewModuleRootManager">
4
+ <content url="file://$MODULE_DIR$">
5
+ <excludeFolder url="file://$MODULE_DIR$/.venv" />
6
+ </content>
7
+ <orderEntry type="jdk" jdkName="Python 3.12 (pEYES)" jdkType="Python SDK" />
8
+ <orderEntry type="sourceFolder" forTests="false" />
9
+ </component>
10
+ <component name="PyDocumentationSettings">
11
+ <option name="format" value="PLAIN" />
12
+ <option name="myDocStringFormat" value="Plain" />
13
+ </component>
14
+ </module>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="VcsDirectoryMappings">
4
+ <mapping directory="" vcs="Git" />
5
+ </component>
6
+ </project>
@@ -0,0 +1,117 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="AutoImportSettings">
4
+ <option name="autoReloadType" value="SELECTIVE" />
5
+ </component>
6
+ <component name="ChangeListManager">
7
+ <list default="true" id="adb0a767-0890-4060-be3a-9bf47847a8a0" name="Changes" comment="update reqs" />
8
+ <option name="SHOW_DIALOG" value="false" />
9
+ <option name="HIGHLIGHT_CONFLICTS" value="true" />
10
+ <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
11
+ <option name="LAST_RESOLUTION" value="IGNORE" />
12
+ </component>
13
+ <component name="Git.Settings">
14
+ <option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
15
+ </component>
16
+ <component name="ProjectColorInfo">{
17
+ &quot;associatedIndex&quot;: 0
18
+ }</component>
19
+ <component name="ProjectId" id="2kHzFMPB1g8OGUO2wx3dLVYTH4d" />
20
+ <component name="ProjectViewState">
21
+ <option name="hideEmptyMiddlePackages" value="true" />
22
+ <option name="showLibraryContents" value="true" />
23
+ </component>
24
+ <component name="PropertiesComponent"><![CDATA[{
25
+ "keyToString": {
26
+ "RunOnceActivity.ShowReadmeOnStart": "true",
27
+ "last_opened_file_path": "C:/Users/nirjo/Documents/University/Masters/Projects/pythonProject",
28
+ "node.js.detected.package.eslint": "true",
29
+ "node.js.detected.package.tslint": "true",
30
+ "node.js.selected.package.eslint": "(autodetect)",
31
+ "node.js.selected.package.tslint": "(autodetect)",
32
+ "nodejs_package_manager_path": "npm",
33
+ "settings.editor.selected.configurable": "com.jetbrains.python.configuration.PyActiveSdkModuleConfigurable",
34
+ "vue.rearranger.settings.migration": "true"
35
+ }
36
+ }]]></component>
37
+ <component name="SharedIndexes">
38
+ <attachedChunks>
39
+ <set>
40
+ <option value="bundled-js-predefined-1d06a55b98c1-0b3e54e931b4-JavaScript-PY-241.18034.82" />
41
+ <option value="bundled-python-sdk-975db3bf15a3-2767605e8bc2-com.jetbrains.pycharm.pro.sharedIndexes.bundled-PY-241.18034.82" />
42
+ </set>
43
+ </attachedChunks>
44
+ </component>
45
+ <component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
46
+ <component name="TaskManager">
47
+ <task active="true" id="Default" summary="Default task">
48
+ <changelist id="adb0a767-0890-4060-be3a-9bf47847a8a0" name="Changes" comment="" />
49
+ <created>1722955187106</created>
50
+ <option name="number" value="Default" />
51
+ <option name="presentableId" value="Default" />
52
+ <updated>1722955187106</updated>
53
+ <workItem from="1722955189826" duration="48000" />
54
+ <workItem from="1722955281703" duration="7401000" />
55
+ </task>
56
+ <task id="LOCAL-00001" summary="update reqs">
57
+ <option name="closed" value="true" />
58
+ <created>1722957173061</created>
59
+ <option name="number" value="00001" />
60
+ <option name="presentableId" value="LOCAL-00001" />
61
+ <option name="project" value="LOCAL" />
62
+ <updated>1722957173061</updated>
63
+ </task>
64
+ <task id="LOCAL-00002" summary="update reqs">
65
+ <option name="closed" value="true" />
66
+ <created>1722957341324</created>
67
+ <option name="number" value="00002" />
68
+ <option name="presentableId" value="LOCAL-00002" />
69
+ <option name="project" value="LOCAL" />
70
+ <updated>1722957341324</updated>
71
+ </task>
72
+ <task id="LOCAL-00003" summary="update reqs">
73
+ <option name="closed" value="true" />
74
+ <created>1722958690180</created>
75
+ <option name="number" value="00003" />
76
+ <option name="presentableId" value="LOCAL-00003" />
77
+ <option name="project" value="LOCAL" />
78
+ <updated>1722958690180</updated>
79
+ </task>
80
+ <task id="LOCAL-00004" summary="update reqs">
81
+ <option name="closed" value="true" />
82
+ <created>1722961818356</created>
83
+ <option name="number" value="00004" />
84
+ <option name="presentableId" value="LOCAL-00004" />
85
+ <option name="project" value="LOCAL" />
86
+ <updated>1722961818356</updated>
87
+ </task>
88
+ <task id="LOCAL-00005" summary="update reqs">
89
+ <option name="closed" value="true" />
90
+ <created>1722963487843</created>
91
+ <option name="number" value="00005" />
92
+ <option name="presentableId" value="LOCAL-00005" />
93
+ <option name="project" value="LOCAL" />
94
+ <updated>1722963487843</updated>
95
+ </task>
96
+ <option name="localTasksCounter" value="6" />
97
+ <servers />
98
+ </component>
99
+ <component name="TypeScriptGeneratedFilesManager">
100
+ <option name="version" value="3" />
101
+ </component>
102
+ <component name="Vcs.Log.Tabs.Properties">
103
+ <option name="TAB_STATES">
104
+ <map>
105
+ <entry key="MAIN">
106
+ <value>
107
+ <State />
108
+ </value>
109
+ </entry>
110
+ </map>
111
+ </option>
112
+ </component>
113
+ <component name="VcsManagerConfiguration">
114
+ <MESSAGE value="update reqs" />
115
+ <option name="LAST_COMMIT_MESSAGE" value="update reqs" />
116
+ </component>
117
+ </project>
peyes-0.0.7/PKG-INFO ADDED
@@ -0,0 +1,60 @@
1
+ Metadata-Version: 2.3
2
+ Name: peyes
3
+ Version: 0.0.7
4
+ Summary: A package for eye tracking data analysis and visualization
5
+ Project-URL: Homepage, https://github.com/huji-hcnl/pEYES
6
+ Project-URL: Bug Tracker, https://github.com/huji-hcnl/pEYES/issues
7
+ Author-email: "Human Cognitive Neuroscience Lab @ HUJI" <hcnl@mail.huji.ac.il>, Jonathan Nir <jonathan.nir@mail.huji.ac.il>
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Programming Language :: Python :: 3
10
+ Requires-Dist: liac-arff~=2.4
11
+ Requires-Dist: numpy~=1.26
12
+ Requires-Dist: opencv-python~=4.10
13
+ Requires-Dist: overrides~=7.7
14
+ Requires-Dist: pandas~=2.2
15
+ Requires-Dist: plotly~=5.22
16
+ Requires-Dist: python-levenshtein~=0.25
17
+ Requires-Dist: remodnav~=1.1
18
+ Requires-Dist: requests~=2.32
19
+ Requires-Dist: scikit-learn~=1.5
20
+ Requires-Dist: scikit-posthocs~=0.9
21
+ Requires-Dist: scipy~=1.13
22
+ Requires-Dist: statsmodels~=0.14
23
+ Requires-Dist: tqdm~=4.66
24
+ Description-Content-Type: text/markdown
25
+
26
+ # pEYES
27
+ ## A Python Package for Eye-Tracking Researchers
28
+ This package is intended for scientific use when processing and analyzing eye-tracking data.
29
+ It provides easy-to-use functions for:
30
+ - Downloading & parsing publicly available annotated eye-tracking datasets.
31
+ - Configuring eye-tracking detection algorithms, and running them on the datasets or your own data.
32
+ - Analyzing the results of the detection algorithms, and comparing them to ground truth data or to a different detection algorithm.
33
+ - Visualizing the results of the detection algorithms.
34
+
35
+ ## Installation Instructions
36
+ This package has been created and tested with python ```3.12```.
37
+ The steps to install this package are -
38
+
39
+ ```angular2html
40
+ python -m venv env
41
+ source ./env/bin/activate (In linux, instructions on other OS will vary)
42
+ pip install . (or pip install -e . for installing the editable version)
43
+ ```
44
+
45
+ ## Citation & License
46
+ This package is distributed under the MIT License, but some of the datasets & detection algorithms that are implemented
47
+ in this package are distributed under different licenses. Please refer to the documentation of the specific dataset or
48
+ detection algorithm for more information.
49
+
50
+ If you use this package in your research, please cite it as follows:
51
+ ```angular2html
52
+ # TBD
53
+ ```
54
+
55
+ If you use a specific dataset or detection algorithm that is implemented in this package, please also cite the original
56
+ authors of that dataset or detection algorithm. This information, like the license, can be found in the documentation
57
+ of the specific dataset or detection algorithm.
58
+
59
+ ## Acknowledgements
60
+ We are grateful for the support of the [Center for Interdisciplinary Data Science Research (CIDR)](https://cidr.huji.ac.il/) at the [Hebrew University of Jerusalem](https://new.huji.ac.il/). In particular, we would like to thank Haimasree Bhattacharya from CIDR for her contributions.
peyes-0.0.7/README.md ADDED
@@ -0,0 +1,35 @@
1
+ # pEYES
2
+ ## A Python Package for Eye-Tracking Researchers
3
+ This package is intended for scientific use when processing and analyzing eye-tracking data.
4
+ It provides easy-to-use functions for:
5
+ - Downloading & parsing publicly available annotated eye-tracking datasets.
6
+ - Configuring eye-tracking detection algorithms, and running them on the datasets or your own data.
7
+ - Analyzing the results of the detection algorithms, and comparing them to ground truth data or to a different detection algorithm.
8
+ - Visualizing the results of the detection algorithms.
9
+
10
+ ## Installation Instructions
11
+ This package has been created and tested with python ```3.12```.
12
+ The steps to install this package are -
13
+
14
+ ```angular2html
15
+ python -m venv env
16
+ source ./env/bin/activate (In linux, instructions on other OS will vary)
17
+ pip install . (or pip install -e . for installing the editable version)
18
+ ```
19
+
20
+ ## Citation & License
21
+ This package is distributed under the MIT License, but some of the datasets & detection algorithms that are implemented
22
+ in this package are distributed under different licenses. Please refer to the documentation of the specific dataset or
23
+ detection algorithm for more information.
24
+
25
+ If you use this package in your research, please cite it as follows:
26
+ ```angular2html
27
+ # TBD
28
+ ```
29
+
30
+ If you use a specific dataset or detection algorithm that is implemented in this package, please also cite the original
31
+ authors of that dataset or detection algorithm. This information, like the license, can be found in the documentation
32
+ of the specific dataset or detection algorithm.
33
+
34
+ ## Acknowledgements
35
+ We are grateful for the support of the [Center for Interdisciplinary Data Science Research (CIDR)](https://cidr.huji.ac.il/) at the [Hebrew University of Jerusalem](https://new.huji.ac.il/). In particular, we would like to thank Haimasree Bhattacharya from CIDR for her contributions.