-
Notifications
You must be signed in to change notification settings - Fork 277
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
56 changed files
with
542 additions
and
162 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,6 +72,30 @@ jobs: | |
docker push "${DOCKERHUB_REPO}:${CIRCLE_TAG}" | ||
fi | ||
lint: | ||
docker: | ||
- image: circleci/python:3.7.9 | ||
steps: | ||
- checkout | ||
- run: | ||
name: Install dependencies | ||
command: | | ||
pip install --upgrade cardboardlint pylint | ||
- run: | ||
name: Run linter | ||
command: | | ||
set -ex | ||
# Check if branch can be merged with master (if failing script will stop due to set -e) | ||
git config user.email "[email protected]" | ||
git config user.name "Your Name" | ||
git merge --no-commit --no-ff origin/master | ||
# Undo merge changes if any | ||
git reset --hard $CIRCLE_BRANCH | ||
# Lint differences against master | ||
cardboardlinter --refspec origin/master -n auto; | ||
workflows: | ||
version: 2 | ||
build-deploy: | ||
|
@@ -87,3 +111,7 @@ workflows: | |
filters: | ||
tags: | ||
only: /.*/ | ||
|
||
lint: | ||
jobs: | ||
- lint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
DeepSpeech code owners | ||
====================== | ||
|
||
This file describes reviewers who are active on the project and which parts of the code they have expertise on (and interest in). If you're making changes to the code and are wondering who's an appropriate person to talk to, this list will tell you who to ping. | ||
|
||
There's overlap in the areas of expertise of each reviewer, and in particular when looking at which files are covered by each area, there is a lot of overlap. Don't worry about getting it exactly right when requesting review, any code owner will be happy to redirect the request to a more appropriate question. | ||
|
||
Global reviewers | ||
---------------- | ||
|
||
These are people who have worked on the project extensively and are familiar with all or most parts of it. Their expertise and review guidance is trusted by other code owners to cover their own areas of expertise. In case of conflicting opinions from other reviewers, global reviewers will make a final decision. | ||
|
||
- Alexandre Lissy (@lissyx) | ||
- Reuben Morais (@reuben) | ||
|
||
Training, feeding | ||
----------------- | ||
|
||
- Reuben Morais (@reuben) | ||
|
||
Model exporting | ||
--------------- | ||
|
||
- Alexandre Lissy (@lissyx) | ||
|
||
Transfer learning | ||
----------------- | ||
|
||
- Josh Meyer (@JRMeyer) | ||
- Reuben Morais (@reuben) | ||
|
||
Testing & CI | ||
------------ | ||
|
||
- Alexandre Lissy (@lissyx) | ||
- Reuben Morais (@reuben) | ||
|
||
Native inference client | ||
----------------------- | ||
|
||
Everything that goes into libdeepspeech.so and is not specifically covered in another area fits here. | ||
|
||
- Alexandre Lissy (@lissyx) | ||
- Reuben Morais (@reuben) | ||
|
||
Streaming decoder | ||
----------------- | ||
|
||
- Reuben Morais (@reuben) | ||
- @dabinat | ||
|
||
Python bindings | ||
--------------- | ||
|
||
- Alexandre Lissy (@lissyx) | ||
- Reuben Morais (@reuben) | ||
|
||
Java Bindings | ||
------------- | ||
|
||
- Alexandre Lissy (@lissyx) | ||
|
||
JavaScript/NodeJS/ElectronJS bindings | ||
------------------------------------- | ||
|
||
- Alexandre Lissy (@lissyx) | ||
- Reuben Morais (@reuben) | ||
|
||
.NET bindings | ||
------------- | ||
|
||
- Carlos Fonseca (@carlfm01) | ||
|
||
Swift bindings | ||
-------------- | ||
|
||
- Reuben Morais (@reuben) | ||
|
||
Android support | ||
--------------- | ||
|
||
- Alexandre Lissy (@lissyx) | ||
|
||
Raspberry Pi support | ||
-------------------- | ||
|
||
- Alexandre Lissy (@lissyx) | ||
|
||
Windows support | ||
--------------- | ||
|
||
- Carlos Fonseca (@carlfm01) | ||
|
||
iOS support | ||
----------- | ||
|
||
- Reuben Morais (@reuben) | ||
|
||
Documentation | ||
------------- | ||
|
||
- Alexandre Lissy (@lissyx) | ||
- Reuben Morais (@reuben) | ||
|
||
Third party bindings | ||
-------------------- | ||
|
||
Hosted externally and owned by the individual authors. See the `list of third-party bindings <https://deepspeech.readthedocs.io/en/master/USING.html#third-party-bindings>`_ for more info. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule examples
updated
72 files
Oops, something went wrong.