speechmetryflow 0.2.2__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.
- speechmetryflow-0.2.2/.gitignore +37 -0
- speechmetryflow-0.2.2/LICENSE +674 -0
- speechmetryflow-0.2.2/PKG-INFO +764 -0
- speechmetryflow-0.2.2/README.md +1 -0
- speechmetryflow-0.2.2/pyproject.toml +61 -0
- speechmetryflow-0.2.2/speechmetryflow/__init__.py +25 -0
- speechmetryflow-0.2.2/speechmetryflow/_version.py +34 -0
- speechmetryflow-0.2.2/speechmetryflow/cli.py +131 -0
- speechmetryflow-0.2.2/speechmetryflow/lexical/__init__.py +17 -0
- speechmetryflow-0.2.2/speechmetryflow/lexical/assets/__init__.py +103 -0
- speechmetryflow-0.2.2/speechmetryflow/lexical/assets/concreteness.tsv +39955 -0
- speechmetryflow-0.2.2/speechmetryflow/lexical/assets/familiarity_imageability.tsv +5554 -0
- speechmetryflow-0.2.2/speechmetryflow/lexical/assets/frequency.tsv +74289 -0
- speechmetryflow-0.2.2/speechmetryflow/lexical/assets/valence.tsv +13916 -0
- speechmetryflow-0.2.2/speechmetryflow/lexical/database.py +143 -0
- speechmetryflow-0.2.2/speechmetryflow/lexical/part_of_speech.py +172 -0
- speechmetryflow-0.2.2/speechmetryflow/lexical/utils.py +119 -0
- speechmetryflow-0.2.2/speechmetryflow/pragmatic/__init__.py +60 -0
- speechmetryflow-0.2.2/speechmetryflow/pragmatic/assets.py +62 -0
- speechmetryflow-0.2.2/speechmetryflow/pragmatic/database.py +113 -0
- speechmetryflow-0.2.2/speechmetryflow/semantic/__init__.py +23 -0
- speechmetryflow-0.2.2/speechmetryflow/semantic/assets.py +285 -0
- speechmetryflow-0.2.2/speechmetryflow/semantic/icu.py +33 -0
- speechmetryflow-0.2.2/speechmetryflow/semantic/idea_density.py +78 -0
- speechmetryflow-0.2.2/speechmetryflow/speech_production/__init__.py +62 -0
- speechmetryflow-0.2.2/speechmetryflow/speech_production/assets/__init__.py +58 -0
- speechmetryflow-0.2.2/speechmetryflow/speech_production/assets/words_fr.json +1 -0
- speechmetryflow-0.2.2/speechmetryflow/speech_production/fluency.py +42 -0
- speechmetryflow-0.2.2/speechmetryflow/speech_production/fragment.py +76 -0
- speechmetryflow-0.2.2/speechmetryflow/syntactic/__init__.py +119 -0
- speechmetryflow-0.2.2/speechmetryflow/syntactic/assets.py +40 -0
- speechmetryflow-0.2.2/speechmetryflow/syntactic/dependency.py +47 -0
- speechmetryflow-0.2.2/speechmetryflow/syntactic/sentences.py +189 -0
- speechmetryflow-0.2.2/speechmetryflow/ucsf_disfluency/__init__.py +23 -0
- speechmetryflow-0.2.2/speechmetryflow/utils.py +53 -0
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
*.sif
|
|
2
|
+
_version.py
|
|
3
|
+
|
|
4
|
+
# Byte-compiled / optimized / DLL files
|
|
5
|
+
__pycache__/
|
|
6
|
+
*.py[cod]
|
|
7
|
+
*$py.class
|
|
8
|
+
|
|
9
|
+
# Distribution / packaging
|
|
10
|
+
.Python
|
|
11
|
+
build/
|
|
12
|
+
develop-eggs/
|
|
13
|
+
dist/
|
|
14
|
+
downloads/
|
|
15
|
+
eggs/
|
|
16
|
+
.eggs/
|
|
17
|
+
lib/
|
|
18
|
+
lib64/
|
|
19
|
+
parts/
|
|
20
|
+
sdist/
|
|
21
|
+
var/
|
|
22
|
+
wheels/
|
|
23
|
+
pip-wheel-metadata/
|
|
24
|
+
share/python-wheels/
|
|
25
|
+
*.egg-info/
|
|
26
|
+
.installed.cfg
|
|
27
|
+
*.egg
|
|
28
|
+
MANIFEST
|
|
29
|
+
|
|
30
|
+
# Environments
|
|
31
|
+
.env
|
|
32
|
+
.venv
|
|
33
|
+
env/
|
|
34
|
+
venv/
|
|
35
|
+
ENV/
|
|
36
|
+
env.bak/
|
|
37
|
+
venv.bak/
|