Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
whisper-asr-webservice
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
David Schwertgen
whisper-asr-webservice
Commits
e683ecc9
Unverified
Commit
e683ecc9
authored
3 months ago
by
Ahmet Öner
Committed by
GitHub
3 months ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #286 from ahmetoner/release-1.8.1
Release 1.8.1
parents
53f60f3f
dbc3dfc6
No related branches found
No related tags found
No related merge requests found
Changes
5
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
CHANGELOG.md
+5
-0
5 additions, 0 deletions
CHANGELOG.md
README.md
+1
-1
1 addition, 1 deletion
README.md
docs/index.md
+1
-1
1 addition, 1 deletion
docs/index.md
poetry.lock
+290
-3
290 additions, 3 deletions
poetry.lock
pyproject.toml
+10
-2
10 additions, 2 deletions
pyproject.toml
with
307 additions
and
7 deletions
CHANGELOG.md
+
5
−
0
View file @
e683ecc9
...
...
@@ -4,9 +4,13 @@ Changelog
Unreleased
----------
[1.8.1] (2025-02-18)
--------------------
### Fixed
-
Fixed issues with Torch CUDA and cuDNN
-
Updated Torch and Torchaudio dependencies for multi-architecture support
[1.8.0] (2025-02-17)
--------------------
...
...
@@ -270,6 +274,7 @@ Unreleased
-
mp3 support by using FFmpeg instead of librosa in #8
-
add language detection endpoint in #9
[
1.8.1
]:
https://github.com/ahmetoner/whisper-asr-webservice/releases/tag/v1.8.1
[
1.8.0
]:
https://github.com/ahmetoner/whisper-asr-webservice/releases/tag/v1.8.0
[
1.7.1
]:
https://github.com/ahmetoner/whisper-asr-webservice/releases/tag/v1.7.1
[
1.7.0
]:
https://github.com/ahmetoner/whisper-asr-webservice/releases/tag/v1.7.0
...
...
This diff is collapsed.
Click to expand it.
README.md
+
1
−
1
View file @
e683ecc9
...
...
@@ -9,7 +9,7 @@ Whisper ASR Box is a general-purpose speech recognition toolkit. Whisper Models
## Features
Current release (v1.8.
0
) supports following whisper models:
Current release (v1.8.
1
) supports following whisper models:
-
[
openai/whisper
](
https://github.com/openai/whisper
)
@
[
v20240930
](
https://github.com/openai/whisper/releases/tag/v20240930
)
-
[
SYSTRAN/faster-whisper
](
https://github.com/SYSTRAN/faster-whisper
)
@
[
v1.1.0
](
https://github.com/SYSTRAN/faster-whisper/releases/tag/v1.1.0
)
...
...
This diff is collapsed.
Click to expand it.
docs/index.md
+
1
−
1
View file @
e683ecc9
...
...
@@ -2,7 +2,7 @@ Whisper is a general-purpose speech recognition model. It is trained on a large
## Features
Current release (v1.8.
0
) supports following whisper models:
Current release (v1.8.
1
) supports following whisper models:
-
[
openai/whisper
](
https://github.com/openai/whisper
)
@
[
v20240930
](
https://github.com/openai/whisper/releases/tag/v20240930
)
-
[
SYSTRAN/faster-whisper
](
https://github.com/SYSTRAN/faster-whisper
)
@
[
v1.1.0
](
https://github.com/SYSTRAN/faster-whisper/releases/tag/v1.1.0
)
...
...
This diff is collapsed.
Click to expand it.
poetry.lock
+
290
−
3
View file @
e683ecc9
This diff is collapsed.
Click to expand it.
pyproject.toml
+
10
−
2
View file @
e683ecc9
...
...
@@ -29,8 +29,16 @@ whisperx = "^3.3.1"
tqdm
=
"^4.67.1"
llvmlite
=
"^0.44.0"
numba
=
"^0.61.0"
torch
=
{
version
=
"2.6.0"
,
source
=
"pytorch-cpu"
}
torchaudio
=
{
version
=
"2.6.0"
,
source
=
"pytorch-cpu"
}
torch
=
[
{
version
=
"2.6.0"
,
source
=
"pypi"
,
markers
=
"sys_platform
=
=
'darwin'"},
{
version
=
"2.6.0"
,
source
=
"pypi"
,
markers
=
"platform_machine
=
=
'aarch64'
and
sys_platform
!
=
'darwin'"},
{
version
=
"2.6.0"
,
source
=
"pytorch-cpu"
,
markers
=
"platform_machine
=
=
'x86_64'
and
sys_platform
!
=
'darwin'" },
]
torchaudio
=
[
{
version
=
"2.6.0"
,
source
=
"pypi"
,
markers
=
"sys_platform
=
=
'darwin'"},
{
version
=
"2.6.0"
,
source
=
"pypi"
,
markers
=
"platform_machine
=
=
'aarch64'
and
sys_platform
!
=
'darwin'"},
{
version
=
"2.6.0"
,
source
=
"pytorch-cpu"
,
markers
=
"platform_machine
=
=
'x86_64'
and
sys_platform
!
=
'darwin'" },
]
[poetry.group.dev.dependencies]
pytest
=
"^8.3.4"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment