OpenSTBench 0.3.0__tar.gz → 0.3.1__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.
- {openstbench-0.3.0 → openstbench-0.3.1}/PKG-INFO +4 -4
- {openstbench-0.3.0 → openstbench-0.3.1}/pyproject.toml +4 -4
- {openstbench-0.3.0 → openstbench-0.3.1}/src/OpenSTBench.egg-info/PKG-INFO +4 -4
- {openstbench-0.3.0 → openstbench-0.3.1}/src/OpenSTBench.egg-info/requires.txt +2 -2
- {openstbench-0.3.0 → openstbench-0.3.1}/src/openstbench/__init__.py +1 -1
- {openstbench-0.3.0 → openstbench-0.3.1}/README.md +0 -0
- {openstbench-0.3.0 → openstbench-0.3.1}/setup.cfg +0 -0
- {openstbench-0.3.0 → openstbench-0.3.1}/src/OpenSTBench.egg-info/SOURCES.txt +0 -0
- {openstbench-0.3.0 → openstbench-0.3.1}/src/OpenSTBench.egg-info/dependency_links.txt +0 -0
- {openstbench-0.3.0 → openstbench-0.3.1}/src/OpenSTBench.egg-info/top_level.txt +0 -0
- {openstbench-0.3.0 → openstbench-0.3.1}/src/openstbench/_model_loading.py +0 -0
- {openstbench-0.3.0 → openstbench-0.3.1}/src/openstbench/dataset.py +0 -0
- {openstbench-0.3.0 → openstbench-0.3.1}/src/openstbench/emotion_evaluator.py +0 -0
- {openstbench-0.3.0 → openstbench-0.3.1}/src/openstbench/latency/__init__.py +0 -0
- {openstbench-0.3.0 → openstbench-0.3.1}/src/openstbench/latency/agent.py +0 -0
- {openstbench-0.3.0 → openstbench-0.3.1}/src/openstbench/latency/basics.py +0 -0
- {openstbench-0.3.0 → openstbench-0.3.1}/src/openstbench/latency/cli.py +0 -0
- {openstbench-0.3.0 → openstbench-0.3.1}/src/openstbench/latency/instance.py +0 -0
- {openstbench-0.3.0 → openstbench-0.3.1}/src/openstbench/latency/metrics.py +0 -0
- {openstbench-0.3.0 → openstbench-0.3.1}/src/openstbench/latency/utils.py +0 -0
- {openstbench-0.3.0 → openstbench-0.3.1}/src/openstbench/paralinguistic_evaluator.py +0 -0
- {openstbench-0.3.0 → openstbench-0.3.1}/src/openstbench/speaker_similarity_evaluator.py +0 -0
- {openstbench-0.3.0 → openstbench-0.3.1}/src/openstbench/speech_quality_evaluator.py +0 -0
- {openstbench-0.3.0 → openstbench-0.3.1}/src/openstbench/temporal_consistency_evaluator.py +0 -0
- {openstbench-0.3.0 → openstbench-0.3.1}/src/openstbench/translation_evaluator.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: OpenSTBench
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.1
|
|
4
4
|
Summary: Open speech and translation benchmarking toolkit supporting MT, ASR, TTS, SimulST, VC, and paralinguistics with optimized CJK language support
|
|
5
5
|
Author-email: Yanjie An <691476922@qq.com>
|
|
6
6
|
License: MIT
|
|
@@ -14,10 +14,10 @@ Classifier: Intended Audience :: Science/Research
|
|
|
14
14
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
15
15
|
Classifier: License :: OSI Approved :: MIT License
|
|
16
16
|
Classifier: Programming Language :: Python :: 3
|
|
17
|
-
Requires-Python:
|
|
17
|
+
Requires-Python: <3.11,>=3.9
|
|
18
18
|
Description-Content-Type: text/markdown
|
|
19
|
-
Requires-Dist: torch
|
|
20
|
-
Requires-Dist: torchaudio
|
|
19
|
+
Requires-Dist: torch<2.7,>=2.6
|
|
20
|
+
Requires-Dist: torchaudio<2.7,>=2.6
|
|
21
21
|
Requires-Dist: numpy
|
|
22
22
|
Requires-Dist: sacrebleu>=2.0.0
|
|
23
23
|
Requires-Dist: pandas
|
|
@@ -4,10 +4,10 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "OpenSTBench"
|
|
7
|
-
version = "0.3.
|
|
7
|
+
version = "0.3.1"
|
|
8
8
|
description = "Open speech and translation benchmarking toolkit supporting MT, ASR, TTS, SimulST, VC, and paralinguistics with optimized CJK language support"
|
|
9
9
|
readme = {file = "README.md", content-type = "text/markdown"}
|
|
10
|
-
requires-python = ">=3.
|
|
10
|
+
requires-python = ">=3.9,<3.11"
|
|
11
11
|
license = {text = "MIT"}
|
|
12
12
|
authors = [
|
|
13
13
|
{name = "Yanjie An", email = "691476922@qq.com"}
|
|
@@ -29,8 +29,8 @@ classifiers = [
|
|
|
29
29
|
]
|
|
30
30
|
|
|
31
31
|
dependencies = [
|
|
32
|
-
"torch>=
|
|
33
|
-
"torchaudio>=
|
|
32
|
+
"torch>=2.6,<2.7",
|
|
33
|
+
"torchaudio>=2.6,<2.7",
|
|
34
34
|
"numpy",
|
|
35
35
|
"sacrebleu>=2.0.0",
|
|
36
36
|
"pandas",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: OpenSTBench
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.1
|
|
4
4
|
Summary: Open speech and translation benchmarking toolkit supporting MT, ASR, TTS, SimulST, VC, and paralinguistics with optimized CJK language support
|
|
5
5
|
Author-email: Yanjie An <691476922@qq.com>
|
|
6
6
|
License: MIT
|
|
@@ -14,10 +14,10 @@ Classifier: Intended Audience :: Science/Research
|
|
|
14
14
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
15
15
|
Classifier: License :: OSI Approved :: MIT License
|
|
16
16
|
Classifier: Programming Language :: Python :: 3
|
|
17
|
-
Requires-Python:
|
|
17
|
+
Requires-Python: <3.11,>=3.9
|
|
18
18
|
Description-Content-Type: text/markdown
|
|
19
|
-
Requires-Dist: torch
|
|
20
|
-
Requires-Dist: torchaudio
|
|
19
|
+
Requires-Dist: torch<2.7,>=2.6
|
|
20
|
+
Requires-Dist: torchaudio<2.7,>=2.6
|
|
21
21
|
Requires-Dist: numpy
|
|
22
22
|
Requires-Dist: sacrebleu>=2.0.0
|
|
23
23
|
Requires-Dist: pandas
|
|
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
|