Compare commits
73 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
3744af1a1e | ||
|
dd788a6cea | ||
|
56264ea4b7 | ||
|
3ebcbdea91 | ||
|
62c1075681 | ||
|
07cbf09f22 | ||
|
9ff6df7122 | ||
|
b26548437f | ||
|
b17d43a0b6 | ||
|
a37c5f19a7 | ||
|
0e073be1f3 | ||
|
e9d263712f | ||
|
02e4c76240 | ||
|
c9bd96f78c | ||
|
ba6c68d435 | ||
|
5803eebe61 | ||
|
a920e95a44 | ||
|
2de2eacd20 | ||
|
f0c327a367 | ||
|
95210b2cd2 | ||
|
0671a78f5d | ||
|
5089e69b97 | ||
|
fa883eb8b8 | ||
|
8e7d6cba4f | ||
|
395f7d0be5 | ||
|
d989a5175f | ||
|
fd482e8440 | ||
|
9586ac4212 | ||
|
8e3c8d0af8 | ||
|
7fbbfeba82 | ||
|
4d030aee93 | ||
|
107bda0602 | ||
|
e39b5fdf7d | ||
|
93cae64ddc | ||
|
1b97bc379b | ||
|
30f75f1f68 | ||
|
127f8836e4 | ||
|
8bdacdfb70 | ||
|
7cb2b50138 | ||
|
e64ae57e83 | ||
|
a6164db5df | ||
|
f54ff7897e | ||
|
f56b07dab4 | ||
|
412ad4d9c9 | ||
|
fc86b1ac2d | ||
|
03b568904b | ||
|
3bdb3fce0f | ||
|
4db7f23382 | ||
|
39ef96b533 | ||
|
32e185f1d7 | ||
|
820350f719 | ||
|
19fb1726c6 | ||
|
94782b94c5 | ||
|
c32bdeeee0 | ||
|
7b22af1c6d | ||
|
86c88c2310 | ||
|
18c37b9bfc | ||
|
1b10a25733 | ||
|
8119f3df93 | ||
|
7024451938 | ||
|
c6efdc6d01 | ||
|
29ec97b2ce | ||
|
797cc2181c | ||
|
290649606a | ||
|
cecb10a007 | ||
|
02408d4a16 | ||
|
6a5a07b552 | ||
|
08e3ff5f16 | ||
|
d141943c35 | ||
|
89429de16a | ||
|
1bc71bf9b1 | ||
|
b4bf745d13 | ||
|
8fccec6ab0 |
4
.gitmodules
vendored
4
.gitmodules
vendored
@ -1,7 +1,7 @@
|
||||
[submodule "doc/examples"]
|
||||
path = doc/examples
|
||||
url = https://github.com/mozilla/DeepSpeech-examples.git
|
||||
branch = master
|
||||
url = https://github.com/mozilla/STT-examples.git
|
||||
branch = r0.8
|
||||
[submodule "tensorflow"]
|
||||
path = tensorflow
|
||||
url = https://github.com/mozilla/tensorflow.git
|
||||
|
@ -8,7 +8,7 @@ metadata:
|
||||
source: "{{ event.head.repo.url }}" # the repo where the pr came from will be inserted here
|
||||
tasks:
|
||||
- provisionerId: "proj-deepspeech"
|
||||
workerType: "ci"
|
||||
workerType: "ci-decision-task"
|
||||
extra:
|
||||
github:
|
||||
env: true
|
||||
@ -19,7 +19,7 @@ tasks:
|
||||
- push
|
||||
- tag
|
||||
branches:
|
||||
- master
|
||||
- r0.8
|
||||
|
||||
scopes: [
|
||||
"queue:create-task:highest:proj-deepspeech/*",
|
||||
|
@ -64,7 +64,7 @@ ENV TF_CUDA_PATHS "/usr,/usr/local/cuda-10.1,/usr/lib/x86_64-linux-gnu/"
|
||||
ENV TF_CUDA_VERSION 10.1
|
||||
ENV TF_CUDNN_VERSION 7.6
|
||||
ENV TF_CUDA_COMPUTE_CAPABILITIES 6.0
|
||||
ENV TF_NCCL_VERSION 2.4
|
||||
ENV TF_NCCL_VERSION 2.7
|
||||
|
||||
# Common Environment Setup
|
||||
ENV TF_BUILD_CONTAINER_TYPE GPU
|
||||
@ -113,7 +113,8 @@ RUN echo "build --spawn_strategy=standalone --genrule_strategy=standalone" \
|
||||
|
||||
WORKDIR /
|
||||
|
||||
RUN git clone --recursive $DEEPSPEECH_REPO
|
||||
RUN git clone --recursive $DEEPSPEECH_REPO /DeepSpeech
|
||||
|
||||
WORKDIR /DeepSpeech
|
||||
RUN git checkout $DEEPSPEECH_SHA
|
||||
RUN git submodule sync tensorflow/
|
||||
|
@ -1,6 +1,6 @@
|
||||
# Please refer to the TRAINING documentation, "Basic Dockerfile for training"
|
||||
|
||||
FROM tensorflow/tensorflow:1.15.2-gpu-py3
|
||||
FROM tensorflow/tensorflow:1.15.4-gpu-py3
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
ENV DEEPSPEECH_REPO=#DEEPSPEECH_REPO#
|
||||
@ -31,7 +31,7 @@ RUN apt-get install -y --no-install-recommends libopus0 libsndfile1
|
||||
RUN rm -rf /var/lib/apt/lists/*
|
||||
|
||||
WORKDIR /
|
||||
RUN git clone $DEEPSPEECH_REPO
|
||||
RUN git clone $DEEPSPEECH_REPO /DeepSpeech
|
||||
|
||||
WORKDIR /DeepSpeech
|
||||
RUN git checkout $DEEPSPEECH_SHA
|
||||
@ -41,7 +41,7 @@ RUN cd native_client/ctcdecode && make NUM_PROCESSES=$(nproc) bindings
|
||||
RUN pip3 install --upgrade native_client/ctcdecode/dist/*.whl
|
||||
|
||||
# Prepare deps
|
||||
RUN pip3 install --upgrade pip==20.0.2 wheel==0.34.2 setuptools==46.1.3
|
||||
RUN pip3 install --upgrade pip==20.2.2 wheel==0.34.2 setuptools==49.6.0
|
||||
|
||||
# Install DeepSpeech
|
||||
# - No need for the decoder since we did it earlier
|
||||
|
@ -7,8 +7,8 @@ Project DeepSpeech
|
||||
:alt: Documentation
|
||||
|
||||
|
||||
.. image:: https://community-tc.services.mozilla.com/api/github/v1/repository/mozilla/DeepSpeech/master/badge.svg
|
||||
:target: https://community-tc.services.mozilla.com/api/github/v1/repository/mozilla/DeepSpeech/master/latest
|
||||
.. image:: https://community-tc.services.mozilla.com/api/github/v1/repository/mozilla/DeepSpeech/r0.8/badge.svg
|
||||
:target: https://community-tc.services.mozilla.com/api/github/v1/repository/mozilla/DeepSpeech/r0.8/latest
|
||||
:alt: Task Status
|
||||
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
User contributed examples
|
||||
=========================
|
||||
|
||||
There are also several user contributed examples available on a separate examples repository: `https://github.com/mozilla/DeepSpeech-examples <https://github.com/mozilla/DeepSpeech-examples>`_.
|
||||
There are also several user contributed examples available on a separate examples repository: `https://github.com/mozilla/STT-examples <https://github.com/mozilla/STT-examples>`_.
|
||||
|
@ -46,7 +46,7 @@ Install the required dependencies using ``pip3``\ :
|
||||
.. code-block:: bash
|
||||
|
||||
cd DeepSpeech
|
||||
pip3 install --upgrade pip==20.0.2 wheel==0.34.2 setuptools==46.1.3
|
||||
pip3 install --upgrade pip==20.2.2 wheel==0.34.2 setuptools==49.6.0
|
||||
pip3 install --upgrade -e .
|
||||
|
||||
Remember to re-run the last ``pip3 install`` command above when you update the training code (for example by pulling new changes), in order to update any dependencies.
|
||||
@ -65,7 +65,7 @@ If you have a capable (NVIDIA, at least 8GB of VRAM) GPU, it is highly recommend
|
||||
.. code-block:: bash
|
||||
|
||||
pip3 uninstall tensorflow
|
||||
pip3 install 'tensorflow-gpu==1.15.2'
|
||||
pip3 install 'tensorflow-gpu==1.15.4'
|
||||
|
||||
Please ensure you have the required :ref:`CUDA dependency <cuda-deps>`.
|
||||
|
||||
|
@ -37,8 +37,8 @@ If you want to use the pre-trained English model for performing speech-to-text,
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
wget https://github.com/mozilla/DeepSpeech/releases/download/v0.7.4/deepspeech-0.7.4-models.pbmm
|
||||
wget https://github.com/mozilla/DeepSpeech/releases/download/v0.7.4/deepspeech-0.7.4-models.scorer
|
||||
wget https://github.com/mozilla/DeepSpeech/releases/download/v0.8.1/deepspeech-0.8.1-models.pbmm
|
||||
wget https://github.com/mozilla/DeepSpeech/releases/download/v0.8.1/deepspeech-0.8.1-models.scorer
|
||||
|
||||
There are several pre-trained model files available in official releases. Files ending in ``.pbmm`` are compatible with clients and language bindings built against the standard TensorFlow runtime. Usually these packages are simply called ``deepspeech``. These files are also compatible with CUDA enabled clients and language bindings. These packages are usually called ``deepspeech-gpu``. Files ending in ``.tflite`` are compatible with clients and language bindings built against the `TensorFlow Lite runtime <https://www.tensorflow.org/lite/>`_. These models are optimized for size and performance in low power devices. On desktop platforms, the compatible packages are called ``deepspeech-tflite``. On Android and Raspberry Pi, we only publish TensorFlow Lite enabled packages, and they are simply called ``deepspeech``. You can see a full list of supported platforms and which TensorFlow runtime is supported at :ref:`supported-platforms-inference`.
|
||||
|
||||
@ -136,7 +136,7 @@ Note: the following command assumes you `downloaded the pre-trained model <#gett
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
deepspeech --model deepspeech-0.7.4-models.pbmm --scorer deepspeech-0.7.4-models.scorer --audio my_audio_file.wav
|
||||
deepspeech --model deepspeech-0.8.1-models.pbmm --scorer deepspeech-0.8.1-models.scorer --audio my_audio_file.wav
|
||||
|
||||
The ``--scorer`` argument is optional, and represents an external language model to be used when transcribing the audio.
|
||||
|
||||
@ -200,7 +200,7 @@ Note: the following command assumes you `downloaded the pre-trained model <#gett
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
./deepspeech --model deepspeech-0.7.4-models.pbmm --scorer deepspeech-0.7.4-models.scorer --audio audio_input.wav
|
||||
./deepspeech --model deepspeech-0.8.1-models.pbmm --scorer deepspeech-0.8.1-models.scorer --audio audio_input.wav
|
||||
|
||||
See the help output with ``./deepspeech -h`` for more details.
|
||||
|
||||
|
@ -1 +1 @@
|
||||
Subproject commit 6f5f501fa62743f1b78fe162eb1a579a450bd38f
|
||||
Subproject commit a184d968509acf48045d42a6a03be875d19dbfd5
|
@ -20,15 +20,15 @@ To install and use DeepSpeech all you have to do is:
|
||||
pip3 install deepspeech
|
||||
|
||||
# Download pre-trained English model files
|
||||
curl -LO https://github.com/mozilla/DeepSpeech/releases/download/v0.7.4/deepspeech-0.7.4-models.pbmm
|
||||
curl -LO https://github.com/mozilla/DeepSpeech/releases/download/v0.7.4/deepspeech-0.7.4-models.scorer
|
||||
curl -LO https://github.com/mozilla/DeepSpeech/releases/download/v0.8.1/deepspeech-0.8.1-models.pbmm
|
||||
curl -LO https://github.com/mozilla/DeepSpeech/releases/download/v0.8.1/deepspeech-0.8.1-models.scorer
|
||||
|
||||
# Download example audio files
|
||||
curl -LO https://github.com/mozilla/DeepSpeech/releases/download/v0.7.4/audio-0.7.4.tar.gz
|
||||
tar xvf audio-0.7.4.tar.gz
|
||||
curl -LO https://github.com/mozilla/DeepSpeech/releases/download/v0.8.1/audio-0.8.1.tar.gz
|
||||
tar xvf audio-0.8.1.tar.gz
|
||||
|
||||
# Transcribe an audio file
|
||||
deepspeech --model deepspeech-0.7.4-models.pbmm --scorer deepspeech-0.7.4-models.scorer --audio audio/2830-3980-0043.wav
|
||||
deepspeech --model deepspeech-0.8.1-models.pbmm --scorer deepspeech-0.8.1-models.scorer --audio audio/2830-3980-0043.wav
|
||||
|
||||
A pre-trained English model is available for use and can be downloaded following the instructions in :ref:`the usage docs <usage-docs>`. For the latest release, including pre-trained models and checkpoints, `see the GitHub releases page <https://github.com/mozilla/DeepSpeech/releases/latest>`_.
|
||||
|
||||
@ -44,7 +44,7 @@ Quicker inference can be performed using a supported NVIDIA GPU on Linux. See th
|
||||
pip3 install deepspeech-gpu
|
||||
|
||||
# Transcribe an audio file.
|
||||
deepspeech --model deepspeech-0.7.4-models.pbmm --scorer deepspeech-0.7.4-models.scorer --audio audio/2830-3980-0043.wav
|
||||
deepspeech --model deepspeech-0.8.1-models.pbmm --scorer deepspeech-0.8.1-models.scorer --audio audio/2830-3980-0043.wav
|
||||
|
||||
Please ensure you have the required :ref:`CUDA dependencies <cuda-deps>`.
|
||||
|
||||
|
@ -3,4 +3,4 @@ Examples
|
||||
|
||||
DeepSpeech examples were moved to a separate repository.
|
||||
|
||||
New location: https://github.com/mozilla/DeepSpeech-examples
|
||||
New location: https://github.com/mozilla/STT-examples
|
||||
|
@ -200,11 +200,11 @@ endef
|
||||
|
||||
SWIG_DIST_URL ?=
|
||||
ifeq ($(findstring Linux,$(OS)),Linux)
|
||||
SWIG_DIST_URL := "https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.swig.linux.amd64.b5fea54d39832d1d132d7dd921b69c0c2c9d5118/artifacts/public/ds-swig.tar.gz"
|
||||
SWIG_DIST_URL := "https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.swig.linux.amd64.1a4c14945012f1282c2eddc174fb7674d5295de8.0/artifacts/public/ds-swig.tar.gz"
|
||||
else ifeq ($(findstring Darwin,$(OS)),Darwin)
|
||||
SWIG_DIST_URL := "https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.swig.darwin.amd64.b5fea54d39832d1d132d7dd921b69c0c2c9d5118/artifacts/public/ds-swig.tar.gz"
|
||||
SWIG_DIST_URL := "https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.swig.darwin.amd64.1a4c14945012f1282c2eddc174fb7674d5295de8.0/artifacts/public/ds-swig.tar.gz"
|
||||
else ifeq ($(findstring _NT,$(OS)),_NT)
|
||||
SWIG_DIST_URL := "https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.swig.win.amd64.b5fea54d39832d1d132d7dd921b69c0c2c9d5118/artifacts/public/ds-swig.tar.gz"
|
||||
SWIG_DIST_URL := "https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.swig.win.amd64.1a4c14945012f1282c2eddc174fb7674d5295de8.0/artifacts/public/ds-swig.tar.gz"
|
||||
else
|
||||
$(error There is no prebuilt SWIG available for your platform. Please produce one and set SWIG_DIST_URL.)
|
||||
endif
|
||||
|
330
native_client/dotnet/DeepSpeechWPF/.gitignore
vendored
Normal file
330
native_client/dotnet/DeepSpeechWPF/.gitignore
vendored
Normal file
@ -0,0 +1,330 @@
|
||||
## Ignore Visual Studio temporary files, build results, and
|
||||
## files generated by popular Visual Studio add-ons.
|
||||
##
|
||||
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
|
||||
|
||||
# User-specific files
|
||||
*.suo
|
||||
*.user
|
||||
*.userosscache
|
||||
*.sln.docstates
|
||||
|
||||
# User-specific files (MonoDevelop/Xamarin Studio)
|
||||
*.userprefs
|
||||
|
||||
# Build results
|
||||
[Dd]ebug/
|
||||
[Dd]ebugPublic/
|
||||
[Rr]elease/
|
||||
[Rr]eleases/
|
||||
x64/
|
||||
x86/
|
||||
bld/
|
||||
[Bb]in/
|
||||
[Oo]bj/
|
||||
[Ll]og/
|
||||
|
||||
# Visual Studio 2015/2017 cache/options directory
|
||||
.vs/
|
||||
# Uncomment if you have tasks that create the project's static files in wwwroot
|
||||
#wwwroot/
|
||||
|
||||
# Visual Studio 2017 auto generated files
|
||||
Generated\ Files/
|
||||
|
||||
# MSTest test Results
|
||||
[Tt]est[Rr]esult*/
|
||||
[Bb]uild[Ll]og.*
|
||||
|
||||
# NUNIT
|
||||
*.VisualState.xml
|
||||
TestResult.xml
|
||||
|
||||
# Build Results of an ATL Project
|
||||
[Dd]ebugPS/
|
||||
[Rr]eleasePS/
|
||||
dlldata.c
|
||||
|
||||
# Benchmark Results
|
||||
BenchmarkDotNet.Artifacts/
|
||||
|
||||
# .NET Core
|
||||
project.lock.json
|
||||
project.fragment.lock.json
|
||||
artifacts/
|
||||
**/Properties/launchSettings.json
|
||||
|
||||
# StyleCop
|
||||
StyleCopReport.xml
|
||||
|
||||
# Files built by Visual Studio
|
||||
*_i.c
|
||||
*_p.c
|
||||
*_i.h
|
||||
*.ilk
|
||||
*.meta
|
||||
*.obj
|
||||
*.iobj
|
||||
*.pch
|
||||
*.pdb
|
||||
*.ipdb
|
||||
*.pgc
|
||||
*.pgd
|
||||
*.rsp
|
||||
*.sbr
|
||||
*.tlb
|
||||
*.tli
|
||||
*.tlh
|
||||
*.tmp
|
||||
*.tmp_proj
|
||||
*.log
|
||||
*.vspscc
|
||||
*.vssscc
|
||||
.builds
|
||||
*.pidb
|
||||
*.svclog
|
||||
*.scc
|
||||
|
||||
# Chutzpah Test files
|
||||
_Chutzpah*
|
||||
|
||||
# Visual C++ cache files
|
||||
ipch/
|
||||
*.aps
|
||||
*.ncb
|
||||
*.opendb
|
||||
*.opensdf
|
||||
*.sdf
|
||||
*.cachefile
|
||||
*.VC.db
|
||||
*.VC.VC.opendb
|
||||
|
||||
# Visual Studio profiler
|
||||
*.psess
|
||||
*.vsp
|
||||
*.vspx
|
||||
*.sap
|
||||
|
||||
# Visual Studio Trace Files
|
||||
*.e2e
|
||||
|
||||
# TFS 2012 Local Workspace
|
||||
$tf/
|
||||
|
||||
# Guidance Automation Toolkit
|
||||
*.gpState
|
||||
|
||||
# ReSharper is a .NET coding add-in
|
||||
_ReSharper*/
|
||||
*.[Rr]e[Ss]harper
|
||||
*.DotSettings.user
|
||||
|
||||
# JustCode is a .NET coding add-in
|
||||
.JustCode
|
||||
|
||||
# TeamCity is a build add-in
|
||||
_TeamCity*
|
||||
|
||||
# DotCover is a Code Coverage Tool
|
||||
*.dotCover
|
||||
|
||||
# AxoCover is a Code Coverage Tool
|
||||
.axoCover/*
|
||||
!.axoCover/settings.json
|
||||
|
||||
# Visual Studio code coverage results
|
||||
*.coverage
|
||||
*.coveragexml
|
||||
|
||||
# NCrunch
|
||||
_NCrunch_*
|
||||
.*crunch*.local.xml
|
||||
nCrunchTemp_*
|
||||
|
||||
# MightyMoose
|
||||
*.mm.*
|
||||
AutoTest.Net/
|
||||
|
||||
# Web workbench (sass)
|
||||
.sass-cache/
|
||||
|
||||
# Installshield output folder
|
||||
[Ee]xpress/
|
||||
|
||||
# DocProject is a documentation generator add-in
|
||||
DocProject/buildhelp/
|
||||
DocProject/Help/*.HxT
|
||||
DocProject/Help/*.HxC
|
||||
DocProject/Help/*.hhc
|
||||
DocProject/Help/*.hhk
|
||||
DocProject/Help/*.hhp
|
||||
DocProject/Help/Html2
|
||||
DocProject/Help/html
|
||||
|
||||
# Click-Once directory
|
||||
publish/
|
||||
|
||||
# Publish Web Output
|
||||
*.[Pp]ublish.xml
|
||||
*.azurePubxml
|
||||
# Note: Comment the next line if you want to checkin your web deploy settings,
|
||||
# but database connection strings (with potential passwords) will be unencrypted
|
||||
*.pubxml
|
||||
*.publishproj
|
||||
|
||||
# Microsoft Azure Web App publish settings. Comment the next line if you want to
|
||||
# checkin your Azure Web App publish settings, but sensitive information contained
|
||||
# in these scripts will be unencrypted
|
||||
PublishScripts/
|
||||
|
||||
# NuGet Packages
|
||||
*.nupkg
|
||||
# The packages folder can be ignored because of Package Restore
|
||||
**/[Pp]ackages/*
|
||||
# except build/, which is used as an MSBuild target.
|
||||
!**/[Pp]ackages/build/
|
||||
# Uncomment if necessary however generally it will be regenerated when needed
|
||||
#!**/[Pp]ackages/repositories.config
|
||||
# NuGet v3's project.json files produces more ignorable files
|
||||
*.nuget.props
|
||||
*.nuget.targets
|
||||
|
||||
# Microsoft Azure Build Output
|
||||
csx/
|
||||
*.build.csdef
|
||||
|
||||
# Microsoft Azure Emulator
|
||||
ecf/
|
||||
rcf/
|
||||
|
||||
# Windows Store app package directories and files
|
||||
AppPackages/
|
||||
BundleArtifacts/
|
||||
Package.StoreAssociation.xml
|
||||
_pkginfo.txt
|
||||
*.appx
|
||||
|
||||
# Visual Studio cache files
|
||||
# files ending in .cache can be ignored
|
||||
*.[Cc]ache
|
||||
# but keep track of directories ending in .cache
|
||||
!*.[Cc]ache/
|
||||
|
||||
# Others
|
||||
ClientBin/
|
||||
~$*
|
||||
*~
|
||||
*.dbmdl
|
||||
*.dbproj.schemaview
|
||||
*.jfm
|
||||
*.pfx
|
||||
*.publishsettings
|
||||
orleans.codegen.cs
|
||||
|
||||
# Including strong name files can present a security risk
|
||||
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
|
||||
#*.snk
|
||||
|
||||
# Since there are multiple workflows, uncomment next line to ignore bower_components
|
||||
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
|
||||
#bower_components/
|
||||
|
||||
# RIA/Silverlight projects
|
||||
Generated_Code/
|
||||
|
||||
# Backup & report files from converting an old project file
|
||||
# to a newer Visual Studio version. Backup files are not needed,
|
||||
# because we have git ;-)
|
||||
_UpgradeReport_Files/
|
||||
Backup*/
|
||||
UpgradeLog*.XML
|
||||
UpgradeLog*.htm
|
||||
ServiceFabricBackup/
|
||||
*.rptproj.bak
|
||||
|
||||
# SQL Server files
|
||||
*.mdf
|
||||
*.ldf
|
||||
*.ndf
|
||||
|
||||
# Business Intelligence projects
|
||||
*.rdl.data
|
||||
*.bim.layout
|
||||
*.bim_*.settings
|
||||
*.rptproj.rsuser
|
||||
|
||||
# Microsoft Fakes
|
||||
FakesAssemblies/
|
||||
|
||||
# GhostDoc plugin setting file
|
||||
*.GhostDoc.xml
|
||||
|
||||
# Node.js Tools for Visual Studio
|
||||
.ntvs_analysis.dat
|
||||
node_modules/
|
||||
|
||||
# Visual Studio 6 build log
|
||||
*.plg
|
||||
|
||||
# Visual Studio 6 workspace options file
|
||||
*.opt
|
||||
|
||||
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
|
||||
*.vbw
|
||||
|
||||
# Visual Studio LightSwitch build output
|
||||
**/*.HTMLClient/GeneratedArtifacts
|
||||
**/*.DesktopClient/GeneratedArtifacts
|
||||
**/*.DesktopClient/ModelManifest.xml
|
||||
**/*.Server/GeneratedArtifacts
|
||||
**/*.Server/ModelManifest.xml
|
||||
_Pvt_Extensions
|
||||
|
||||
# Paket dependency manager
|
||||
.paket/paket.exe
|
||||
paket-files/
|
||||
|
||||
# FAKE - F# Make
|
||||
.fake/
|
||||
|
||||
# JetBrains Rider
|
||||
.idea/
|
||||
*.sln.iml
|
||||
|
||||
# CodeRush
|
||||
.cr/
|
||||
|
||||
# Python Tools for Visual Studio (PTVS)
|
||||
__pycache__/
|
||||
*.pyc
|
||||
|
||||
# Cake - Uncomment if you are using it
|
||||
# tools/**
|
||||
# !tools/packages.config
|
||||
|
||||
# Tabs Studio
|
||||
*.tss
|
||||
|
||||
# Telerik's JustMock configuration file
|
||||
*.jmconfig
|
||||
|
||||
# BizTalk build output
|
||||
*.btp.cs
|
||||
*.btm.cs
|
||||
*.odx.cs
|
||||
*.xsd.cs
|
||||
|
||||
# OpenCover UI analysis results
|
||||
OpenCover/
|
||||
|
||||
# Azure Stream Analytics local run output
|
||||
ASALocalRun/
|
||||
|
||||
# MSBuild Binary and Structured Log
|
||||
*.binlog
|
||||
|
||||
# NVidia Nsight GPU debugger configuration file
|
||||
*.nvuser
|
||||
|
||||
# MFractors (Xamarin productivity tool) working folder
|
||||
.mfractor/
|
6
native_client/dotnet/DeepSpeechWPF/App.config
Normal file
6
native_client/dotnet/DeepSpeechWPF/App.config
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.2" />
|
||||
</startup>
|
||||
</configuration>
|
8
native_client/dotnet/DeepSpeechWPF/App.xaml
Normal file
8
native_client/dotnet/DeepSpeechWPF/App.xaml
Normal file
@ -0,0 +1,8 @@
|
||||
<Application
|
||||
x:Class="DeepSpeechWPF.App"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:local="clr-namespace:DeepSpeechWPF"
|
||||
StartupUri="MainWindow.xaml">
|
||||
<Application.Resources />
|
||||
</Application>
|
42
native_client/dotnet/DeepSpeechWPF/App.xaml.cs
Normal file
42
native_client/dotnet/DeepSpeechWPF/App.xaml.cs
Normal file
@ -0,0 +1,42 @@
|
||||
using CommonServiceLocator;
|
||||
using DeepSpeech.WPF.ViewModels;
|
||||
using DeepSpeechClient.Interfaces;
|
||||
using GalaSoft.MvvmLight.Ioc;
|
||||
using System.Windows;
|
||||
|
||||
namespace DeepSpeechWPF
|
||||
{
|
||||
/// <summary>
|
||||
/// Interaction logic for App.xaml
|
||||
/// </summary>
|
||||
public partial class App : Application
|
||||
{
|
||||
protected override void OnStartup(StartupEventArgs e)
|
||||
{
|
||||
base.OnStartup(e);
|
||||
ServiceLocator.SetLocatorProvider(() => SimpleIoc.Default);
|
||||
|
||||
try
|
||||
{
|
||||
//Register instance of DeepSpeech
|
||||
DeepSpeechClient.DeepSpeech deepSpeechClient =
|
||||
new DeepSpeechClient.DeepSpeech("deepspeech-0.8.1-models.pbmm");
|
||||
|
||||
SimpleIoc.Default.Register<IDeepSpeech>(() => deepSpeechClient);
|
||||
SimpleIoc.Default.Register<MainWindowViewModel>();
|
||||
}
|
||||
catch (System.Exception ex)
|
||||
{
|
||||
MessageBox.Show(ex.Message);
|
||||
Current.Shutdown();
|
||||
}
|
||||
}
|
||||
|
||||
protected override void OnExit(ExitEventArgs e)
|
||||
{
|
||||
base.OnExit(e);
|
||||
//Dispose instance of DeepSpeech
|
||||
ServiceLocator.Current.GetInstance<IDeepSpeech>()?.Dispose();
|
||||
}
|
||||
}
|
||||
}
|
140
native_client/dotnet/DeepSpeechWPF/DeepSpeech.WPF.csproj
Normal file
140
native_client/dotnet/DeepSpeechWPF/DeepSpeech.WPF.csproj
Normal file
@ -0,0 +1,140 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{54BFD766-4305-4F4C-BA59-AF45505DF3C1}</ProjectGuid>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<RootNamespace>DeepSpeech.WPF</RootNamespace>
|
||||
<AssemblyName>DeepSpeech.WPF</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
<Deterministic>true</Deterministic>
|
||||
<NuGetPackageImportStamp>
|
||||
</NuGetPackageImportStamp>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<OutputPath>bin\x64\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<DebugType>full</DebugType>
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
||||
<Prefer32Bit>false</Prefer32Bit>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
|
||||
<OutputPath>bin\x64\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<Optimize>true</Optimize>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<PlatformTarget>x64</PlatformTarget>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="AsyncAwaitBestPractices, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>packages\AsyncAwaitBestPractices.3.1.0\lib\netstandard1.0\AsyncAwaitBestPractices.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="AsyncAwaitBestPractices.MVVM, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>packages\AsyncAwaitBestPractices.MVVM.3.1.0\lib\netstandard1.0\AsyncAwaitBestPractices.MVVM.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="CommonServiceLocator, Version=2.0.2.0, Culture=neutral, PublicKeyToken=489b6accfaf20ef0, processorArchitecture=MSIL">
|
||||
<HintPath>packages\CommonServiceLocator.2.0.2\lib\net45\CommonServiceLocator.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="CSCore, Version=1.2.1.2, Culture=neutral, PublicKeyToken=5a08f2b6f4415dea, processorArchitecture=MSIL">
|
||||
<HintPath>packages\CSCore.1.2.1.2\lib\net35-client\CSCore.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="GalaSoft.MvvmLight, Version=5.4.1.0, Culture=neutral, PublicKeyToken=e7570ab207bcb616, processorArchitecture=MSIL">
|
||||
<HintPath>packages\MvvmLightLibs.5.4.1.1\lib\net45\GalaSoft.MvvmLight.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="GalaSoft.MvvmLight.Extras, Version=5.4.1.0, Culture=neutral, PublicKeyToken=669f0b5e8f868abf, processorArchitecture=MSIL">
|
||||
<HintPath>packages\MvvmLightLibs.5.4.1.1\lib\net45\GalaSoft.MvvmLight.Extras.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="GalaSoft.MvvmLight.Platform, Version=5.4.1.0, Culture=neutral, PublicKeyToken=5f873c45e98af8a1, processorArchitecture=MSIL">
|
||||
<HintPath>packages\MvvmLightLibs.5.4.1.1\lib\net45\GalaSoft.MvvmLight.Platform.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="NAudio, Version=1.9.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>packages\NAudio.1.9.0\lib\net35\NAudio.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Windows.Forms" />
|
||||
<Reference Include="System.Windows.Interactivity, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
||||
<HintPath>packages\MvvmLightLibs.5.4.1.1\lib\net45\System.Windows.Interactivity.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System.Xml" />
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="System.Net.Http" />
|
||||
<Reference Include="System.Xaml">
|
||||
<RequiredTargetFramework>4.0</RequiredTargetFramework>
|
||||
</Reference>
|
||||
<Reference Include="WindowsBase" />
|
||||
<Reference Include="PresentationCore" />
|
||||
<Reference Include="PresentationFramework" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ApplicationDefinition Include="App.xaml">
|
||||
<Generator>MSBuild:Compile</Generator>
|
||||
<SubType>Designer</SubType>
|
||||
</ApplicationDefinition>
|
||||
<Compile Include="ViewModels\MainWindowViewModel.cs" />
|
||||
<Page Include="MainWindow.xaml">
|
||||
<Generator>MSBuild:Compile</Generator>
|
||||
<SubType>Designer</SubType>
|
||||
</Page>
|
||||
<Compile Include="App.xaml.cs">
|
||||
<DependentUpon>App.xaml</DependentUpon>
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Include="ViewModels\BindableBase.cs" />
|
||||
<Compile Include="MainWindow.xaml.cs">
|
||||
<DependentUpon>MainWindow.xaml</DependentUpon>
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Properties\AssemblyInfo.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Properties\Resources.Designer.cs">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DesignTime>True</DesignTime>
|
||||
<DependentUpon>Resources.resx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Properties\Settings.Designer.cs">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DependentUpon>Settings.settings</DependentUpon>
|
||||
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
||||
</Compile>
|
||||
<EmbeddedResource Include="Properties\Resources.resx">
|
||||
<Generator>ResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
||||
</EmbeddedResource>
|
||||
<None Include="packages.config" />
|
||||
<None Include="Properties\Settings.settings">
|
||||
<Generator>SettingsSingleFileGenerator</Generator>
|
||||
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="App.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\DeepSpeechClient\DeepSpeechClient.csproj">
|
||||
<Project>{56de4091-bbbe-47e4-852d-7268b33b971f}</Project>
|
||||
<Name>DeepSpeechClient</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
31
native_client/dotnet/DeepSpeechWPF/DeepSpeech.WPF.sln
Normal file
31
native_client/dotnet/DeepSpeechWPF/DeepSpeech.WPF.sln
Normal file
@ -0,0 +1,31 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 15
|
||||
VisualStudioVersion = 15.0.28307.421
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DeepSpeech.WPF", "DeepSpeech.WPF.csproj", "{54BFD766-4305-4F4C-BA59-AF45505DF3C1}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DeepSpeechClient", "..\DeepSpeechClient\DeepSpeechClient.csproj", "{56DE4091-BBBE-47E4-852D-7268B33B971F}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|x64 = Debug|x64
|
||||
Release|x64 = Release|x64
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{54BFD766-4305-4F4C-BA59-AF45505DF3C1}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{54BFD766-4305-4F4C-BA59-AF45505DF3C1}.Debug|x64.Build.0 = Debug|x64
|
||||
{54BFD766-4305-4F4C-BA59-AF45505DF3C1}.Release|x64.ActiveCfg = Release|x64
|
||||
{54BFD766-4305-4F4C-BA59-AF45505DF3C1}.Release|x64.Build.0 = Release|x64
|
||||
{56DE4091-BBBE-47E4-852D-7268B33B971F}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{56DE4091-BBBE-47E4-852D-7268B33B971F}.Debug|x64.Build.0 = Debug|x64
|
||||
{56DE4091-BBBE-47E4-852D-7268B33B971F}.Release|x64.ActiveCfg = Release|x64
|
||||
{56DE4091-BBBE-47E4-852D-7268B33B971F}.Release|x64.Build.0 = Release|x64
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {19C58802-CCEC-4FD1-8D17-A6EB766116F7}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
102
native_client/dotnet/DeepSpeechWPF/MainWindow.xaml
Normal file
102
native_client/dotnet/DeepSpeechWPF/MainWindow.xaml
Normal file
@ -0,0 +1,102 @@
|
||||
<Window
|
||||
x:Class="DeepSpeechWPF.MainWindow"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
Title="Deepspeech client"
|
||||
Width="800"
|
||||
Height="600"
|
||||
Loaded="Window_Loaded"
|
||||
WindowStartupLocation="CenterScreen"
|
||||
mc:Ignorable="d">
|
||||
<Grid>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="222" />
|
||||
<RowDefinition />
|
||||
</Grid.RowDefinitions>
|
||||
<TextBox
|
||||
Grid.Row="1"
|
||||
Margin="10,36,10,10"
|
||||
FontSize="16px"
|
||||
Text="{Binding Transcription, Mode=OneWay}"
|
||||
TextWrapping="Wrap" />
|
||||
<Label
|
||||
Grid.Row="1"
|
||||
Height="26"
|
||||
Margin="10,5,10,0"
|
||||
VerticalAlignment="Top"
|
||||
Content="Results:" />
|
||||
<Label
|
||||
Height="26"
|
||||
Margin="10,10,10,0"
|
||||
VerticalAlignment="Top"
|
||||
Content="Select an audio file to transcript:" />
|
||||
<TextBox
|
||||
Height="23"
|
||||
Margin="10,41,10,0"
|
||||
VerticalAlignment="Top"
|
||||
Text="{Binding AudioFilePath, Mode=TwoWay}"
|
||||
TextWrapping="Wrap" />
|
||||
<Button
|
||||
Width="80"
|
||||
Height="25"
|
||||
Margin="10,69,0,0"
|
||||
HorizontalAlignment="Left"
|
||||
VerticalAlignment="Top"
|
||||
Command="{Binding SelectFileCommand}"
|
||||
Content="Open file" />
|
||||
<Button
|
||||
Width="82"
|
||||
Height="25"
|
||||
Margin="95,69,0,0"
|
||||
HorizontalAlignment="Left"
|
||||
VerticalAlignment="Top"
|
||||
Command="{Binding EnableExternalScorerCommand}"
|
||||
Content="Enable external scorer" />
|
||||
<Button
|
||||
Width="75"
|
||||
Height="25"
|
||||
Margin="182,69,0,0"
|
||||
HorizontalAlignment="Left"
|
||||
VerticalAlignment="Top"
|
||||
Command="{Binding InferenceFromFileCommand}"
|
||||
Content="Transcript" />
|
||||
<Label
|
||||
Height="30"
|
||||
Margin="10,99,10,0"
|
||||
VerticalAlignment="Top"
|
||||
Content="{Binding StatusMessage, Mode=OneWay}" />
|
||||
<Label
|
||||
Height="26"
|
||||
Margin="10,158,10,0"
|
||||
VerticalAlignment="Top"
|
||||
Content="Select an audio input:" />
|
||||
<ComboBox
|
||||
Height="23"
|
||||
Margin="20,189,186,0"
|
||||
VerticalAlignment="Top"
|
||||
DisplayMemberPath="FriendlyName"
|
||||
ItemsSource="{Binding AvailableRecordDevices, Mode=TwoWay}"
|
||||
SelectedIndex="0"
|
||||
SelectedItem="{Binding SelectedDevice, Mode=TwoWay}" />
|
||||
<Button
|
||||
Width="91"
|
||||
Height="23"
|
||||
Margin="0,0,90,10"
|
||||
HorizontalAlignment="Right"
|
||||
VerticalAlignment="Bottom"
|
||||
Command="{Binding StartRecordingCommand}"
|
||||
Content="Record"
|
||||
IsEnabled="{Binding EnableStartRecord, Mode=OneWay}" />
|
||||
<Button
|
||||
Width="75"
|
||||
Height="23"
|
||||
Margin="0,0,10,10"
|
||||
HorizontalAlignment="Right"
|
||||
VerticalAlignment="Bottom"
|
||||
Command="{Binding StopRecordingCommand}"
|
||||
Content="Stop"
|
||||
IsEnabled="{Binding EnableStopRecord, Mode=OneWay}" />
|
||||
</Grid>
|
||||
</Window>
|
17
native_client/dotnet/DeepSpeechWPF/MainWindow.xaml.cs
Normal file
17
native_client/dotnet/DeepSpeechWPF/MainWindow.xaml.cs
Normal file
@ -0,0 +1,17 @@
|
||||
using CommonServiceLocator;
|
||||
using DeepSpeech.WPF.ViewModels;
|
||||
using System.Windows;
|
||||
|
||||
namespace DeepSpeechWPF
|
||||
{
|
||||
/// <summary>
|
||||
/// Interaction logic for MainWindow.xaml
|
||||
/// </summary>
|
||||
public partial class MainWindow : Window
|
||||
{
|
||||
public MainWindow() => InitializeComponent();
|
||||
|
||||
private void Window_Loaded(object sender, RoutedEventArgs e) =>
|
||||
DataContext = ServiceLocator.Current.GetInstance<MainWindowViewModel>();
|
||||
}
|
||||
}
|
@ -0,0 +1,55 @@
|
||||
using System.Reflection;
|
||||
using System.Resources;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Windows;
|
||||
|
||||
// General Information about an assembly is controlled through the following
|
||||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyTitle("DeepSpeech.WPF")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("DeepSpeech.WPF.SingleFiles")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2018")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Setting ComVisible to false makes the types in this assembly not visible
|
||||
// to COM components. If you need to access a type in this assembly from
|
||||
// COM, set the ComVisible attribute to true on that type.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
//In order to begin building localizable applications, set
|
||||
//<UICulture>CultureYouAreCodingWith</UICulture> in your .csproj file
|
||||
//inside a <PropertyGroup>. For example, if you are using US english
|
||||
//in your source files, set the <UICulture> to en-US. Then uncomment
|
||||
//the NeutralResourceLanguage attribute below. Update the "en-US" in
|
||||
//the line below to match the UICulture setting in the project file.
|
||||
|
||||
//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
|
||||
|
||||
|
||||
[assembly: ThemeInfo(
|
||||
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
|
||||
//(used if a resource is not found in the page,
|
||||
// or application resource dictionaries)
|
||||
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
|
||||
//(used if a resource is not found in the page,
|
||||
// app, or any theme specific resource dictionaries)
|
||||
)]
|
||||
|
||||
|
||||
// Version information for an assembly consists of the following four values:
|
||||
//
|
||||
// Major Version
|
||||
// Minor Version
|
||||
// Build Number
|
||||
// Revision
|
||||
//
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
63
native_client/dotnet/DeepSpeechWPF/Properties/Resources.Designer.cs
generated
Normal file
63
native_client/dotnet/DeepSpeechWPF/Properties/Resources.Designer.cs
generated
Normal file
@ -0,0 +1,63 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.42000
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace DeepSpeech.WPF.Properties {
|
||||
using System;
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// A strongly-typed resource class, for looking up localized strings, etc.
|
||||
/// </summary>
|
||||
// This class was auto-generated by the StronglyTypedResourceBuilder
|
||||
// class via a tool like ResGen or Visual Studio.
|
||||
// To add or remove a member, edit your .ResX file then rerun ResGen
|
||||
// with the /str option, or rebuild your VS project.
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||
internal class Resources {
|
||||
|
||||
private static global::System.Resources.ResourceManager resourceMan;
|
||||
|
||||
private static global::System.Globalization.CultureInfo resourceCulture;
|
||||
|
||||
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
|
||||
internal Resources() {
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns the cached ResourceManager instance used by this class.
|
||||
/// </summary>
|
||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||
internal static global::System.Resources.ResourceManager ResourceManager {
|
||||
get {
|
||||
if (object.ReferenceEquals(resourceMan, null)) {
|
||||
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("DeepSpeech.WPF.Properties.Resources", typeof(Resources).Assembly);
|
||||
resourceMan = temp;
|
||||
}
|
||||
return resourceMan;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Overrides the current thread's CurrentUICulture property for all
|
||||
/// resource lookups using this strongly typed resource class.
|
||||
/// </summary>
|
||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||
internal static global::System.Globalization.CultureInfo Culture {
|
||||
get {
|
||||
return resourceCulture;
|
||||
}
|
||||
set {
|
||||
resourceCulture = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
117
native_client/dotnet/DeepSpeechWPF/Properties/Resources.resx
Normal file
117
native_client/dotnet/DeepSpeechWPF/Properties/Resources.resx
Normal file
@ -0,0 +1,117 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
</root>
|
26
native_client/dotnet/DeepSpeechWPF/Properties/Settings.Designer.cs
generated
Normal file
26
native_client/dotnet/DeepSpeechWPF/Properties/Settings.Designer.cs
generated
Normal file
@ -0,0 +1,26 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.42000
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace DeepSpeech.WPF.Properties {
|
||||
|
||||
|
||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.9.0.0")]
|
||||
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
|
||||
|
||||
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
|
||||
|
||||
public static Settings Default {
|
||||
get {
|
||||
return defaultInstance;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<SettingsFile xmlns="uri:settings" CurrentProfile="(Default)">
|
||||
<Profiles>
|
||||
<Profile Name="(Default)" />
|
||||
</Profiles>
|
||||
<Settings />
|
||||
</SettingsFile>
|
@ -0,0 +1,49 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
namespace DeepSpeech.WPF.ViewModels
|
||||
{
|
||||
/// <summary>
|
||||
/// Implementation of <see cref="INotifyPropertyChanged"/> to simplify models.
|
||||
/// </summary>
|
||||
public abstract class BindableBase : INotifyPropertyChanged
|
||||
{
|
||||
/// <summary>
|
||||
/// Checks if a property already matches a desired value. Sets the property and
|
||||
/// notifies listeners only when necessary.
|
||||
/// </summary>
|
||||
/// <typeparam name="T">Type of the property.</typeparam>
|
||||
/// <param name="storage">Reference to a property with both getter and setter.</param>
|
||||
/// <param name="value">Desired value for the property.</param>
|
||||
/// <param name="propertyName">Name of the property used to notify listeners. This
|
||||
/// value is optional and can be provided automatically when invoked from compilers that
|
||||
/// support CallerMemberName.</param>
|
||||
/// <returns>True if the value was changed, false if the existing value matched the
|
||||
/// desired value.</returns>
|
||||
protected bool SetProperty<T>(ref T backingStore, T value,
|
||||
[CallerMemberName]string propertyName = "",
|
||||
Action onChanged = null)
|
||||
{
|
||||
if (EqualityComparer<T>.Default.Equals(backingStore, value))
|
||||
return false;
|
||||
backingStore = value;
|
||||
onChanged?.Invoke();
|
||||
OnPropertyChanged(propertyName);
|
||||
return true;
|
||||
}
|
||||
|
||||
#region INotifyPropertyChanged
|
||||
/// <summary>
|
||||
/// Notifies listeners that a property value has changed.
|
||||
/// </summary>
|
||||
/// <param name="propertyName">Name of the property used to notify listeners. This
|
||||
/// value is optional and can be provided automatically when invoked from compilers
|
||||
/// that support <see cref="CallerMemberNameAttribute"/>.</param>
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
protected void OnPropertyChanged([CallerMemberName] string propertyName = "")
|
||||
=> PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
|
||||
#endregion
|
||||
}
|
||||
}
|
@ -0,0 +1,425 @@
|
||||
using AsyncAwaitBestPractices.MVVM;
|
||||
using CSCore;
|
||||
using CSCore.CoreAudioAPI;
|
||||
using CSCore.SoundIn;
|
||||
using CSCore.Streams;
|
||||
using DeepSpeechClient.Interfaces;
|
||||
using DeepSpeechClient.Models;
|
||||
using GalaSoft.MvvmLight.CommandWpf;
|
||||
using Microsoft.Win32;
|
||||
using System;
|
||||
using System.Collections.Concurrent;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Diagnostics;
|
||||
using System.IO;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DeepSpeech.WPF.ViewModels
|
||||
{
|
||||
/// <summary>
|
||||
/// View model of the MainWindow View.
|
||||
/// </summary>
|
||||
public class MainWindowViewModel : BindableBase
|
||||
{
|
||||
#region Constants
|
||||
private const int SampleRate = 16000;
|
||||
private const string ScorerPath = "kenlm.scorer";
|
||||
#endregion
|
||||
|
||||
private readonly IDeepSpeech _sttClient;
|
||||
|
||||
#region Commands
|
||||
/// <summary>
|
||||
/// Gets or sets the command that enables the external scorer.
|
||||
/// </summary>
|
||||
public IAsyncCommand EnableExternalScorerCommand { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the command that runs inference using an audio file.
|
||||
/// </summary>
|
||||
public IAsyncCommand InferenceFromFileCommand { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the command that opens a dialog to select an audio file.
|
||||
/// </summary>
|
||||
public RelayCommand SelectFileCommand { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the command that starts to record.
|
||||
/// </summary>
|
||||
public RelayCommand StartRecordingCommand { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the command that stops the recording and gets the result.
|
||||
/// </summary>
|
||||
public IAsyncCommand StopRecordingCommand { get; private set; }
|
||||
|
||||
#endregion
|
||||
|
||||
#region Streaming
|
||||
|
||||
/// <summary>
|
||||
/// Stream used to feed data into the acoustic model.
|
||||
/// </summary>
|
||||
private DeepSpeechStream _sttStream;
|
||||
|
||||
/// <summary>
|
||||
/// Records the audio of the selected device.
|
||||
/// </summary>
|
||||
private WasapiCapture _audioCapture;
|
||||
|
||||
/// <summary>
|
||||
/// Converts the device source into a wavesource.
|
||||
/// </summary>
|
||||
private SoundInSource _soundInSource;
|
||||
|
||||
/// <summary>
|
||||
/// Target wave source.(16KHz Mono 16bit for DeepSpeech)
|
||||
/// </summary>
|
||||
private IWaveSource _convertedSource;
|
||||
|
||||
/// <summary>
|
||||
/// Queue that prevents feeding data to the inference engine if it is busy.
|
||||
/// </summary>
|
||||
private ConcurrentQueue<short[]> _bufferQueue = new ConcurrentQueue<short[]>();
|
||||
|
||||
private int _threadSafeBoolBackValue = 0;
|
||||
|
||||
/// <summary>
|
||||
/// Lock to process items in the queue one at time.
|
||||
/// </summary>
|
||||
public bool StreamingIsBusy
|
||||
{
|
||||
get => (Interlocked.CompareExchange(ref _threadSafeBoolBackValue, 1, 1) == 1);
|
||||
set
|
||||
{
|
||||
if (value) Interlocked.CompareExchange(ref _threadSafeBoolBackValue, 1, 0);
|
||||
else Interlocked.CompareExchange(ref _threadSafeBoolBackValue, 0, 1);
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region ViewProperties
|
||||
|
||||
private bool _enableStartRecord;
|
||||
/// <summary>
|
||||
/// Gets or sets record status to control the record command.
|
||||
/// </summary>
|
||||
public bool EnableStartRecord
|
||||
{
|
||||
get => _enableStartRecord;
|
||||
set => SetProperty(ref _enableStartRecord, value);
|
||||
}
|
||||
|
||||
private bool _stopRecordStopRecord;
|
||||
/// <summary>
|
||||
/// Gets or sets record status to control stop command.
|
||||
/// </summary>
|
||||
public bool EnableStopRecord
|
||||
{
|
||||
get => _stopRecordStopRecord;
|
||||
set => SetProperty(ref _stopRecordStopRecord, value,
|
||||
onChanged: ()=> ((AsyncCommand)StopRecordingCommand).RaiseCanExecuteChanged());
|
||||
}
|
||||
|
||||
private MMDevice _selectedDevice;
|
||||
/// <summary>
|
||||
/// Gets or sets the selected recording device.
|
||||
/// </summary>
|
||||
public MMDevice SelectedDevice
|
||||
{
|
||||
get => _selectedDevice;
|
||||
set => SetProperty(ref _selectedDevice, value,
|
||||
onChanged: UpdateSelectedDevice);
|
||||
}
|
||||
|
||||
private string _statusMessage;
|
||||
/// <summary>
|
||||
/// Gets or sets status message.
|
||||
/// </summary>
|
||||
public string StatusMessage
|
||||
{
|
||||
get => _statusMessage;
|
||||
set => SetProperty(ref _statusMessage, value);
|
||||
}
|
||||
|
||||
private bool _externalScorerEnabled;
|
||||
/// <summary>
|
||||
/// Gets or sets the external scorer status.
|
||||
/// </summary>
|
||||
private bool ExternalScorerEnabled
|
||||
{
|
||||
get => _externalScorerEnabled;
|
||||
set => SetProperty(ref _externalScorerEnabled, value,
|
||||
onChanged: () => ((AsyncCommand)EnableExternalScorerCommand).RaiseCanExecuteChanged());
|
||||
}
|
||||
|
||||
private bool _isRunningInference;
|
||||
/// <summary>
|
||||
/// Gets or sets whenever the model is running inference.
|
||||
/// </summary>
|
||||
private bool IsRunningInference
|
||||
{
|
||||
get => _isRunningInference;
|
||||
set => SetProperty(ref _isRunningInference, value,
|
||||
onChanged: () => ((AsyncCommand)InferenceFromFileCommand).RaiseCanExecuteChanged());
|
||||
}
|
||||
|
||||
private string _transcription;
|
||||
/// <summary>
|
||||
/// Gets or sets the current transcription.
|
||||
/// </summary>
|
||||
public string Transcription
|
||||
{
|
||||
get => _transcription;
|
||||
set => SetProperty(ref _transcription, value);
|
||||
}
|
||||
|
||||
private string _audioFilePaht;
|
||||
/// <summary>
|
||||
/// Gets or sets the selected audio file path.
|
||||
/// </summary>
|
||||
public string AudioFilePath
|
||||
{
|
||||
get => _audioFilePaht;
|
||||
set => SetProperty(ref _audioFilePaht, value);
|
||||
}
|
||||
|
||||
private ObservableCollection<MMDevice> _deviceNames;
|
||||
/// <summary>
|
||||
/// Gets or sets the available recording devices.
|
||||
/// </summary>
|
||||
public ObservableCollection<MMDevice> AvailableRecordDevices
|
||||
{
|
||||
get => _deviceNames;
|
||||
set => SetProperty(ref _deviceNames, value);
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Ctors
|
||||
public MainWindowViewModel(IDeepSpeech sttClient)
|
||||
{
|
||||
_sttClient = sttClient;
|
||||
|
||||
EnableExternalScorerCommand = new AsyncCommand(()=>EnableExternalScorerAsync(ScorerPath),
|
||||
_ => !ExternalScorerEnabled);
|
||||
|
||||
InferenceFromFileCommand = new AsyncCommand(ExecuteInferenceFromFileAsync,
|
||||
_ => !IsRunningInference);
|
||||
|
||||
SelectFileCommand = new RelayCommand(SelectAudioFile);
|
||||
|
||||
StartRecordingCommand = new RelayCommand(StartRecording,
|
||||
canExecute: CanExecuteStartRecording);
|
||||
|
||||
StopRecordingCommand = new AsyncCommand(StopRecordingAsync,
|
||||
_ => EnableStopRecord);
|
||||
|
||||
LoadAvailableCaptureDevices();
|
||||
}
|
||||
#endregion
|
||||
|
||||
/// <summary>
|
||||
/// Releases the current capture device and initializes the selected one.
|
||||
/// </summary>
|
||||
private void UpdateSelectedDevice()
|
||||
{
|
||||
ReleaseCapture();
|
||||
InitializeAudioCapture();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Releases the capture device.
|
||||
/// </summary>
|
||||
private void ReleaseCapture()
|
||||
{
|
||||
if (_audioCapture != null)
|
||||
{
|
||||
_audioCapture.DataAvailable -= Capture_DataAvailable;
|
||||
_audioCapture.Dispose();
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// Command usage to know when the recording can start.
|
||||
/// </summary>
|
||||
/// <returns>If the device is not null.</returns>
|
||||
private bool CanExecuteStartRecording() =>
|
||||
SelectedDevice != null;
|
||||
|
||||
/// <summary>
|
||||
/// Loads all the available audio capture devices.
|
||||
/// </summary>
|
||||
private void LoadAvailableCaptureDevices()
|
||||
{
|
||||
AvailableRecordDevices = new ObservableCollection<MMDevice>(
|
||||
MMDeviceEnumerator.EnumerateDevices(DataFlow.All, DeviceState.Active)); //we get only enabled devices
|
||||
EnableStartRecord = true;
|
||||
if (AvailableRecordDevices?.Count != 0)
|
||||
SelectedDevice = AvailableRecordDevices[0];
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Initializes the capture source.
|
||||
/// </summary>
|
||||
private void InitializeAudioCapture()
|
||||
{
|
||||
if (SelectedDevice != null)
|
||||
{
|
||||
_audioCapture = SelectedDevice.DataFlow == DataFlow.Capture ?
|
||||
new WasapiCapture() : new WasapiLoopbackCapture();
|
||||
_audioCapture.Device = SelectedDevice;
|
||||
_audioCapture.Initialize();
|
||||
_audioCapture.DataAvailable += Capture_DataAvailable;
|
||||
_soundInSource = new SoundInSource(_audioCapture) { FillWithZeros = false };
|
||||
//create a source, that converts the data provided by the
|
||||
//soundInSource to required format
|
||||
_convertedSource = _soundInSource
|
||||
.ChangeSampleRate(SampleRate) // sample rate
|
||||
.ToSampleSource()
|
||||
.ToWaveSource(16); //bits per sample
|
||||
|
||||
_convertedSource = _convertedSource.ToMono();
|
||||
}
|
||||
}
|
||||
|
||||
private void Capture_DataAvailable(object sender, DataAvailableEventArgs e)
|
||||
{
|
||||
//read data from the converedSource
|
||||
//important: don't use the e.Data here
|
||||
//the e.Data contains the raw data provided by the
|
||||
//soundInSource which won't have the deepspeech required audio format
|
||||
byte[] buffer = new byte[_convertedSource.WaveFormat.BytesPerSecond / 2];
|
||||
|
||||
int read;
|
||||
//keep reading as long as we still get some data
|
||||
while ((read = _convertedSource.Read(buffer, 0, buffer.Length)) > 0)
|
||||
{
|
||||
short[] sdata = new short[(int)Math.Ceiling(Convert.ToDecimal(read / 2))];
|
||||
Buffer.BlockCopy(buffer, 0, sdata, 0, read);
|
||||
_bufferQueue.Enqueue(sdata);
|
||||
Task.Run(() => OnNewData());
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Starts processing data from the queue.
|
||||
/// </summary>
|
||||
private void OnNewData()
|
||||
{
|
||||
while (!StreamingIsBusy && !_bufferQueue.IsEmpty)
|
||||
{
|
||||
if (_bufferQueue.TryDequeue(out short[] buffer))
|
||||
{
|
||||
StreamingIsBusy = true;
|
||||
_sttClient.FeedAudioContent(_sttStream, buffer, Convert.ToUInt32(buffer.Length));
|
||||
StreamingIsBusy = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Enables the external scorer.
|
||||
/// </summary>
|
||||
/// <param name="scorerPath">External scorer path.</param>
|
||||
/// <returns>A Task to await.</returns>
|
||||
public async Task EnableExternalScorerAsync(string scorerPath)
|
||||
{
|
||||
try
|
||||
{
|
||||
StatusMessage = "Loading external scorer...";
|
||||
await Task.Run(() => _sttClient.EnableExternalScorer(ScorerPath));
|
||||
ExternalScorerEnabled = true;
|
||||
StatusMessage = "External scorer loaded.";
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
StatusMessage = ex.Message;
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// Runs inference and sets the transcription of an audio file.
|
||||
/// </summary>
|
||||
/// <returns>A Task to await.</returns>
|
||||
public async Task ExecuteInferenceFromFileAsync()
|
||||
{
|
||||
try
|
||||
{
|
||||
IsRunningInference = true;
|
||||
Transcription = string.Empty;
|
||||
StatusMessage = "Running inference...";
|
||||
Stopwatch watch = new Stopwatch();
|
||||
var waveBuffer = new NAudio.Wave.WaveBuffer(File.ReadAllBytes(AudioFilePath));
|
||||
using (var waveInfo = new NAudio.Wave.WaveFileReader(AudioFilePath))
|
||||
{
|
||||
watch.Start();
|
||||
string speechResult = await Task.Run(() => _sttClient.SpeechToText(
|
||||
waveBuffer.ShortBuffer,
|
||||
Convert.ToUInt32(waveBuffer.MaxSize / 2)));
|
||||
|
||||
watch.Stop();
|
||||
Transcription = $"Audio duration: {waveInfo.TotalTime.ToString()} {Environment.NewLine}" +
|
||||
$"Inference took: {watch.Elapsed.ToString()} {Environment.NewLine}" +
|
||||
$"Recognized text: {speechResult}";
|
||||
}
|
||||
waveBuffer.Clear();
|
||||
StatusMessage = string.Empty;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
StatusMessage = ex.Message;
|
||||
}
|
||||
finally
|
||||
{
|
||||
IsRunningInference = false;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Stops the recording and sets the transcription of the closed stream.
|
||||
/// </summary>
|
||||
/// <returns>A Task to await.</returns>
|
||||
private async Task StopRecordingAsync()
|
||||
{
|
||||
EnableStopRecord = false;
|
||||
_audioCapture.Stop();
|
||||
while (!_bufferQueue.IsEmpty && StreamingIsBusy) //we wait for all the queued buffers to be processed
|
||||
{
|
||||
await Task.Delay(90);
|
||||
}
|
||||
Transcription = _sttClient.FinishStream(_sttStream);
|
||||
EnableStartRecord = true;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Creates a new stream and starts the recording.
|
||||
/// </summary>
|
||||
private void StartRecording()
|
||||
{
|
||||
_sttStream =_sttClient.CreateStream();
|
||||
_audioCapture.Start();
|
||||
EnableStartRecord = false;
|
||||
EnableStopRecord = true;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Opens a dialog to select an audio file.
|
||||
/// </summary>
|
||||
private void SelectAudioFile()
|
||||
{
|
||||
OpenFileDialog dialog = new OpenFileDialog
|
||||
{
|
||||
Filter = "wav Files |*.wav",
|
||||
Multiselect = false,
|
||||
Title = "Please select a wav file."
|
||||
};
|
||||
|
||||
if ((bool)dialog.ShowDialog())
|
||||
{
|
||||
AudioFilePath = dialog.FileName;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
9
native_client/dotnet/DeepSpeechWPF/packages.config
Normal file
9
native_client/dotnet/DeepSpeechWPF/packages.config
Normal file
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="AsyncAwaitBestPractices" version="3.1.0" targetFramework="net462" />
|
||||
<package id="AsyncAwaitBestPractices.MVVM" version="3.1.0" targetFramework="net462" />
|
||||
<package id="CommonServiceLocator" version="2.0.2" targetFramework="net462" />
|
||||
<package id="CSCore" version="1.2.1.2" targetFramework="net462" />
|
||||
<package id="MvvmLightLibs" version="5.4.1.1" targetFramework="net462" />
|
||||
<package id="NAudio" version="1.9.0" targetFramework="net462" />
|
||||
</packages>
|
@ -57,7 +57,7 @@ def words_from_candidate_transcript(metadata):
|
||||
|
||||
each_word = dict()
|
||||
each_word["word"] = word
|
||||
each_word["start_time "] = round(word_start_time, 4)
|
||||
each_word["start_time"] = round(word_start_time, 4)
|
||||
each_word["duration"] = round(word_duration, 4)
|
||||
|
||||
word_list.append(each_word)
|
||||
|
@ -26,8 +26,8 @@ class SpeechRecognitionImpl : NSObject, AVCaptureAudioDataOutputSampleBufferDele
|
||||
private var audioData = Data()
|
||||
|
||||
override init() {
|
||||
let modelPath = Bundle.main.path(forResource: "deepspeech-0.7.4-models", ofType: "tflite")!
|
||||
let scorerPath = Bundle.main.path(forResource: "deepspeech-0.7.4-models", ofType: "scorer")!
|
||||
let modelPath = Bundle.main.path(forResource: "deepspeech-0.8.1-models", ofType: "tflite")!
|
||||
let scorerPath = Bundle.main.path(forResource: "deepspeech-0.8.1-models", ofType: "scorer")!
|
||||
|
||||
model = try! DeepSpeechModel(modelPath: modelPath)
|
||||
try! model.enableExternalScorer(scorerPath: scorerPath)
|
||||
|
2
setup.py
2
setup.py
@ -74,7 +74,7 @@ def main():
|
||||
]
|
||||
|
||||
tensorflow_pypi_dep = [
|
||||
'tensorflow == 1.15.2'
|
||||
'tensorflow == 1.15.4'
|
||||
]
|
||||
|
||||
# Due to pip craziness environment variables are the only consistent way to
|
||||
|
@ -10,8 +10,6 @@ build:
|
||||
routes: []
|
||||
maxRunTime: 3600
|
||||
docker_image: "ubuntu:16.04"
|
||||
generic:
|
||||
workerType: 'ds-macos-light'
|
||||
system_setup:
|
||||
>
|
||||
true
|
||||
@ -25,7 +23,7 @@ build:
|
||||
nc_asset_name: 'native_client.tar.xz'
|
||||
args:
|
||||
tests_cmdline: ''
|
||||
tensorflow_git_desc: 'TensorFlow: v2.2.0-17-g0854bb5'
|
||||
tensorflow_git_desc: 'TensorFlow: v2.2.0-24-g1c1b2b9'
|
||||
test_model_task: ''
|
||||
homebrew:
|
||||
url: ''
|
||||
|
@ -63,8 +63,8 @@ nodejs:
|
||||
prep_14: '/usr/bin/wget.exe https://nodejs.org/dist/v14.3.0/node-v14.3.0-win-x64.zip && ""C:\Program Files\7-zip\7z.exe"" x -o$TASKCLUSTER_NODE_DIR -tzip -aoa node-v14.3.0-win-x64.zip && rm node-*.zip && export PATH=$TASKCLUSTER_TASK_DIR/bin/node-v14.3.0-win-x64/:$PATH'
|
||||
system:
|
||||
node_gyp_cache:
|
||||
url: 'https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.node-gyp-cache.7/artifacts/public/node-gyp-cache.tar.gz'
|
||||
namespace: 'project.deepspeech.node-gyp-cache.7'
|
||||
url: 'https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.node-gyp-cache.8/artifacts/public/node-gyp-cache.tar.gz'
|
||||
namespace: 'project.deepspeech.node-gyp-cache.8'
|
||||
homebrew_builds:
|
||||
url: 'https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.homebrew_builds.8/artifacts/public/homebrew_builds.tar.gz'
|
||||
namespace: 'project.deepspeech.homebrew_builds.8'
|
||||
@ -74,51 +74,51 @@ system:
|
||||
android_cache:
|
||||
arm64_v8a:
|
||||
android_24:
|
||||
url: 'https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.android_cache.arm64-v8a.android-24.6/artifacts/public/android_cache.tar.gz'
|
||||
namespace: 'project.deepspeech.android_cache.arm64-v8a.android-24.6'
|
||||
url: 'https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.android_cache.arm64-v8a.android-24.7/artifacts/public/android_cache.tar.gz'
|
||||
namespace: 'project.deepspeech.android_cache.arm64-v8a.android-24.7'
|
||||
android_25:
|
||||
url: 'https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.android_cache.arm64-v8a.android-25.6/artifacts/public/android_cache.tar.gz'
|
||||
namespace: 'project.deepspeech.android_cache.arm64-v8a.android-25.6'
|
||||
url: 'https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.android_cache.arm64-v8a.android-25.7/artifacts/public/android_cache.tar.gz'
|
||||
namespace: 'project.deepspeech.android_cache.arm64-v8a.android-25.7'
|
||||
armeabi_v7a:
|
||||
android_24:
|
||||
url: 'https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.android_cache.armeabi-v7a.android-24.6/artifacts/public/android_cache.tar.gz'
|
||||
namespace: 'project.deepspeech.android_cache.armeabi-v7a.android-24.6'
|
||||
url: 'https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.android_cache.armeabi-v7a.android-24.7/artifacts/public/android_cache.tar.gz'
|
||||
namespace: 'project.deepspeech.android_cache.armeabi-v7a.android-24.7'
|
||||
android_25:
|
||||
url: 'https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.android_cache.armeabi-v7a.android-25.6/artifacts/public/android_cache.tar.gz'
|
||||
namespace: 'project.deepspeech.android_cache.armeabi-v7a.android-25.6'
|
||||
url: 'https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.android_cache.armeabi-v7a.android-25.7/artifacts/public/android_cache.tar.gz'
|
||||
namespace: 'project.deepspeech.android_cache.armeabi-v7a.android-25.7'
|
||||
x86_64:
|
||||
android_24:
|
||||
url: 'https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.android_cache.x86_64.android-24.6/artifacts/public/android_cache.tar.gz'
|
||||
namespace: 'project.deepspeech.android_cache.x86_64.android-24.6'
|
||||
url: 'https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.android_cache.x86_64.android-24.7/artifacts/public/android_cache.tar.gz'
|
||||
namespace: 'project.deepspeech.android_cache.x86_64.android-24.7'
|
||||
android_25:
|
||||
url: 'https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.android_cache.x86_64.android-25.6/artifacts/public/android_cache.tar.gz'
|
||||
namespace: 'project.deepspeech.android_cache.x86_64.android-25.6'
|
||||
url: 'https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.android_cache.x86_64.android-25.7/artifacts/public/android_cache.tar.gz'
|
||||
namespace: 'project.deepspeech.android_cache.x86_64.android-25.7'
|
||||
android_26:
|
||||
url: 'https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.android_cache.x86_64.android-26.2/artifacts/public/android_cache.tar.gz'
|
||||
namespace: 'project.deepspeech.android_cache.x86_64.android-26.2'
|
||||
url: 'https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.android_cache.x86_64.android-26.3/artifacts/public/android_cache.tar.gz'
|
||||
namespace: 'project.deepspeech.android_cache.x86_64.android-26.3'
|
||||
android_27:
|
||||
url: 'https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.android_cache.x86_64.android-27.2/artifacts/public/android_cache.tar.gz'
|
||||
namespace: 'project.deepspeech.android_cache.x86_64.android-27.2'
|
||||
url: 'https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.android_cache.x86_64.android-27.3/artifacts/public/android_cache.tar.gz'
|
||||
namespace: 'project.deepspeech.android_cache.x86_64.android-27.3'
|
||||
android_28:
|
||||
url: 'https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.android_cache.x86_64.android-28.2/artifacts/public/android_cache.tar.gz'
|
||||
namespace: 'project.deepspeech.android_cache.x86_64.android-28.2'
|
||||
url: 'https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.android_cache.x86_64.android-28.3/artifacts/public/android_cache.tar.gz'
|
||||
namespace: 'project.deepspeech.android_cache.x86_64.android-28.3'
|
||||
android_29:
|
||||
url: 'https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.android_cache.x86_64.android-29.2/artifacts/public/android_cache.tar.gz'
|
||||
namespace: 'project.deepspeech.android_cache.x86_64.android-29.2'
|
||||
url: 'https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.android_cache.x86_64.android-29.3/artifacts/public/android_cache.tar.gz'
|
||||
namespace: 'project.deepspeech.android_cache.x86_64.android-29.3'
|
||||
android_30:
|
||||
url: 'https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.android_cache.x86_64.android-30.2/artifacts/public/android_cache.tar.gz'
|
||||
namespace: 'project.deepspeech.android_cache.x86_64.android-30.2'
|
||||
url: 'https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.android_cache.x86_64.android-30.3/artifacts/public/android_cache.tar.gz'
|
||||
namespace: 'project.deepspeech.android_cache.x86_64.android-30.3'
|
||||
sdk:
|
||||
android_27:
|
||||
url: 'https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.android_cache.sdk.android-27.6/artifacts/public/android_cache.tar.gz'
|
||||
namespace: 'project.deepspeech.android_cache.sdk.android-27.6'
|
||||
url: 'https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.android_cache.sdk.android-27.7/artifacts/public/android_cache.tar.gz'
|
||||
namespace: 'project.deepspeech.android_cache.sdk.android-27.7'
|
||||
gradle_cache:
|
||||
url: 'https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.gradle.6/artifacts/public/gradle.tar.gz'
|
||||
namespace: 'project.deepspeech.gradle.6'
|
||||
url: 'https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.gradle.7/artifacts/public/gradle.tar.gz'
|
||||
namespace: 'project.deepspeech.gradle.7'
|
||||
pyenv:
|
||||
linux:
|
||||
url: 'https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.pyenv.linux.8/artifacts/public/pyenv.tar.gz'
|
||||
namespace: 'project.deepspeech.pyenv.linux.8'
|
||||
url: 'https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.pyenv.linux.9/artifacts/public/pyenv.tar.gz'
|
||||
namespace: 'project.deepspeech.pyenv.linux.9'
|
||||
osx:
|
||||
url: 'https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.pyenv.osx.9/artifacts/public/pyenv.tar.gz'
|
||||
namespace: 'project.deepspeech.pyenv.osx.9'
|
||||
@ -127,51 +127,51 @@ system:
|
||||
namespace: 'project.deepspeech.pyenv.win.8'
|
||||
swig:
|
||||
repo: "https://github.com/lissyx/swig"
|
||||
sha1: "b5fea54d39832d1d132d7dd921b69c0c2c9d5118"
|
||||
sha1: "1a4c14945012f1282c2eddc174fb7674d5295de8"
|
||||
swig_build:
|
||||
linux:
|
||||
url: "https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.swig.linux.amd64.b5fea54d39832d1d132d7dd921b69c0c2c9d5118/artifacts/public/ds-swig.tar.gz"
|
||||
namespace: "project.deepspeech.swig.linux.amd64.b5fea54d39832d1d132d7dd921b69c0c2c9d5118"
|
||||
url: "https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.swig.linux.amd64.1a4c14945012f1282c2eddc174fb7674d5295de8.0/artifacts/public/ds-swig.tar.gz"
|
||||
namespace: "project.deepspeech.swig.linux.amd64.1a4c14945012f1282c2eddc174fb7674d5295de8.0"
|
||||
osx:
|
||||
url: "https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.swig.darwin.amd64.b5fea54d39832d1d132d7dd921b69c0c2c9d5118/artifacts/public/ds-swig.tar.gz"
|
||||
namespace: "project.deepspeech.swig.darwin.amd64.b5fea54d39832d1d132d7dd921b69c0c2c9d5118"
|
||||
url: "https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.swig.darwin.amd64.1a4c14945012f1282c2eddc174fb7674d5295de8.0/artifacts/public/ds-swig.tar.gz"
|
||||
namespace: "project.deepspeech.swig.darwin.amd64.1a4c14945012f1282c2eddc174fb7674d5295de8.0"
|
||||
win:
|
||||
url: "https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.swig.win.amd64.b5fea54d39832d1d132d7dd921b69c0c2c9d5118/artifacts/public/ds-swig.tar.gz"
|
||||
namespace: "project.deepspeech.swig.win.amd64.b5fea54d39832d1d132d7dd921b69c0c2c9d5118"
|
||||
url: "https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.swig.win.amd64.1a4c14945012f1282c2eddc174fb7674d5295de8.0/artifacts/public/ds-swig.tar.gz"
|
||||
namespace: "project.deepspeech.swig.win.amd64.1a4c14945012f1282c2eddc174fb7674d5295de8.0"
|
||||
tensorflow:
|
||||
linux_amd64_cpu:
|
||||
url: "https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.tensorflow.pip.r2.2.0854bb5188a3150a4d75a1c71ee610b0d45cfcb1.cpu/artifacts/public/home.tar.xz"
|
||||
namespace: "project.deepspeech.tensorflow.pip.r2.2.0854bb5188a3150a4d75a1c71ee610b0d45cfcb1.cpu"
|
||||
url: "https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.tensorflow.pip.r2.2.1c1b2b9dd9ce767796a8414efbf65da1b67d1622.1.cpu/artifacts/public/home.tar.xz"
|
||||
namespace: "project.deepspeech.tensorflow.pip.r2.2.1c1b2b9dd9ce767796a8414efbf65da1b67d1622.1.cpu"
|
||||
linux_amd64_cuda:
|
||||
url: "https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.tensorflow.pip.r2.2.0854bb5188a3150a4d75a1c71ee610b0d45cfcb1.cuda/artifacts/public/home.tar.xz"
|
||||
namespace: "project.deepspeech.tensorflow.pip.r2.2.0854bb5188a3150a4d75a1c71ee610b0d45cfcb1.cuda"
|
||||
url: "https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.tensorflow.pip.r2.2.1c1b2b9dd9ce767796a8414efbf65da1b67d1622.1.cuda/artifacts/public/home.tar.xz"
|
||||
namespace: "project.deepspeech.tensorflow.pip.r2.2.1c1b2b9dd9ce767796a8414efbf65da1b67d1622.1.cuda"
|
||||
linux_armv7:
|
||||
url: "https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.tensorflow.pip.r2.2.0854bb5188a3150a4d75a1c71ee610b0d45cfcb1.arm/artifacts/public/home.tar.xz"
|
||||
namespace: "project.deepspeech.tensorflow.pip.r2.2.0854bb5188a3150a4d75a1c71ee610b0d45cfcb1.arm"
|
||||
url: "https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.tensorflow.pip.r2.2.1c1b2b9dd9ce767796a8414efbf65da1b67d1622.1.arm/artifacts/public/home.tar.xz"
|
||||
namespace: "project.deepspeech.tensorflow.pip.r2.2.1c1b2b9dd9ce767796a8414efbf65da1b67d1622.1.arm"
|
||||
linux_arm64:
|
||||
url: "https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.tensorflow.pip.r2.2.0854bb5188a3150a4d75a1c71ee610b0d45cfcb1.arm64/artifacts/public/home.tar.xz"
|
||||
namespace: "project.deepspeech.tensorflow.pip.r2.2.0854bb5188a3150a4d75a1c71ee610b0d45cfcb1.arm64"
|
||||
url: "https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.tensorflow.pip.r2.2.1c1b2b9dd9ce767796a8414efbf65da1b67d1622.1.arm64/artifacts/public/home.tar.xz"
|
||||
namespace: "project.deepspeech.tensorflow.pip.r2.2.1c1b2b9dd9ce767796a8414efbf65da1b67d1622.1.arm64"
|
||||
darwin_amd64:
|
||||
url: "https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.tensorflow.pip.r2.2.0854bb5188a3150a4d75a1c71ee610b0d45cfcb1.3.osx/artifacts/public/home.tar.xz"
|
||||
namespace: "project.deepspeech.tensorflow.pip.r2.2.0854bb5188a3150a4d75a1c71ee610b0d45cfcb1.3.osx"
|
||||
url: "https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.tensorflow.pip.r2.2.1c1b2b9dd9ce767796a8414efbf65da1b67d1622.1.osx/artifacts/public/home.tar.xz"
|
||||
namespace: "project.deepspeech.tensorflow.pip.r2.2.1c1b2b9dd9ce767796a8414efbf65da1b67d1622.1.osx"
|
||||
android_arm64:
|
||||
url: "https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.tensorflow.pip.r2.2.0854bb5188a3150a4d75a1c71ee610b0d45cfcb1.android-arm64/artifacts/public/home.tar.xz"
|
||||
namespace: "project.deepspeech.tensorflow.pip.r2.2.0854bb5188a3150a4d75a1c71ee610b0d45cfcb1.android-arm64"
|
||||
url: "https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.tensorflow.pip.r2.2.1c1b2b9dd9ce767796a8414efbf65da1b67d1622.1.android-arm64/artifacts/public/home.tar.xz"
|
||||
namespace: "project.deepspeech.tensorflow.pip.r2.2.1c1b2b9dd9ce767796a8414efbf65da1b67d1622.1.android-arm64"
|
||||
android_armv7:
|
||||
url: "https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.tensorflow.pip.r2.2.0854bb5188a3150a4d75a1c71ee610b0d45cfcb1.android-armv7/artifacts/public/home.tar.xz"
|
||||
namespace: "project.deepspeech.tensorflow.pip.r2.2.0854bb5188a3150a4d75a1c71ee610b0d45cfcb1.android-armv7"
|
||||
url: "https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.tensorflow.pip.r2.2.1c1b2b9dd9ce767796a8414efbf65da1b67d1622.1.android-armv7/artifacts/public/home.tar.xz"
|
||||
namespace: "project.deepspeech.tensorflow.pip.r2.2.1c1b2b9dd9ce767796a8414efbf65da1b67d1622.1.android-armv7"
|
||||
win_amd64_cpu:
|
||||
url: "https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.tensorflow.pip.r2.2.518c1d04bf55d362bb11e973b8f5d0aa3e5bf44d.2.win/artifacts/public/home.tar.xz"
|
||||
namespace: "project.deepspeech.tensorflow.pip.r2.2.518c1d04bf55d362bb11e973b8f5d0aa3e5bf44d.2.win"
|
||||
url: "https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.tensorflow.pip.r2.2.1c1b2b9dd9ce767796a8414efbf65da1b67d1622.0.win/artifacts/public/home.tar.xz"
|
||||
namespace: "project.deepspeech.tensorflow.pip.r2.2.1c1b2b9dd9ce767796a8414efbf65da1b67d1622.0.win"
|
||||
win_amd64_cuda:
|
||||
url: "https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.tensorflow.pip.r2.2.518c1d04bf55d362bb11e973b8f5d0aa3e5bf44d.2.win-cuda/artifacts/public/home.tar.xz"
|
||||
namespace: "project.deepspeech.tensorflow.pip.r2.2.518c1d04bf55d362bb11e973b8f5d0aa3e5bf44d.2.win-cuda"
|
||||
url: "https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.tensorflow.pip.r2.2.1c1b2b9dd9ce767796a8414efbf65da1b67d1622.0.win-cuda/artifacts/public/home.tar.xz"
|
||||
namespace: "project.deepspeech.tensorflow.pip.r2.2.1c1b2b9dd9ce767796a8414efbf65da1b67d1622.0.win-cuda"
|
||||
ios_arm64:
|
||||
url: "https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.tensorflow.pip.r2.2.0854bb5188a3150a4d75a1c71ee610b0d45cfcb1.3.ios_arm64/artifacts/public/home.tar.xz"
|
||||
namespace: "project.deepspeech.tensorflow.pip.r2.2.0854bb5188a3150a4d75a1c71ee610b0d45cfcb1.3.ios_arm64"
|
||||
url: "https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.tensorflow.pip.r2.2.1c1b2b9dd9ce767796a8414efbf65da1b67d1622.0.ios_arm64/artifacts/public/home.tar.xz"
|
||||
namespace: "project.deepspeech.tensorflow.pip.r2.2.1c1b2b9dd9ce767796a8414efbf65da1b67d1622.0.ios_arm64"
|
||||
ios_x86_64:
|
||||
url: "https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.tensorflow.pip.r2.2.0854bb5188a3150a4d75a1c71ee610b0d45cfcb1.3.ios_x86_64/artifacts/public/home.tar.xz"
|
||||
namespace: "project.deepspeech.tensorflow.pip.r2.2.0854bb5188a3150a4d75a1c71ee610b0d45cfcb1.3.ios_x86_64"
|
||||
url: "https://community-tc.services.mozilla.com/api/index/v1/task/project.deepspeech.tensorflow.pip.r2.2.1c1b2b9dd9ce767796a8414efbf65da1b67d1622.0.ios_x86_64/artifacts/public/home.tar.xz"
|
||||
namespace: "project.deepspeech.tensorflow.pip.r2.2.1c1b2b9dd9ce767796a8414efbf65da1b67d1622.0.ios_x86_64"
|
||||
username: 'build-user'
|
||||
homedir:
|
||||
linux: '/home/build-user'
|
||||
@ -181,3 +181,21 @@ system:
|
||||
msys2:
|
||||
url: 'https://github.com/msys2/msys2-installer/releases/download/2020-07-20/msys2-base-x86_64-20200720.tar.xz'
|
||||
sha: '24f0a7a3f499d9309bb55bcde5d34a08e752922c3bee9de3a33d2c40896a1496'
|
||||
docker:
|
||||
smallTask: 'ci-decision-task'
|
||||
smallTaskBeta: 'ci-decision-task-b'
|
||||
tfBuild: 'ci-tf-build'
|
||||
tfBuildBeta: 'ci-tf-build-b'
|
||||
dsBuild: 'ci-ds-build'
|
||||
dsBuildBeta: 'ci-ds-build-b'
|
||||
dsTests: 'ci-ds-tests'
|
||||
dsTestsBeta: 'ci-ds-tests-b'
|
||||
dsHighMemTests: 'ci-ds-mem-tests'
|
||||
dsHighMemTestsBeta: 'ci-ds-mem-tests-b'
|
||||
macOS:
|
||||
tfBuild: 'ds-macos-tf-build'
|
||||
tfBuildBeta: 'ds-macos-tf-build-b'
|
||||
dsBuild: 'ds-macos-ds-build'
|
||||
dsBuildBeta: 'ds-macos-ds-build-b'
|
||||
dsTests: 'ds-macos-ds-tests'
|
||||
dsTestsBeta: 'ds-macos-ds-tests-b'
|
||||
|
@ -15,6 +15,7 @@ build:
|
||||
build: "taskcluster/android-build.sh arm64-v8a"
|
||||
package: "taskcluster/android-package.sh arm64-v8a"
|
||||
nc_asset_name: "native_client.arm64.cpu.android.tar.xz"
|
||||
workerType: "${docker.dsBuild}"
|
||||
metadata:
|
||||
name: "DeepSpeech Android ARM64"
|
||||
description: "Building DeepSpeech for Android ARM64, optimized version"
|
||||
|
@ -14,6 +14,7 @@ build:
|
||||
build: "taskcluster/android-build.sh armeabi-v7a"
|
||||
package: "taskcluster/android-package.sh armeabi-v7a"
|
||||
nc_asset_name: "native_client.armv7.cpu.android.tar.xz"
|
||||
workerType: "${docker.dsBuild}"
|
||||
metadata:
|
||||
name: "DeepSpeech Android ARMv7"
|
||||
description: "Building DeepSpeech for Android ARMv7, optimized version"
|
||||
|
@ -10,6 +10,7 @@ build:
|
||||
setup: "taskcluster/tc-true.sh"
|
||||
build: "taskcluster/android_cache-build.sh arm64-v8a android-24"
|
||||
package: "taskcluster/android_cache-package.sh"
|
||||
workerType: "${docker.smallTask}"
|
||||
metadata:
|
||||
name: "Builds Android cache arm64-v8a / android-24"
|
||||
description: "Setup an Android SDK / emulator cache for Android arm64-v8a / android-24"
|
||||
|
@ -10,6 +10,7 @@ build:
|
||||
setup: "taskcluster/tc-true.sh"
|
||||
build: "taskcluster/android_cache-build.sh arm64-v8a android-25"
|
||||
package: "taskcluster/android_cache-package.sh"
|
||||
workerType: "${docker.smallTask}"
|
||||
metadata:
|
||||
name: "Builds Android cache arm64-v8a / android-25"
|
||||
description: "Setup an Android SDK / emulator cache for Android arm64-v8a / android-25"
|
||||
|
@ -10,6 +10,7 @@ build:
|
||||
setup: "taskcluster/tc-true.sh"
|
||||
build: "taskcluster/android_cache-build.sh armeabi-v7a android-24 default"
|
||||
package: "taskcluster/android_cache-package.sh"
|
||||
workerType: "${docker.smallTask}"
|
||||
metadata:
|
||||
name: "Builds Android cache armeabi-v7a / android-24"
|
||||
description: "Setup an Android SDK / emulator cache for Android armeabi-v7a / android-24"
|
||||
|
@ -10,6 +10,7 @@ build:
|
||||
setup: "taskcluster/tc-true.sh"
|
||||
build: "taskcluster/android_cache-build.sh armeabi-v7a android-25"
|
||||
package: "taskcluster/android_cache-package.sh"
|
||||
workerType: "${docker.smallTask}"
|
||||
metadata:
|
||||
name: "Builds Android cache armeabi-v7a / android-25"
|
||||
description: "Setup an Android SDK / emulator cache for Android armeabi-v7a / android-25"
|
||||
|
@ -10,6 +10,7 @@ build:
|
||||
setup: "taskcluster/tc-true.sh"
|
||||
build: "taskcluster/android_cache-build.sh sdk android-27"
|
||||
package: "taskcluster/android_cache-package.sh"
|
||||
workerType: "${docker.smallTask}"
|
||||
metadata:
|
||||
name: "Builds Android cache sdk / android-27"
|
||||
description: "Setup an Android SDK / emulator cache for Android sdk / android-27"
|
||||
|
@ -10,6 +10,7 @@ build:
|
||||
setup: "taskcluster/tc-true.sh"
|
||||
build: "taskcluster/android_cache-build.sh x86_64 android-24"
|
||||
package: "taskcluster/android_cache-package.sh"
|
||||
workerType: "${docker.smallTask}"
|
||||
metadata:
|
||||
name: "Builds Android cache x86_64 / android-24"
|
||||
description: "Setup an Android SDK / emulator cache for Android x86_64 / android-24"
|
||||
|
@ -10,6 +10,7 @@ build:
|
||||
setup: "taskcluster/tc-true.sh"
|
||||
build: "taskcluster/android_cache-build.sh x86_64 android-25"
|
||||
package: "taskcluster/android_cache-package.sh"
|
||||
workerType: "${docker.smallTask}"
|
||||
metadata:
|
||||
name: "Builds Android cache x86_64 / android-25"
|
||||
description: "Setup an Android SDK / emulator cache for Android / x86_64 android-25"
|
||||
|
@ -10,6 +10,7 @@ build:
|
||||
setup: "taskcluster/tc-true.sh"
|
||||
build: "taskcluster/android_cache-build.sh x86_64 android-26"
|
||||
package: "taskcluster/android_cache-package.sh"
|
||||
workerType: "${docker.smallTask}"
|
||||
metadata:
|
||||
name: "Builds Android cache x86_64 / android-26"
|
||||
description: "Setup an Android SDK / emulator cache for Android / x86_64 android-26"
|
||||
|
@ -10,6 +10,7 @@ build:
|
||||
setup: "taskcluster/tc-true.sh"
|
||||
build: "taskcluster/android_cache-build.sh x86_64 android-28"
|
||||
package: "taskcluster/android_cache-package.sh"
|
||||
workerType: "${docker.smallTask}"
|
||||
metadata:
|
||||
name: "Builds Android cache x86_64 / android-28"
|
||||
description: "Setup an Android SDK / emulator cache for Android / x86_64 android-28"
|
||||
|
@ -10,6 +10,7 @@ build:
|
||||
setup: "taskcluster/tc-true.sh"
|
||||
build: "taskcluster/android_cache-build.sh x86_64 android-29"
|
||||
package: "taskcluster/android_cache-package.sh"
|
||||
workerType: "${docker.smallTask}"
|
||||
metadata:
|
||||
name: "Builds Android cache x86_64 / android-29"
|
||||
description: "Setup an Android SDK / emulator cache for Android / x86_64 android-29"
|
||||
|
@ -10,6 +10,7 @@ build:
|
||||
setup: "taskcluster/tc-true.sh"
|
||||
build: "taskcluster/android_cache-build.sh x86_64 android-30"
|
||||
package: "taskcluster/android_cache-package.sh"
|
||||
workerType: "${docker.smallTask}"
|
||||
metadata:
|
||||
name: "Builds Android cache x86_64 / android-30"
|
||||
description: "Setup an Android SDK / emulator cache for Android / x86_64 android-30"
|
||||
|
@ -25,6 +25,7 @@ build:
|
||||
build: "taskcluster/android-apk-build.sh"
|
||||
package: "taskcluster/android-apk-package.sh"
|
||||
nc_asset_name: "native_client.apk.cpu.android.tar.xz"
|
||||
workerType: "${docker.dsBuild}"
|
||||
metadata:
|
||||
name: "DeepSpeech Android APK (ARM64+ARMv7+x86_64)"
|
||||
description: "Building DeepSpeech for Android APK (ARM64+ARMv7+x86_64), optimized version"
|
||||
|
@ -13,6 +13,7 @@ build:
|
||||
build: "taskcluster/android-build.sh x86_64"
|
||||
package: "taskcluster/android-package.sh x86_64"
|
||||
nc_asset_name: "native_client.x86_64.cpu.android.tar.xz"
|
||||
workerType: "${docker.dsBuild}"
|
||||
metadata:
|
||||
name: "DeepSpeech Android x86_64"
|
||||
description: "Building DeepSpeech for Android x86_64, optimized version"
|
||||
|
@ -1,6 +1,6 @@
|
||||
taskId: ${taskcluster.taskId}
|
||||
provisionerId: ${taskcluster.generic.provisionerId}
|
||||
workerType: ${taskcluster.generic.workerType}
|
||||
workerType: ${macOS.dsBuild}
|
||||
taskGroupId: ${taskcluster.taskGroupId}
|
||||
schedulerId: ${taskcluster.schedulerId}
|
||||
dependencies:
|
||||
|
@ -2,7 +2,7 @@ $if: '(event.event != "push") && (event.event != "tag")'
|
||||
then:
|
||||
taskId: ${taskcluster.taskId}
|
||||
provisionerId: ${taskcluster.docker.provisionerId}
|
||||
workerType: ${taskcluster.docker.workerType}
|
||||
workerType: ${build.workerType}
|
||||
taskGroupId: ${taskcluster.taskGroupId}
|
||||
schedulerId: ${taskcluster.schedulerId}
|
||||
created: { $fromNow: '0 sec' }
|
||||
|
@ -1,6 +1,7 @@
|
||||
build:
|
||||
template_file: docker-build-base.tyml
|
||||
dockerfile: "Dockerfile.build"
|
||||
workerType: "${docker.dsBuild}"
|
||||
metadata:
|
||||
name: "DeepSpeech Docker build"
|
||||
description: "Testing |docker build| of DeepSpeech build image"
|
||||
|
@ -1,6 +1,7 @@
|
||||
build:
|
||||
template_file: docker-build-base.tyml
|
||||
dockerfile: "Dockerfile.train"
|
||||
workerType: "${docker.dsBuild}"
|
||||
metadata:
|
||||
name: "DeepSpeech Docker train"
|
||||
description: "Testing |docker build| of DeepSpeech train image"
|
||||
|
@ -2,7 +2,7 @@ $if: 'event.event in build.allowed'
|
||||
then:
|
||||
taskId: ${taskcluster.taskId}
|
||||
provisionerId: ${taskcluster.docker.provisionerId}
|
||||
workerType: ${taskcluster.docker.workerType}
|
||||
workerType: ${build.workerType}
|
||||
taskGroupId: ${taskcluster.taskGroupId}
|
||||
schedulerId: ${taskcluster.schedulerId}
|
||||
dependencies:
|
||||
|
@ -11,6 +11,7 @@ build:
|
||||
scripts:
|
||||
build: "taskcluster/docs-build.sh"
|
||||
package: "taskcluster/docs-package.sh"
|
||||
workerType: "${docker.smallTask}"
|
||||
metadata:
|
||||
name: "DeepSpeech API Documentation"
|
||||
description: "Building DeepSpeech API Documentation"
|
||||
|
@ -2,7 +2,7 @@ $if: '(event.event != "push") && (event.event != "tag")'
|
||||
then:
|
||||
taskId: ${taskcluster.taskId}
|
||||
provisionerId: ${taskcluster.docker.provisionerId}
|
||||
workerType: ${taskcluster.docker.workerType}
|
||||
workerType: ${build.workerType}
|
||||
taskGroupId: ${taskcluster.taskGroupId}
|
||||
schedulerId: ${taskcluster.schedulerId}
|
||||
dependencies:
|
||||
@ -22,11 +22,11 @@ then:
|
||||
image: ${build.docker_image}
|
||||
|
||||
env:
|
||||
DEEPSPEECH_MODEL: "https://github.com/reuben/DeepSpeech/releases/download/v0.7.0-alpha.1/models_beam_width.tar.gz"
|
||||
DEEPSPEECH_MODEL: "https://github.com/reuben/DeepSpeech/releases/download/v0.8.0/models_0.8.tar.gz"
|
||||
DEEPSPEECH_AUDIO: "https://github.com/mozilla/DeepSpeech/releases/download/v0.4.1/audio-0.4.1.tar.gz"
|
||||
PIP_DEFAULT_TIMEOUT: "60"
|
||||
EXAMPLES_CLONE_URL: "https://github.com/mozilla/DeepSpeech-examples"
|
||||
EXAMPLES_CHECKOUT_TARGET: "master"
|
||||
EXAMPLES_CLONE_URL: "https://github.com/mozilla/STT-examples"
|
||||
EXAMPLES_CHECKOUT_TARGET: "r0.8"
|
||||
|
||||
command:
|
||||
- "/bin/bash"
|
||||
|
14
taskcluster/examples-electronjs.yml
Normal file
14
taskcluster/examples-electronjs.yml
Normal file
@ -0,0 +1,14 @@
|
||||
build:
|
||||
template_file: examples-base.tyml
|
||||
docker_image: "node:12"
|
||||
dependencies:
|
||||
- "linux-amd64-cpu-opt"
|
||||
system_setup:
|
||||
>
|
||||
apt-get -qq update && apt-get -qq -y install ${electronjs.packages_xenial.apt}
|
||||
args:
|
||||
tests_cmdline: "${system.homedir.linux}/DeepSpeech/examples/electron/test.sh"
|
||||
workerType: "${docker.dsTests}"
|
||||
metadata:
|
||||
name: "DeepSpeech examples: ElectronJS/React on NodeJS v12.x"
|
||||
description: "DeepSpeech examples: ElectronJS/React on NodeJS v12.x"
|
@ -8,6 +8,7 @@ build:
|
||||
apt-get -qq -y install ffmpeg
|
||||
args:
|
||||
tests_cmdline: "${system.homedir.linux}/DeepSpeech/examples/ffmpeg_vad_streaming/test.sh"
|
||||
workerType: "${docker.dsTests}"
|
||||
metadata:
|
||||
name: "DeepSpeech examples: ffmpeg VAD Streaming NodeJS v10.x"
|
||||
description: "DeepSpeech examples: ffmpeg VAD Streaming NodeJS v10.x"
|
||||
|
@ -8,6 +8,7 @@ build:
|
||||
apt-get -qq -y install ffmpeg
|
||||
args:
|
||||
tests_cmdline: "${system.homedir.linux}/DeepSpeech/examples/ffmpeg_vad_streaming/test.sh"
|
||||
workerType: "${docker.dsTests}"
|
||||
metadata:
|
||||
name: "DeepSpeech examples: ffmpeg VAD Streaming NodeJS v12.x"
|
||||
description: "DeepSpeech examples: ffmpeg VAD Streaming NodeJS v12.x"
|
||||
|
@ -8,6 +8,7 @@ build:
|
||||
apt-get -qq -y install portaudio19-dev pulseaudio
|
||||
args:
|
||||
tests_cmdline: "${system.homedir.linux}/DeepSpeech/examples/mic_vad_streaming/test.sh 3.6.0:m"
|
||||
workerType: "${docker.dsTests}"
|
||||
metadata:
|
||||
name: "DeepSpeech examples: mic VAD streaming Py3.6"
|
||||
description: "DeepSpeech examples: mic VAD streaming Python 3.6"
|
||||
|
@ -8,6 +8,7 @@ build:
|
||||
apt-get -qq -y install portaudio19-dev pulseaudio
|
||||
args:
|
||||
tests_cmdline: "${system.homedir.linux}/DeepSpeech/examples/mic_vad_streaming/test.sh 3.7.0:m"
|
||||
workerType: "${docker.dsTests}"
|
||||
metadata:
|
||||
name: "DeepSpeech examples: mic VAD streaming Py3.7"
|
||||
description: "DeepSpeech examples: mic VAD streaming Python 3.7"
|
||||
|
@ -5,6 +5,7 @@ build:
|
||||
- "linux-amd64-cpu-opt"
|
||||
args:
|
||||
tests_cmdline: "${system.homedir.linux}/DeepSpeech/examples/nodejs_wav/test.sh"
|
||||
workerType: "${docker.dsTests}"
|
||||
metadata:
|
||||
name: "DeepSpeech examples: NodeJS WAV NodeJS v10.x"
|
||||
description: "DeepSpeech examples: NodeJS WAV NodeJS v10.x"
|
||||
|
@ -5,6 +5,7 @@ build:
|
||||
- "linux-amd64-cpu-opt"
|
||||
args:
|
||||
tests_cmdline: "${system.homedir.linux}/DeepSpeech/examples/nodejs_wav/test.sh"
|
||||
workerType: "${docker.dsTests}"
|
||||
metadata:
|
||||
name: "DeepSpeech examples: NodeJS WAV NodeJS v12.x"
|
||||
description: "DeepSpeech examples: NodeJS WAV NodeJS v12.x"
|
||||
|
@ -5,6 +5,7 @@ build:
|
||||
- "linux-amd64-cpu-opt"
|
||||
args:
|
||||
tests_cmdline: "${system.homedir.linux}/DeepSpeech/examples/vad_transcriber/test.sh 3.5.0:m"
|
||||
workerType: "${docker.dsTests}"
|
||||
metadata:
|
||||
name: "DeepSpeech examples: VAD transcriber Py3.5"
|
||||
description: "DeepSpeech examples: VAD transcriberaming Python 3.5"
|
||||
|
@ -5,6 +5,7 @@ build:
|
||||
- "linux-amd64-cpu-opt"
|
||||
args:
|
||||
tests_cmdline: "${system.homedir.linux}/DeepSpeech/examples/vad_transcriber/test.sh 3.6.0:m"
|
||||
workerType: "${docker.dsTests}"
|
||||
metadata:
|
||||
name: "DeepSpeech examples: VAD transcriber Py3.6"
|
||||
description: "DeepSpeech examples: VAD transcriberaming Python 3.6"
|
||||
|
@ -5,6 +5,7 @@ build:
|
||||
- "linux-amd64-cpu-opt"
|
||||
args:
|
||||
tests_cmdline: "${system.homedir.linux}/DeepSpeech/examples/vad_transcriber/test.sh 3.7.0:m"
|
||||
workerType: "${docker.dsTests}"
|
||||
metadata:
|
||||
name: "DeepSpeech examples: VAD transcriber Py3.7"
|
||||
description: "DeepSpeech examples: VAD transcriberaming Python 3.7"
|
||||
|
@ -5,6 +5,7 @@ build:
|
||||
- "linux-amd64-cpu-opt"
|
||||
args:
|
||||
tests_cmdline: "${system.homedir.linux}/DeepSpeech/examples/vad_transcriber/test.sh 3.8.0:"
|
||||
workerType: "${docker.dsTests}"
|
||||
metadata:
|
||||
name: "DeepSpeech examples: VAD transcriber Py3.8"
|
||||
description: "DeepSpeech examples: VAD transcriberaming Python 3.8"
|
||||
|
@ -1,6 +1,6 @@
|
||||
taskId: ${taskcluster.taskId}
|
||||
provisionerId: ${taskcluster.generic.provisionerId}
|
||||
workerType: ${build.generic.workerType}
|
||||
workerType: ${build.workerType}
|
||||
taskGroupId: ${taskcluster.taskGroupId}
|
||||
schedulerId: ${taskcluster.schedulerId}
|
||||
dependencies:
|
||||
|
@ -1,6 +1,6 @@
|
||||
taskId: ${taskcluster.taskId}
|
||||
provisionerId: ${taskcluster.docker.provisionerId}
|
||||
workerType: ${taskcluster.docker.workerType}
|
||||
workerType: ${build.workerType}
|
||||
taskGroupId: ${taskcluster.taskGroupId}
|
||||
schedulerId: ${taskcluster.schedulerId}
|
||||
created: { $fromNow: '0 sec' }
|
||||
|
@ -24,6 +24,7 @@ payload:
|
||||
env:
|
||||
TC_MSYS_VERSION: 'MSYS_NT-6.3-9600'
|
||||
MSYS: 'winsymlinks:nativestrict'
|
||||
GIT_LFS_SKIP_SMUDGE: '1'
|
||||
|
||||
command:
|
||||
- >-
|
||||
|
@ -12,4 +12,4 @@ taskcluster:
|
||||
- push
|
||||
- tag
|
||||
branches:
|
||||
- master
|
||||
- r0.8
|
||||
|
@ -10,6 +10,7 @@ build:
|
||||
setup: "taskcluster/tc-true.sh"
|
||||
build: "taskcluster/gradle-build.sh"
|
||||
package: "taskcluster/gradle-package.sh"
|
||||
workerType: "${docker.smallTask}"
|
||||
metadata:
|
||||
name: "Builds Gradle cache"
|
||||
description: "Setup a Gradle cache for Android"
|
||||
|
@ -3,6 +3,7 @@ build:
|
||||
cache:
|
||||
artifact_url: ${system.homebrew_builds.url}
|
||||
artifact_namespace: ${system.homebrew_builds.namespace}
|
||||
workerType: ${macOS.dsBuild}
|
||||
scripts:
|
||||
setup: "taskcluster/tc-true.sh"
|
||||
build: "taskcluster/homebrew-build.sh --builds"
|
||||
|
@ -3,6 +3,7 @@ build:
|
||||
cache:
|
||||
artifact_url: ${system.homebrew_tests.url}
|
||||
artifact_namespace: ${system.homebrew_tests.namespace}
|
||||
workerType: ${macOS.dsBuild}
|
||||
scripts:
|
||||
setup: "taskcluster/tc-true.sh"
|
||||
build: "taskcluster/homebrew-build.sh --tests"
|
||||
|
@ -19,6 +19,7 @@ build:
|
||||
build: "taskcluster/host-build.sh"
|
||||
package: "taskcluster/package.sh"
|
||||
nc_asset_name: "native_client.amd64.cpu.linux.tar.xz"
|
||||
workerType: "${docker.dsBuild}"
|
||||
metadata:
|
||||
name: "DeepSpeech Linux AMD64 CPU"
|
||||
description: "Building DeepSpeech for Linux/AMD64, CPU only, optimized version"
|
||||
|
@ -18,6 +18,7 @@ build:
|
||||
setup: "taskcluster/tc-true.sh"
|
||||
build: 'taskcluster/decoder-build.sh'
|
||||
package: 'taskcluster/decoder-package.sh'
|
||||
workerType: "${docker.dsBuild}"
|
||||
metadata:
|
||||
name: "DeepSpeech CTC Decoder Linux AMD64 CPU"
|
||||
description: "Building DeepSpeech CTC Decoder for Linux/AMD64, CPU only, optimized version"
|
||||
|
@ -20,6 +20,7 @@ build:
|
||||
build: "taskcluster/cuda-build.sh"
|
||||
package: "taskcluster/package.sh"
|
||||
nc_asset_name: "native_client.amd64.cuda.linux.tar.xz"
|
||||
workerType: "${docker.dsBuild}"
|
||||
metadata:
|
||||
name: "DeepSpeech Linux AMD64 CUDA"
|
||||
description: "Building DeepSpeech for Linux/AMD64, CUDA-enabled, optimized version"
|
||||
|
@ -19,6 +19,7 @@ build:
|
||||
build: "taskcluster/host-build.sh tflite"
|
||||
package: "taskcluster/package.sh"
|
||||
nc_asset_name: "native_client.amd64.tflite.linux.tar.xz"
|
||||
workerType: "${docker.dsBuild}"
|
||||
metadata:
|
||||
name: "DeepSpeech Linux AMD64 TFLite"
|
||||
description: "Building DeepSpeech for Linux/AMD64, TFLite, optimized version"
|
||||
|
@ -26,6 +26,7 @@ build:
|
||||
build: "taskcluster/arm64-build.sh"
|
||||
package: "taskcluster/package.sh"
|
||||
nc_asset_name: "native_client.arm64.cpu.linux.tar.xz"
|
||||
workerType: "${docker.dsBuild}"
|
||||
metadata:
|
||||
name: "DeepSpeech Linux ARM64 Cortex-A53 CPU"
|
||||
description: "Building DeepSpeech for Linux ARM64 Cortex-A53, CPU only, optimized version"
|
||||
|
@ -2,7 +2,7 @@ $if: 'event.event in build.allowed'
|
||||
then:
|
||||
taskId: ${taskcluster.taskId}
|
||||
provisionerId: ${taskcluster.docker.provisionerId}
|
||||
workerType: ${taskcluster.docker.workerType}
|
||||
workerType: ${build.workerType}
|
||||
taskGroupId: ${taskcluster.taskGroupId}
|
||||
schedulerId: ${taskcluster.schedulerId}
|
||||
dependencies:
|
||||
|
@ -25,6 +25,7 @@ build:
|
||||
setup: "taskcluster/tc-true.sh"
|
||||
build: "taskcluster/rpi3-build.sh"
|
||||
package: "taskcluster/package.sh"
|
||||
workerType: "${docker.dsBuild}"
|
||||
nc_asset_name: "native_client.rpi3.cpu.linux.tar.xz"
|
||||
metadata:
|
||||
name: "DeepSpeech Linux RPi3/ARMv7 CPU"
|
||||
|
@ -11,6 +11,7 @@ build:
|
||||
setup: "taskcluster/tc-true.sh"
|
||||
build: "taskcluster/node-gyp-populate.sh"
|
||||
package: "taskcluster/node-gyp-package.sh"
|
||||
workerType: "${docker.smallTask}"
|
||||
metadata:
|
||||
name: "Cache for node-gyp headers"
|
||||
description: "Building cache for node-gyp headers"
|
||||
|
@ -13,6 +13,7 @@ build:
|
||||
scripts:
|
||||
build: "taskcluster/node-build.sh"
|
||||
package: "taskcluster/node-package.sh"
|
||||
workerType: "${docker.smallTask}"
|
||||
metadata:
|
||||
name: "DeepSpeech NodeJS CPU package"
|
||||
description: "Packaging DeepSpeech CPU for registry"
|
||||
|
@ -10,6 +10,7 @@ build:
|
||||
scripts:
|
||||
build: "taskcluster/node-build.sh --cuda"
|
||||
package: "taskcluster/node-package.sh"
|
||||
workerType: "${docker.smallTask}"
|
||||
metadata:
|
||||
name: "DeepSpeech NodeJS GPU package"
|
||||
description: "Packaging DeepSpeech GPU for registry"
|
||||
|
@ -2,7 +2,7 @@ $if: 'event.event in build.allowed'
|
||||
then:
|
||||
taskId: ${taskcluster.taskId}
|
||||
provisionerId: ${taskcluster.docker.provisionerId}
|
||||
workerType: ${taskcluster.docker.workerType}
|
||||
workerType: ${build.workerType}
|
||||
taskGroupId: ${taskcluster.taskGroupId}
|
||||
schedulerId: ${taskcluster.schedulerId}
|
||||
dependencies:
|
||||
|
@ -11,6 +11,7 @@ build:
|
||||
scripts:
|
||||
build: "taskcluster/node-build.sh --tflite"
|
||||
package: "taskcluster/node-package.sh"
|
||||
workerType: "${docker.smallTask}"
|
||||
metadata:
|
||||
name: "DeepSpeech NodeJS TFLite package"
|
||||
description: "Packaging DeepSpeech TFLite for registry"
|
||||
|
@ -3,6 +3,7 @@ build:
|
||||
cache:
|
||||
artifact_url: ${system.pyenv.osx.url}
|
||||
artifact_namespace: ${system.pyenv.osx.namespace}
|
||||
workerType: ${macOS.dsBuild}
|
||||
scripts:
|
||||
setup: "taskcluster/tc-true.sh"
|
||||
build: "taskcluster/pyenv-build.sh"
|
||||
|
@ -10,6 +10,7 @@ build:
|
||||
setup: "taskcluster/tc-true.sh"
|
||||
build: "taskcluster/pyenv-build.sh"
|
||||
package: "taskcluster/pyenv-package.sh"
|
||||
workerType: "${docker.dsBuild}"
|
||||
metadata:
|
||||
name: "Builds Pyenv Linux AMD64"
|
||||
description: "Setup a builds Pyenv for Linux/AMD64"
|
||||
|
@ -7,6 +7,7 @@ build:
|
||||
cache:
|
||||
artifact_url: "${system.swig_build.osx.url}"
|
||||
artifact_namespace: "${system.swig_build.osx.namespace}"
|
||||
workerType: ${macOS.dsBuild}
|
||||
scripts:
|
||||
setup: "taskcluster/tc-true.sh"
|
||||
build: "taskcluster/build.sh"
|
||||
|
@ -15,6 +15,7 @@ build:
|
||||
setup: "taskcluster/tc-true.sh"
|
||||
build: "taskcluster/build.sh"
|
||||
package: "taskcluster/package.sh"
|
||||
workerType: "${docker.dsBuild}"
|
||||
metadata:
|
||||
name: "SWIG Linux AMD64"
|
||||
description: "Building SWIG for Linux/AMD64"
|
||||
|
@ -16,6 +16,7 @@ build:
|
||||
setup: "taskcluster/tc-true.sh"
|
||||
build: "taskcluster/build.sh x86_64-w64-mingw32"
|
||||
package: "taskcluster/package.sh"
|
||||
workerType: "${docker.dsBuild}"
|
||||
metadata:
|
||||
name: "SWIG Windows AMD64"
|
||||
description: "Building SWIG for Windows/AMD64"
|
||||
|
@ -89,4 +89,4 @@ SUPPORTED_PYTHON_VERSIONS=${SUPPORTED_PYTHON_VERSIONS:-3.5.8:ucs2 3.6.10:ucs2 3.
|
||||
SUPPORTED_NODEJS_BUILD_VERSIONS=${SUPPORTED_NODEJS_BUILD_VERSIONS:-10.0.0 11.0.0 12.7.0 13.0.0 14.0.0}
|
||||
SUPPORTED_NODEJS_TESTS_VERSIONS=${SUPPORTED_NODEJS_TESTS_VERSIONS:-10.20.1 11.15.0 12.17.0 13.14.0 14.3.0}
|
||||
|
||||
SUPPORTED_ELECTRONJS_VERSIONS=${SUPPORTED_ELECTRONJS_VERSIONS:-5.0.13 6.0.12 6.1.7 7.0.1 7.1.8 8.0.1 9.0.1 9.1.0}
|
||||
SUPPORTED_ELECTRONJS_VERSIONS=${SUPPORTED_ELECTRONJS_VERSIONS:-5.0.13 6.0.12 6.1.7 7.0.1 7.1.8 8.0.1 9.0.1 9.1.0 9.2.0}
|
||||
|
@ -272,9 +272,9 @@ do_deepspeech_netframework_build()
|
||||
/p:Platform=x64
|
||||
}
|
||||
|
||||
do_deepspeech_netframework_wpf_example_build()
|
||||
do_deepspeech_netframework_wpf_build()
|
||||
{
|
||||
cd ${DS_EXAMPLEDIR}/net_framework
|
||||
cd ${DS_DSDIR}/native_client/dotnet
|
||||
|
||||
# Setup dependencies
|
||||
nuget install DeepSpeechWPF/packages.config -OutputDirectory DeepSpeechWPF/packages/
|
||||
|
@ -2,7 +2,7 @@ $if: '(event.event != "push") && (event.event != "tag")'
|
||||
then:
|
||||
taskId: ${taskcluster.taskId}
|
||||
provisionerId: ${taskcluster.docker.provisionerId}
|
||||
workerType: ${taskcluster.docker.workerType}
|
||||
workerType: ${build.workerType}
|
||||
taskGroupId: ${taskcluster.taskGroupId}
|
||||
schedulerId: ${taskcluster.schedulerId}
|
||||
dependencies:
|
||||
|
@ -18,6 +18,7 @@ build:
|
||||
namespace: ${system.gradle_cache.namespace}
|
||||
args:
|
||||
tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-android-apk-tests.sh x86_64 android-24 16k"
|
||||
workerType: "${docker.dsHighMemTests}"
|
||||
metadata:
|
||||
name: "DeepSpeech Android 7.0 x86_64 Google Pixel APK/Java tests"
|
||||
description: "Testing DeepSpeech APK/Java for Android 7.0 x86_64 Google Pixel, optimized version"
|
||||
|
@ -18,6 +18,7 @@ build:
|
||||
namespace: ${system.gradle_cache.namespace}
|
||||
args:
|
||||
tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-android-apk-tests.sh x86_64 android-25 16k"
|
||||
workerType: "${docker.dsHighMemTests}"
|
||||
metadata:
|
||||
name: "DeepSpeech Android 7.1 x86_64 Google Pixel APK/Java tests"
|
||||
description: "Testing DeepSpeech APK/Java for Android 7.1 x86_64 Google Pixel, optimized version"
|
||||
|
@ -18,6 +18,7 @@ build:
|
||||
namespace: ${system.gradle_cache.namespace}
|
||||
args:
|
||||
tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-android-apk-tests.sh x86_64 android-26"
|
||||
workerType: "${docker.dsHighMemTests}"
|
||||
metadata:
|
||||
name: "DeepSpeech Android 8.0 x86_64 Google Pixel APK/Java tests"
|
||||
description: "Testing DeepSpeech APK/Java for Android 8.0 x86_64 Google Pixel, optimized version"
|
||||
|
@ -18,6 +18,7 @@ build:
|
||||
namespace: ${system.gradle_cache.namespace}
|
||||
args:
|
||||
tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-android-apk-tests.sh x86_64 android-28"
|
||||
workerType: "${docker.dsHighMemTests}"
|
||||
metadata:
|
||||
name: "DeepSpeech Android 9.0 x86_64 Google Pixel APK/Java tests"
|
||||
description: "Testing DeepSpeech APK/Java for Android 9.0 x86_64 Google Pixel, optimized version"
|
||||
|
@ -18,6 +18,7 @@ build:
|
||||
namespace: ${system.gradle_cache.namespace}
|
||||
args:
|
||||
tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-android-apk-tests.sh x86_64 android-29"
|
||||
workerType: "${docker.dsHighMemTests}"
|
||||
metadata:
|
||||
name: "DeepSpeech Android 10.0 x86_64 Google Pixel APK/Java tests"
|
||||
description: "Testing DeepSpeech APK/Java for Android 10.0 x86_64 Google Pixel, optimized version"
|
||||
|
@ -18,6 +18,7 @@ build:
|
||||
namespace: ${system.gradle_cache.namespace}
|
||||
args:
|
||||
tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-android-apk-tests.sh x86_64 android-30"
|
||||
workerType: "${docker.dsHighMemTests}"
|
||||
metadata:
|
||||
name: "DeepSpeech Android 11.0 x86_64 Google Pixel APK/Java tests"
|
||||
description: "Testing DeepSpeech APK/Java for Android 11.0 x86_64 Google Pixel, optimized version"
|
||||
|
@ -7,6 +7,7 @@ build:
|
||||
apt-get -qq update && apt-get -qq -y install ${training.packages_xenial.apt}
|
||||
args:
|
||||
tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-augmentation-tests.sh 3.6.10:m"
|
||||
workerType: "${docker.dsTests}"
|
||||
metadata:
|
||||
name: "DeepSpeech Linux AMD64 CPU signal augmentations Py3.6"
|
||||
description: "Augmenting LDC93S1 sample in different ways for Linux/AMD64 16kHz Python 3.6, CPU only, optimized version"
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user