batchalign 0.7.3b16__tar.gz → 0.7.4__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.
- {batchalign-0.7.3b16/batchalign.egg-info → batchalign-0.7.4}/PKG-INFO +62 -2
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/formats/chat/utils.py +27 -15
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/pipelines/morphosyntax/ud.py +1 -0
- batchalign-0.7.4/batchalign/version +3 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4/batchalign.egg-info}/PKG-INFO +62 -2
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign.egg-info/requires.txt +3 -3
- {batchalign-0.7.3b16 → batchalign-0.7.4}/setup.py +3 -3
- batchalign-0.7.3b16/batchalign/version +0 -3
- {batchalign-0.7.3b16 → batchalign-0.7.4}/LICENSE +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/MANIFEST.in +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/README.md +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/__init__.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/__main__.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/cli/__init__.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/cli/cli.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/cli/dispatch.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/constants.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/document.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/errors.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/formats/__init__.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/formats/base.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/formats/chat/__init__.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/formats/chat/file.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/formats/chat/generator.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/formats/chat/lexer.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/formats/chat/parser.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/formats/textgrid/__init__.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/formats/textgrid/file.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/formats/textgrid/generator.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/formats/textgrid/parser.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/models/__init__.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/models/resolve.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/models/speaker/__init__.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/models/speaker/config.yaml +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/models/speaker/infer.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/models/speaker/utils.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/models/training/__init__.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/models/training/run.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/models/training/utils.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/models/utils.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/models/utterance/__init__.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/models/utterance/dataset.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/models/utterance/execute.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/models/utterance/infer.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/models/utterance/prep.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/models/utterance/train.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/models/whisper/__init__.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/models/whisper/infer_asr.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/models/whisper/infer_fa.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/pipelines/__init__.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/pipelines/analysis/__init__.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/pipelines/analysis/eval.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/pipelines/asr/__init__.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/pipelines/asr/rev.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/pipelines/asr/utils.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/pipelines/asr/whisper.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/pipelines/asr/whisperx.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/pipelines/base.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/pipelines/cleanup/__init__.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/pipelines/cleanup/cleanup.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/pipelines/cleanup/disfluencies.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/pipelines/cleanup/parse_support.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/pipelines/cleanup/retrace.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/pipelines/cleanup/support/filled_pauses.eng +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/pipelines/cleanup/support/replacements.eng +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/pipelines/cleanup/support/test.test +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/pipelines/dispatch.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/pipelines/fa/__init__.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/pipelines/fa/whisper_fa.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/pipelines/morphosyntax/__init__.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/pipelines/morphosyntax/fr/case.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/pipelines/morphosyntax/ja/verbforms.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/pipelines/pipeline.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/pipelines/speaker/__init__.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/pipelines/speaker/nemo_speaker.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/pipelines/utr/__init__.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/pipelines/utr/rev_utr.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/pipelines/utr/utils.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/pipelines/utr/whisper_utr.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/pipelines/utterance/__init__.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/pipelines/utterance/ud_utterance.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/tests/__init__.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/tests/conftest.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/tests/formats/chat/test_chat_file.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/tests/formats/chat/test_chat_generator.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/tests/formats/chat/test_chat_lexer.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/tests/formats/chat/test_chat_parser.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/tests/formats/chat/test_chat_utils.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/tests/formats/textgrid/test_textgrid.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/tests/pipelines/analysis/test_eval.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/tests/pipelines/asr/test_asr_pipeline.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/tests/pipelines/asr/test_asr_utils.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/tests/pipelines/cleanup/test_disfluency.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/tests/pipelines/cleanup/test_parse_support.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/tests/pipelines/fa/test_fa_pipeline.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/tests/pipelines/fixures.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/tests/pipelines/test_pipeline.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/tests/pipelines/test_pipeline_models.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/tests/test_document.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/utils/__init__.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/utils/config.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/utils/dp.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/utils/utils.py +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign.egg-info/SOURCES.txt +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign.egg-info/dependency_links.txt +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign.egg-info/entry_points.txt +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign.egg-info/top_level.txt +0 -0
- {batchalign-0.7.3b16 → batchalign-0.7.4}/setup.cfg +0 -0
@@ -1,16 +1,76 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: batchalign
|
3
|
-
Version: 0.7.
|
3
|
+
Version: 0.7.4
|
4
4
|
Summary: Python Speech Language Sample Analysis
|
5
5
|
Author: Brian MacWhinney, Houjun Liu
|
6
6
|
Author-email: macw@cmu.edu, houjun@cmu.edu
|
7
7
|
Classifier: Development Status :: 3 - Alpha
|
8
8
|
Classifier: Topic :: Utilities
|
9
9
|
Description-Content-Type: text/markdown
|
10
|
+
License-File: LICENSE
|
11
|
+
Requires-Dist: pydantic>=2.4
|
12
|
+
Requires-Dist: nltk>=3.8
|
13
|
+
Requires-Dist: praatio<6.1.0,>=6.0.0
|
14
|
+
Requires-Dist: torch>=2.0.1
|
15
|
+
Requires-Dist: torchaudio>=2.1.0
|
16
|
+
Requires-Dist: pyAudioAnalysis==0.3.14
|
17
|
+
Requires-Dist: hmmlearn==0.3.0
|
18
|
+
Requires-Dist: eyed3~=0.9.7
|
19
|
+
Requires-Dist: pydub<0.26.0,>=0.25.1
|
20
|
+
Requires-Dist: imblearn
|
21
|
+
Requires-Dist: plotly>=5.18.0
|
22
|
+
Requires-Dist: transformers>=4.37
|
23
|
+
Requires-Dist: tokenizers>=0.14.1
|
24
|
+
Requires-Dist: pycountry>=22.3
|
25
|
+
Requires-Dist: stanza>=1.7
|
26
|
+
Requires-Dist: scipy~=1.11
|
27
|
+
Requires-Dist: rev_ai>=2.18.0
|
28
|
+
Requires-Dist: rich~=13.6
|
29
|
+
Requires-Dist: click~=8.1
|
30
|
+
Requires-Dist: matplotlib<4.0.0,>=3.8.0
|
31
|
+
Requires-Dist: pyfiglet==1.0.2
|
32
|
+
Requires-Dist: soundfile~=0.12.0
|
33
|
+
Requires-Dist: rich-click>=1.7.0
|
34
|
+
Requires-Dist: typing-extensions
|
10
35
|
Provides-Extra: dev
|
36
|
+
Requires-Dist: pytest; extra == "dev"
|
11
37
|
Provides-Extra: train
|
38
|
+
Requires-Dist: accelerate~=0.27; extra == "train"
|
12
39
|
Provides-Extra: speaker
|
13
|
-
|
40
|
+
Requires-Dist: nemo-toolkit~=1.21.0; extra == "speaker"
|
41
|
+
Requires-Dist: omegaconf~=2.3.0; extra == "speaker"
|
42
|
+
Requires-Dist: pydub~=0.25.0; extra == "speaker"
|
43
|
+
Requires-Dist: braceexpand; extra == "speaker"
|
44
|
+
Requires-Dist: editdistance; extra == "speaker"
|
45
|
+
Requires-Dist: g2p_en; extra == "speaker"
|
46
|
+
Requires-Dist: ipywidgets; extra == "speaker"
|
47
|
+
Requires-Dist: jiwer; extra == "speaker"
|
48
|
+
Requires-Dist: kaldi-python-io; extra == "speaker"
|
49
|
+
Requires-Dist: kaldiio; extra == "speaker"
|
50
|
+
Requires-Dist: lhotse>=1.20.0; extra == "speaker"
|
51
|
+
Requires-Dist: librosa>=0.10.0; extra == "speaker"
|
52
|
+
Requires-Dist: marshmallow; extra == "speaker"
|
53
|
+
Requires-Dist: matplotlib; extra == "speaker"
|
54
|
+
Requires-Dist: packaging; extra == "speaker"
|
55
|
+
Requires-Dist: pyannote.core; extra == "speaker"
|
56
|
+
Requires-Dist: pyannote.metrics; extra == "speaker"
|
57
|
+
Requires-Dist: pydub; extra == "speaker"
|
58
|
+
Requires-Dist: pyloudnorm; extra == "speaker"
|
59
|
+
Requires-Dist: resampy; extra == "speaker"
|
60
|
+
Requires-Dist: ruamel.yaml; extra == "speaker"
|
61
|
+
Requires-Dist: scipy>=0.14; extra == "speaker"
|
62
|
+
Requires-Dist: soundfile; extra == "speaker"
|
63
|
+
Requires-Dist: sox; extra == "speaker"
|
64
|
+
Requires-Dist: texterrors; extra == "speaker"
|
65
|
+
Requires-Dist: hydra-core<=1.3.2,>1.3; extra == "speaker"
|
66
|
+
Requires-Dist: omegaconf<=2.3; extra == "speaker"
|
67
|
+
Requires-Dist: pytorch-lightning>=2.2.1; extra == "speaker"
|
68
|
+
Requires-Dist: torchmetrics>=0.11.0; extra == "speaker"
|
69
|
+
Requires-Dist: transformers>=4.36.0; extra == "speaker"
|
70
|
+
Requires-Dist: wandb; extra == "speaker"
|
71
|
+
Requires-Dist: webdataset>=0.2.86; extra == "speaker"
|
72
|
+
Requires-Dist: sentencepiece; extra == "speaker"
|
73
|
+
Requires-Dist: youtokentome; extra == "speaker"
|
14
74
|
|
15
75
|
# TalkBank | Batchalign2
|
16
76
|
|
@@ -43,17 +43,8 @@ def chat_parse_mor(mor_str):
|
|
43
43
|
if mor_str in ENDING_PUNCT:
|
44
44
|
return [Morphology(lemma=mor_str, pos="PUNCT", feats="")]
|
45
45
|
|
46
|
-
# JANK handle + forms
|
47
|
-
if "+" in mor_str:
|
48
|
-
pos, rest = mor_str.split("+", maxsplit=1)
|
49
|
-
return [Morphology.model_validate({
|
50
|
-
"lemma": "+"+rest,
|
51
|
-
"pos": pos.strip("|"),
|
52
|
-
"feats": "",
|
53
|
-
})]
|
54
|
-
|
55
46
|
try:
|
56
|
-
mors = [i.split("|") for i in re.split("[~$]", mor_str)]
|
47
|
+
mors = [i.split("|", maxsplit=1) for i in re.split("[~$]", mor_str)]
|
57
48
|
# TODO epic jank: backwards compatibility check: if a form
|
58
49
|
# uses a lot of dashes, its probably because its old-style
|
59
50
|
# dash seperated; if it doesn't; it probably is new-style
|
@@ -67,11 +58,32 @@ def chat_parse_mor(mor_str):
|
|
67
58
|
except:
|
68
59
|
raise CHATValidationException(f"mor parser recieved invalid mor string: '{mor_str}'")
|
69
60
|
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
"
|
74
|
-
|
61
|
+
|
62
|
+
mors = []
|
63
|
+
for p,l,f in zip(pos, lemmas, feats):
|
64
|
+
# if "+" not in mor_str:
|
65
|
+
mors.append(Morphology.model_validate({
|
66
|
+
"lemma": l,
|
67
|
+
"pos": p,
|
68
|
+
"feats": f,
|
69
|
+
}))
|
70
|
+
# else:
|
71
|
+
# breakpoint()
|
72
|
+
# pos, rest = mor_str.split("+", maxsplit=1)
|
73
|
+
|
74
|
+
|
75
|
+
|
76
|
+
# # JANK handle + forms
|
77
|
+
# if "+" in mor_str:
|
78
|
+
# pos, rest = mor_str.split("+", maxsplit=1)
|
79
|
+
# return [Morphology.model_validate({
|
80
|
+
# "lemma": "+"+rest,
|
81
|
+
# "pos": pos.strip("|"),
|
82
|
+
# "feats": "",
|
83
|
+
# })]
|
84
|
+
|
85
|
+
|
86
|
+
# mors = [ ]
|
75
87
|
|
76
88
|
return mors
|
77
89
|
|
@@ -890,6 +890,7 @@ def morphoanalyze(doc: Document, retokenize:bool, status_hook:callable = None, *
|
|
890
890
|
retokenized_ut = retokenized_ut.replace(" :", ":")
|
891
891
|
retokenized_ut = retokenized_ut.replace("+ ,", "+,")
|
892
892
|
retokenized_ut = retokenized_ut.replace(": <", ": <")
|
893
|
+
# retokenized_ut = retokenized_ut.replace("[ *", "[*")
|
893
894
|
retokenized_ut = retokenized_ut.replace(" ↑", "↑")
|
894
895
|
retokenized_ut = re.sub(r"@ ?w ?p", "@wp", retokenized_ut)
|
895
896
|
retokenized_ut = retokenized_ut.replace(" @", "@")
|
@@ -1,16 +1,76 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: batchalign
|
3
|
-
Version: 0.7.
|
3
|
+
Version: 0.7.4
|
4
4
|
Summary: Python Speech Language Sample Analysis
|
5
5
|
Author: Brian MacWhinney, Houjun Liu
|
6
6
|
Author-email: macw@cmu.edu, houjun@cmu.edu
|
7
7
|
Classifier: Development Status :: 3 - Alpha
|
8
8
|
Classifier: Topic :: Utilities
|
9
9
|
Description-Content-Type: text/markdown
|
10
|
+
License-File: LICENSE
|
11
|
+
Requires-Dist: pydantic>=2.4
|
12
|
+
Requires-Dist: nltk>=3.8
|
13
|
+
Requires-Dist: praatio<6.1.0,>=6.0.0
|
14
|
+
Requires-Dist: torch>=2.0.1
|
15
|
+
Requires-Dist: torchaudio>=2.1.0
|
16
|
+
Requires-Dist: pyAudioAnalysis==0.3.14
|
17
|
+
Requires-Dist: hmmlearn==0.3.0
|
18
|
+
Requires-Dist: eyed3~=0.9.7
|
19
|
+
Requires-Dist: pydub<0.26.0,>=0.25.1
|
20
|
+
Requires-Dist: imblearn
|
21
|
+
Requires-Dist: plotly>=5.18.0
|
22
|
+
Requires-Dist: transformers>=4.37
|
23
|
+
Requires-Dist: tokenizers>=0.14.1
|
24
|
+
Requires-Dist: pycountry>=22.3
|
25
|
+
Requires-Dist: stanza>=1.7
|
26
|
+
Requires-Dist: scipy~=1.11
|
27
|
+
Requires-Dist: rev_ai>=2.18.0
|
28
|
+
Requires-Dist: rich~=13.6
|
29
|
+
Requires-Dist: click~=8.1
|
30
|
+
Requires-Dist: matplotlib<4.0.0,>=3.8.0
|
31
|
+
Requires-Dist: pyfiglet==1.0.2
|
32
|
+
Requires-Dist: soundfile~=0.12.0
|
33
|
+
Requires-Dist: rich-click>=1.7.0
|
34
|
+
Requires-Dist: typing-extensions
|
10
35
|
Provides-Extra: dev
|
36
|
+
Requires-Dist: pytest; extra == "dev"
|
11
37
|
Provides-Extra: train
|
38
|
+
Requires-Dist: accelerate~=0.27; extra == "train"
|
12
39
|
Provides-Extra: speaker
|
13
|
-
|
40
|
+
Requires-Dist: nemo-toolkit~=1.21.0; extra == "speaker"
|
41
|
+
Requires-Dist: omegaconf~=2.3.0; extra == "speaker"
|
42
|
+
Requires-Dist: pydub~=0.25.0; extra == "speaker"
|
43
|
+
Requires-Dist: braceexpand; extra == "speaker"
|
44
|
+
Requires-Dist: editdistance; extra == "speaker"
|
45
|
+
Requires-Dist: g2p_en; extra == "speaker"
|
46
|
+
Requires-Dist: ipywidgets; extra == "speaker"
|
47
|
+
Requires-Dist: jiwer; extra == "speaker"
|
48
|
+
Requires-Dist: kaldi-python-io; extra == "speaker"
|
49
|
+
Requires-Dist: kaldiio; extra == "speaker"
|
50
|
+
Requires-Dist: lhotse>=1.20.0; extra == "speaker"
|
51
|
+
Requires-Dist: librosa>=0.10.0; extra == "speaker"
|
52
|
+
Requires-Dist: marshmallow; extra == "speaker"
|
53
|
+
Requires-Dist: matplotlib; extra == "speaker"
|
54
|
+
Requires-Dist: packaging; extra == "speaker"
|
55
|
+
Requires-Dist: pyannote.core; extra == "speaker"
|
56
|
+
Requires-Dist: pyannote.metrics; extra == "speaker"
|
57
|
+
Requires-Dist: pydub; extra == "speaker"
|
58
|
+
Requires-Dist: pyloudnorm; extra == "speaker"
|
59
|
+
Requires-Dist: resampy; extra == "speaker"
|
60
|
+
Requires-Dist: ruamel.yaml; extra == "speaker"
|
61
|
+
Requires-Dist: scipy>=0.14; extra == "speaker"
|
62
|
+
Requires-Dist: soundfile; extra == "speaker"
|
63
|
+
Requires-Dist: sox; extra == "speaker"
|
64
|
+
Requires-Dist: texterrors; extra == "speaker"
|
65
|
+
Requires-Dist: hydra-core<=1.3.2,>1.3; extra == "speaker"
|
66
|
+
Requires-Dist: omegaconf<=2.3; extra == "speaker"
|
67
|
+
Requires-Dist: pytorch-lightning>=2.2.1; extra == "speaker"
|
68
|
+
Requires-Dist: torchmetrics>=0.11.0; extra == "speaker"
|
69
|
+
Requires-Dist: transformers>=4.36.0; extra == "speaker"
|
70
|
+
Requires-Dist: wandb; extra == "speaker"
|
71
|
+
Requires-Dist: webdataset>=0.2.86; extra == "speaker"
|
72
|
+
Requires-Dist: sentencepiece; extra == "speaker"
|
73
|
+
Requires-Dist: youtokentome; extra == "speaker"
|
14
74
|
|
15
75
|
# TalkBank | Batchalign2
|
16
76
|
|
@@ -1,15 +1,15 @@
|
|
1
1
|
pydantic>=2.4
|
2
2
|
nltk>=3.8
|
3
3
|
praatio<6.1.0,>=6.0.0
|
4
|
-
torch
|
5
|
-
torchaudio
|
4
|
+
torch>=2.0.1
|
5
|
+
torchaudio>=2.1.0
|
6
6
|
pyAudioAnalysis==0.3.14
|
7
7
|
hmmlearn==0.3.0
|
8
8
|
eyed3~=0.9.7
|
9
9
|
pydub<0.26.0,>=0.25.1
|
10
10
|
imblearn
|
11
11
|
plotly>=5.18.0
|
12
|
-
transformers
|
12
|
+
transformers>=4.37
|
13
13
|
tokenizers>=0.14.1
|
14
14
|
pycountry>=22.3
|
15
15
|
stanza>=1.7
|
@@ -29,15 +29,15 @@ setup(
|
|
29
29
|
"pydantic>=2.4",
|
30
30
|
"nltk>=3.8",
|
31
31
|
"praatio>=6.0.0,<6.1.0",
|
32
|
-
"torch>=2.0.1
|
33
|
-
"torchaudio>=2.1.0
|
32
|
+
"torch>=2.0.1",
|
33
|
+
"torchaudio>=2.1.0",
|
34
34
|
"pyAudioAnalysis==0.3.14",
|
35
35
|
"hmmlearn==0.3.0",
|
36
36
|
"eyed3~=0.9.7",
|
37
37
|
"pydub>=0.25.1,<0.26.0",
|
38
38
|
"imblearn",
|
39
39
|
"plotly>=5.18.0",
|
40
|
-
"transformers
|
40
|
+
"transformers>=4.37",
|
41
41
|
"tokenizers>=0.14.1",
|
42
42
|
"pycountry>=22.3",
|
43
43
|
"stanza>=1.7",
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/pipelines/cleanup/support/filled_pauses.eng
RENAMED
File without changes
|
{batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/pipelines/cleanup/support/replacements.eng
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/tests/formats/chat/test_chat_generator.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/tests/pipelines/asr/test_asr_pipeline.py
RENAMED
File without changes
|
File without changes
|
{batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/tests/pipelines/cleanup/test_disfluency.py
RENAMED
File without changes
|
{batchalign-0.7.3b16 → batchalign-0.7.4}/batchalign/tests/pipelines/cleanup/test_parse_support.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|