parthe 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.
Files changed (39) hide show
  1. parthe-0.1.0/.gitignore +83 -0
  2. parthe-0.1.0/LICENSE +674 -0
  3. parthe-0.1.0/PKG-INFO +868 -0
  4. parthe-0.1.0/README.md +161 -0
  5. parthe-0.1.0/parthe/__init__.py +24 -0
  6. parthe-0.1.0/parthe/_fixed_config.py +6 -0
  7. parthe-0.1.0/parthe/core/__init__.py +11 -0
  8. parthe-0.1.0/parthe/core/audiocorpus.py +623 -0
  9. parthe-0.1.0/parthe/core/audiodataset.py +309 -0
  10. parthe-0.1.0/parthe/core/experiment.py +302 -0
  11. parthe-0.1.0/parthe/core/modelworks.py +554 -0
  12. parthe-0.1.0/parthe/core/utterance.py +378 -0
  13. parthe-0.1.0/parthe/exceptions.py +132 -0
  14. parthe-0.1.0/parthe/feature_extraction/__init__.py +1 -0
  15. parthe-0.1.0/parthe/feature_extraction/distortions.py +187 -0
  16. parthe-0.1.0/parthe/feature_extraction/linguistic_features.py +64 -0
  17. parthe-0.1.0/parthe/feature_extraction/spectral_features.py +115 -0
  18. parthe-0.1.0/parthe/feature_extraction/temporal_features.py +34 -0
  19. parthe-0.1.0/parthe/fixed_config.yaml +3 -0
  20. parthe-0.1.0/parthe/models/__init__.py +5 -0
  21. parthe-0.1.0/parthe/models/available_models.py +49 -0
  22. parthe-0.1.0/parthe/models/classification/__init__.py +1 -0
  23. parthe-0.1.0/parthe/models/classification/resnet.py +68 -0
  24. parthe-0.1.0/parthe/models/embedding_extraction/__init__.py +1 -0
  25. parthe-0.1.0/parthe/models/embedding_extraction/resnet.py +356 -0
  26. parthe-0.1.0/parthe/models/model_components/__init__.py +1 -0
  27. parthe-0.1.0/parthe/models/model_components/blocks.py +104 -0
  28. parthe-0.1.0/parthe/models/model_components/pooling_layers.py +463 -0
  29. parthe-0.1.0/parthe/schemas.py +494 -0
  30. parthe-0.1.0/parthe/utils/__init__.py +1 -0
  31. parthe-0.1.0/parthe/utils/feature_extraction.py +120 -0
  32. parthe-0.1.0/parthe/utils/io.py +104 -0
  33. parthe-0.1.0/parthe/utils/misc.py +60 -0
  34. parthe-0.1.0/parthe/utils/model_resolver.py +97 -0
  35. parthe-0.1.0/parthe/utils/preprocessing.py +105 -0
  36. parthe-0.1.0/parthe/utils/scoring.py +59 -0
  37. parthe-0.1.0/parthe/utils/spyral.py +186 -0
  38. parthe-0.1.0/parthe/utils/torch_utils.py +53 -0
  39. parthe-0.1.0/pyproject.toml +157 -0
@@ -0,0 +1,83 @@
1
+ # Development directories
2
+ dev/
3
+ notes/
4
+ old_code/
5
+
6
+ # Python
7
+ __pycache__/
8
+ *.py[cod]
9
+ *$py.class
10
+ *.so
11
+ .Python
12
+ build/
13
+ develop-eggs/
14
+ dist/
15
+ downloads/
16
+ eggs/
17
+ .eggs/
18
+ lib/
19
+ lib64/
20
+ parts/
21
+ sdist/
22
+ var/
23
+ wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # Virtual environments
30
+ venv/
31
+ env/
32
+ ENV/
33
+ .venv
34
+
35
+ # Testing
36
+ .pytest_cache/
37
+ .coverage
38
+ htmlcov/
39
+ .tox/
40
+ .hypothesis/
41
+
42
+ # Type checking
43
+ typings/
44
+ .mypy_cache/
45
+ .pytype/
46
+ .pyre/
47
+
48
+ # Linting
49
+ .ruff_cache/
50
+
51
+ # IDEs
52
+ .idea/
53
+ *.swp
54
+ *.swo
55
+ *~
56
+ .DS_Store
57
+
58
+ # Project specific
59
+ checkpoints/
60
+ *debug*.py
61
+ old_code/
62
+ scores.json
63
+ configs/
64
+ jobs/
65
+ debug/
66
+
67
+ # Data and artifacts
68
+ *.png
69
+ *.jpg
70
+ *.jpeg
71
+ *.pkl
72
+ *.pt
73
+ *.pth
74
+ *.ckpt
75
+
76
+ # Outputs
77
+ examples/out
78
+ logs/
79
+ results/
80
+
81
+ # Metadata
82
+ NOTES
83
+ TODO