pelican-nlp 0.1.3__py3-none-any.whl → 0.2.1__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.
- pelican_nlp/_version.py +1 -1
- pelican_nlp/cli.py +14 -0
- pelican_nlp/main.py +2 -5
- {pelican_nlp-0.1.3.dist-info → pelican_nlp-0.2.1.dist-info}/METADATA +20 -3
- {pelican_nlp-0.1.3.dist-info → pelican_nlp-0.2.1.dist-info}/RECORD +9 -7
- pelican_nlp-0.2.1.dist-info/entry_points.txt +2 -0
- {pelican_nlp-0.1.3.dist-info → pelican_nlp-0.2.1.dist-info}/WHEEL +0 -0
- {pelican_nlp-0.1.3.dist-info → pelican_nlp-0.2.1.dist-info}/licenses/LICENSE +0 -0
- {pelican_nlp-0.1.3.dist-info → pelican_nlp-0.2.1.dist-info}/top_level.txt +0 -0
pelican_nlp/_version.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = "0.1
|
1
|
+
__version__ = "0.2.1"
|
pelican_nlp/cli.py
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
import os
|
2
|
+
from pelican_nlp.main import Pelican
|
3
|
+
|
4
|
+
def main():
|
5
|
+
config_files = [f for f in os.listdir(".") if f.endswith(".yml")]
|
6
|
+
if not config_files:
|
7
|
+
print("No .yml configuration file found in the current directory.")
|
8
|
+
return
|
9
|
+
|
10
|
+
config_file = config_files[0] # You could also add logic to choose or validate
|
11
|
+
print(f"Using configuration file: {config_file}")
|
12
|
+
|
13
|
+
pelican = Pelican(config_file)
|
14
|
+
pelican.run()
|
pelican_nlp/main.py
CHANGED
@@ -24,9 +24,6 @@ from pelican_nlp.core import Corpus
|
|
24
24
|
from pelican_nlp.utils.setup_functions import subject_instantiator, load_config, remove_previous_derivative_dir
|
25
25
|
from pelican_nlp.preprocessing import LPDS
|
26
26
|
|
27
|
-
# Constants
|
28
|
-
# DEFAULT_CONFIG_PATH = 'configuration_files/config_morteza.yml'
|
29
|
-
|
30
27
|
class Pelican:
|
31
28
|
|
32
29
|
"""Main class for the Pelican project handling document processing and metric extraction."""
|
@@ -47,9 +44,9 @@ class Pelican:
|
|
47
44
|
# Verify the provided path is a YAML file
|
48
45
|
elif not config_path.endswith(('.yml', '.yaml')):
|
49
46
|
sys.exit('Error: Configuration file must be a YAML file (*.yml or *.yaml)')
|
50
|
-
|
47
|
+
|
51
48
|
self.config = load_config(config_path)
|
52
|
-
self.project_path = Path(
|
49
|
+
self.project_path = Path(config_path).resolve().parent
|
53
50
|
self.path_to_subjects = self.project_path / 'subjects'
|
54
51
|
self.output_directory = self.project_path / 'derivatives'
|
55
52
|
self.task = self.config['task_name']
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: pelican_nlp
|
3
|
-
Version: 0.1
|
3
|
+
Version: 0.2.1
|
4
4
|
Summary: Preprocessing and Extraction of Linguistic Information for Computational Analysis
|
5
5
|
Author-email: Yves Pauli <yves.pauli@gmail.com>
|
6
6
|
License-Expression: CC-BY-NC-4.0
|
@@ -85,14 +85,31 @@ To use the pelican_nlp package:
|
|
85
85
|
Adapt your configuration file to your needs.
|
86
86
|
ALWAYS change the specified project folder location.
|
87
87
|
|
88
|
+
Save configuration file to main project directory.
|
89
|
+
|
90
|
+
Run from command line:
|
91
|
+
|
92
|
+
Navigate to main project directory in command line and enter the following command (Note: Folder must contain your subjects folder and your configuration.yml file):
|
93
|
+
|
94
|
+
.. code-block:: bash
|
95
|
+
|
96
|
+
pelican-run
|
97
|
+
|
98
|
+
|
99
|
+
Run with python script:
|
100
|
+
|
101
|
+
Create python file with IDE of your choice (e.g. Visual Studio Code, Pycharm, etc.) and copy the following code into the file:
|
102
|
+
|
88
103
|
.. code-block:: python
|
89
104
|
|
90
105
|
from pelican_nlp.main import Pelican
|
91
106
|
|
92
|
-
configuration_file = "/path/to/your/config/file"
|
107
|
+
configuration_file = "/path/to/your/config/file.yml"
|
93
108
|
pelican = Pelican(configuration_file)
|
94
109
|
pelican.run()
|
95
110
|
|
111
|
+
Replace "/path/to/your/config/file" with the path to your configuration file located in your main project folder.
|
112
|
+
|
96
113
|
For reliable operation, data must be stored in the *Language Processing Data Structure (LPDS)* format, inspired by brain imaging data structure conventions.
|
97
114
|
|
98
115
|
Text and audio files should follow this naming convention:
|
@@ -125,7 +142,7 @@ Features
|
|
125
142
|
Examples
|
126
143
|
========
|
127
144
|
|
128
|
-
You can find example setups in the [`examples/`](https://github.com/ypauli/pelican_nlp/examples) folder.
|
145
|
+
You can find example setups in the [`examples/`](https://github.com/ypauli/pelican_nlp/tree/main/examples) folder.
|
129
146
|
ALWAYS change the path to the project folder specified in the configuration file to your specific project location.
|
130
147
|
|
131
148
|
Contributing
|
@@ -1,6 +1,7 @@
|
|
1
1
|
pelican_nlp/__init__.py,sha256=TD5xjKeXXAH6nUWG-6igbClgovi5r8RIEqI_ix1QeYo,204
|
2
|
-
pelican_nlp/_version.py,sha256=
|
3
|
-
pelican_nlp/
|
2
|
+
pelican_nlp/_version.py,sha256=tC9CwL4Nm8brVXJnZNGk_eoZaJj6eOtLKtOrdJMrpoI,21
|
3
|
+
pelican_nlp/cli.py,sha256=uXouL67mTjBynFMWpBTaGvGtEBWDnbS1BI7aRdxV-0M,439
|
4
|
+
pelican_nlp/main.py,sha256=WKiDHXVFKtkD6AkTZSGlT824hKbpp5PAu2-HlcKsi-Q,7501
|
4
5
|
pelican_nlp/Nils_backup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
6
|
pelican_nlp/Nils_backup/extract_acoustic_features.py,sha256=eSP8lXxbZ15YE1HqxGtma9uWOcSN-fI-ig-NwQ9eOA8,10771
|
6
7
|
pelican_nlp/Nils_backup/speaker_diarization_Nils.py,sha256=3RIhjKihu4Z1rruMt9KESFE2lqesfzIpRr7rLummUEo,10219
|
@@ -68,8 +69,9 @@ pelican_nlp/utils/__init__.py,sha256=q1tGdOOj5UPRC2mGhoMUh8p4cbFCkkbD21bQaOVvFao
|
|
68
69
|
pelican_nlp/utils/csv_functions.py,sha256=hsG73gm3Up9sAerp6gIxuNHaeP1vJj6HSh7ggVm1SSo,7272
|
69
70
|
pelican_nlp/utils/sample_usage.py,sha256=W__OVMjWND-ZtxxRhfGJDHwbVpGlB-anXDxyA5P4cME,353
|
70
71
|
pelican_nlp/utils/setup_functions.py,sha256=s0QcarswU8qeFBcEQNIYC1ooaD-xwRiTJn--yPEId8E,3612
|
71
|
-
pelican_nlp-0.1.
|
72
|
-
pelican_nlp-0.1.
|
73
|
-
pelican_nlp-0.1.
|
74
|
-
pelican_nlp-0.1.
|
75
|
-
pelican_nlp-0.1.
|
72
|
+
pelican_nlp-0.2.1.dist-info/licenses/LICENSE,sha256=m3jshBZIXKiBX6qhmhtJcLTVJ1N6BEkQGIflneXvpYg,19336
|
73
|
+
pelican_nlp-0.2.1.dist-info/METADATA,sha256=VvSKygkPyQ_RzTM9-HvKRdP-m0TtQThAC8pLoJJPikE,5562
|
74
|
+
pelican_nlp-0.2.1.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
75
|
+
pelican_nlp-0.2.1.dist-info/entry_points.txt,sha256=znlG0paAfju9P10UM3rm5HcCHoj4tarTllNpeaqH_gc,53
|
76
|
+
pelican_nlp-0.2.1.dist-info/top_level.txt,sha256=F0qlyqy5FCd3sTS_npUYPeLKN9_BZq6wD4qo9pI0xbg,12
|
77
|
+
pelican_nlp-0.2.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|