audio-samples-qoe 0.1.0__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.
- audio_samples_qoe-0.1.0/.cargo/config.toml +7 -0
- audio_samples_qoe-0.1.0/.gitignore +15 -0
- audio_samples_qoe-0.1.0/CHANGELOG.md +3 -0
- audio_samples_qoe-0.1.0/CONTRIBUTING.md +30 -0
- audio_samples_qoe-0.1.0/Cargo.lock +2124 -0
- audio_samples_qoe-0.1.0/Cargo.toml +65 -0
- audio_samples_qoe-0.1.0/LICENSE +21 -0
- audio_samples_qoe-0.1.0/PKG-INFO +109 -0
- audio_samples_qoe-0.1.0/README.md +124 -0
- audio_samples_qoe-0.1.0/benches/io.rs +61 -0
- audio_samples_qoe-0.1.0/benches/visqol.rs +124 -0
- audio_samples_qoe-0.1.0/examples/eval_datasets.rs +190 -0
- audio_samples_qoe-0.1.0/examples/io_bench.rs +24 -0
- audio_samples_qoe-0.1.0/examples/scoreq_cli.rs +66 -0
- audio_samples_qoe-0.1.0/examples/visqol_cli.rs +28 -0
- audio_samples_qoe-0.1.0/logo.png +0 -0
- audio_samples_qoe-0.1.0/pyproject.toml +60 -0
- audio_samples_qoe-0.1.0/python/README.md +79 -0
- audio_samples_qoe-0.1.0/python/audio_samples_qoe/__init__.py +127 -0
- audio_samples_qoe-0.1.0/python/audio_samples_qoe/_native.pyi +47 -0
- audio_samples_qoe-0.1.0/python/audio_samples_qoe/py.typed +0 -0
- audio_samples_qoe-0.1.0/src/error.rs +28 -0
- audio_samples_qoe-0.1.0/src/lib.rs +36 -0
- audio_samples_qoe-0.1.0/src/python.rs +143 -0
- audio_samples_qoe-0.1.0/src/scoreq/mod.rs +125 -0
- audio_samples_qoe-0.1.0/src/scoreq/model.rs +62 -0
- audio_samples_qoe-0.1.0/src/scoreq/preprocess.rs +49 -0
- audio_samples_qoe-0.1.0/src/scoreq/weights.rs +53 -0
- audio_samples_qoe-0.1.0/src/utils.rs +13 -0
- audio_samples_qoe-0.1.0/src/visqol/alignment.rs +35 -0
- audio_samples_qoe-0.1.0/src/visqol/mod.rs +329 -0
- audio_samples_qoe-0.1.0/src/visqol/model/libsvm_nu_svr_model.txt +324 -0
- audio_samples_qoe-0.1.0/src/visqol/nsim.rs +122 -0
- audio_samples_qoe-0.1.0/src/visqol/options.rs +68 -0
- audio_samples_qoe-0.1.0/src/visqol/patches.rs +180 -0
- audio_samples_qoe-0.1.0/src/visqol/spectrogram_ops.rs +34 -0
- audio_samples_qoe-0.1.0/src/visqol/svr.rs +123 -0
- audio_samples_qoe-0.1.0/src/visqol/vad.rs +90 -0
- audio_samples_qoe-0.1.0/tests/conformance.rs +258 -0
- audio_samples_qoe-0.1.0/tests/scoreq.rs +71 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# Contributing to audio_samples
|
|
2
|
+
|
|
3
|
+
## Contributions
|
|
4
|
+
|
|
5
|
+
Contributions in the form of bug reports, feature requests, or pull requests are
|
|
6
|
+
welcome. For pull requests, please consider:
|
|
7
|
+
|
|
8
|
+
* Write clean and descriptive commit messages and keep the history clean.
|
|
9
|
+
* Ensure cargo fmt is run.
|
|
10
|
+
* Documentation and tests are required.
|
|
11
|
+
|
|
12
|
+
## Usage of AI Tools
|
|
13
|
+
|
|
14
|
+
Since late 2022 there has been a rapid expansion of AI-based tooling for writing and interacting with code. Large Language Models such as ChatGPT, Gemini, and Claude allow users to query codebases, debug issues, discuss architectural ideas, and even generate tests or refactor modules. Some providers now offer agentic variants that execute actions, gather results, and iteratively update their own plan in response to intermediate outputs.
|
|
15
|
+
|
|
16
|
+
The effectiveness of these tools is debated. Some developers enjoy working with them, others avoid them entirely, and most fall somewhere between. Like many people, I have experimented with a range of these systems. Personally, given the state of current models, if a contributor uses these tools wisely and conscientiously, then I don't mind. Why? Because the existence of these tools does not change the responsibilities involved in software development. **They do not excuse poor judgement, weak design, or low standards.** A contributor must still produce code that matches the project’s conventions and constraints, regardless of whether an LLM generated an initial draft. Reviewers must still apply the same scrutiny before merging. Expectations remain the same irrespective of whether AI was used during development.
|
|
17
|
+
|
|
18
|
+
More broadly, the availability of these tools removes any remaining excuse for poor project supports. If anything, the rise of LLM-assisted development makes clear documentation, tests, and examples more important, not less. They anchor the project in well-defined behaviour, provide an authoritative reference when an AI tool produces something misguided, and ensure that humans and machines alike operate against the same ground truth.
|
|
19
|
+
|
|
20
|
+
**Use them as you see fit, but ultimately you are the one responsible.**
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
In practice, I treat these systems as tools that can accelerate specific, well-defined tasks. They do not replace architectural reasoning, design decisions, or accountability.
|
|
25
|
+
|
|
26
|
+
> A final note on terminology: the word AI is used here only because it has become the default label in public and technical conversations. It is not a precise description. Using it uncritically encourages anthropomorphic language and obscures the fact that these tools are fundamentally computational systems. Clear terminology matters, especially when discussing responsibility, intent, and reliability.
|
|
27
|
+
|
|
28
|
+
## Code of conduct
|
|
29
|
+
|
|
30
|
+
* Be sound.
|