Branding cleanup

Remove Mozilla trademarks.
This commit is contained in:
Reuben Morais 2020-12-07 10:02:31 +02:00
parent ad7d61f837
commit f822b04e1b
10 changed files with 15 additions and 15 deletions

View File

@ -1,5 +1,5 @@
This file contains a list of papers in chronological order that have been published This file contains a list of papers in chronological order that have been published
using Mozilla's DeepSpeech. using DeepSpeech.
To appear To appear
========== ==========

View File

@ -245,7 +245,7 @@ N.B. - If you have access to a pre-trained model which uses UTF-8 bytes at the o
Fine-Tuning (same alphabet) Fine-Tuning (same alphabet)
^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
If you'd like to use one of the pre-trained models released by Mozilla to bootstrap your training process (fine tuning), you can do so by using the ``--checkpoint_dir`` flag in ``DeepSpeech.py``. Specify the path where you downloaded the checkpoint from the release, and training will resume from the pre-trained model. If you'd like to use one of the pre-trained models to bootstrap your training process (fine tuning), you can do so by using the ``--checkpoint_dir`` flag in ``DeepSpeech.py``. Specify the path where you downloaded the checkpoint from the release, and training will resume from the pre-trained model.
For example, if you want to fine tune the entire graph using your own data in ``my-train.csv``\ , ``my-dev.csv`` and ``my-test.csv``\ , for three epochs, you can something like the following, tuning the hyperparameters as needed: For example, if you want to fine tune the entire graph using your own data in ``my-train.csv``\ , ``my-dev.csv`` and ``my-test.csv``\ , for three epochs, you can something like the following, tuning the hyperparameters as needed:

View File

@ -46,8 +46,8 @@ import semver
# -- Project information ----------------------------------------------------- # -- Project information -----------------------------------------------------
project = u'DeepSpeech' project = u'DeepSpeech'
copyright = '2019-2020, Mozilla Corporation' copyright = '2019-2020 Mozilla Corporation, 2020 DeepSpeech authors'
author = 'Mozilla Corporation' author = 'DeepSpeech authors'
with open('../VERSION', 'r') as ver: with open('../VERSION', 'r') as ver:
v = ver.read().strip() v = ver.read().strip()
@ -175,7 +175,7 @@ latex_elements = {
# author, documentclass [howto, manual, or own class]). # author, documentclass [howto, manual, or own class]).
latex_documents = [ latex_documents = [
(master_doc, 'DeepSpeech.tex', u'DeepSpeech Documentation', (master_doc, 'DeepSpeech.tex', u'DeepSpeech Documentation',
u'Mozilla Research', 'manual'), u'DeepSpeech authors', 'manual'),
] ]

View File

@ -5,7 +5,7 @@ using System.IO;
namespace DeepSpeechClient.Interfaces namespace DeepSpeechClient.Interfaces
{ {
/// <summary> /// <summary>
/// Client interface of Mozilla's DeepSpeech implementation. /// Client interface for DeepSpeech
/// </summary> /// </summary>
public interface IDeepSpeech : IDisposable public interface IDeepSpeech : IDisposable
{ {

View File

@ -61,7 +61,7 @@ There should already be a symbolic link, for this example let's suppose that we
├── D:\ ├── D:\
│ ├── cloned # Contains DeepSpeech and tensorflow side by side │ ├── cloned # Contains DeepSpeech and tensorflow side by side
│ │ └── DeepSpeech # Root of the cloned DeepSpeech │ │ └── DeepSpeech # Root of the cloned DeepSpeech
│ │ ├── tensorflow # Root of the cloned Mozilla's tensorflow │ │ ├── tensorflow # Root of the cloned mozilla/tensorflow
└── ... └── ...

View File

@ -4,13 +4,13 @@
<id>$NUPKG_ID</id> <id>$NUPKG_ID</id>
<version>$NUPKG_VERSION</version> <version>$NUPKG_VERSION</version>
<title>DeepSpeech</title> <title>DeepSpeech</title>
<authors>Mozilla</authors> <authors>DeepSpeech authors</authors>
<owners>Mozilla</owners> <owners>DeepSpeech authors</owners>
<license type="expression">MPL-2.0</license> <license type="expression">MPL-2.0</license>
<projectUrl>http://github.com/mozilla/DeepSpeech</projectUrl> <projectUrl>http://github.com/mozilla/DeepSpeech</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance> <requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A library for running inference with a DeepSpeech model</description> <description>A library for running inference with a DeepSpeech model</description>
<copyright>Copyright (c) 2019 Mozilla Corporation</copyright> <copyright>Copyright (c) 2019-2020 Mozilla Corporation, 2020 DeepSpeech authors</copyright>
<tags>native speech speech_recognition</tags> <tags>native speech speech_recognition</tags>
</metadata> </metadata>
<files> <files>

View File

@ -96,7 +96,7 @@ uploadArchives {
developers { developers {
developer { developer {
id 'deepspeech' id 'deepspeech'
name 'Mozilla DeepSpeech Team' name 'DeepSpeech authors'
email 'deepspeechs@lists.mozilla.org' email 'deepspeechs@lists.mozilla.org'
} }
} }

View File

@ -7,7 +7,7 @@
"bin": { "bin": {
"deepspeech": "./client.js" "deepspeech": "./client.js"
}, },
"author" : "Mozilla", "author" : "DeepSpeech authors",
"license": "MPL-2.0", "license": "MPL-2.0",
"homepage": "https://github.com/mozilla/DeepSpeech/tree/v$(PROJECT_VERSION)#project-deepspeech", "homepage": "https://github.com/mozilla/DeepSpeech/tree/v$(PROJECT_VERSION)#project-deepspeech",
"files": [ "files": [

View File

@ -7,7 +7,7 @@ Pod::Spec.new do |s|
s.summary = "DeepSpeech" s.summary = "DeepSpeech"
s.homepage = "https://github.com/mozilla/DeepSpeech" s.homepage = "https://github.com/mozilla/DeepSpeech"
s.license = "Mozilla Public License 2.0" s.license = "Mozilla Public License 2.0"
s.authors = "Mozilla et al." s.authors = "DeepSpeech authors"
s.platforms = { :ios => "9.0" } s.platforms = { :ios => "9.0" }
s.source = { :git => "https://github.com/mozilla/DeepSpeech.git", :tag => "v#{s.version}" } s.source = { :git => "https://github.com/mozilla/DeepSpeech.git", :tag => "v#{s.version}" }

View File

@ -98,9 +98,9 @@ def main():
setup( setup(
name='deepspeech_training', name='deepspeech_training',
version=version, version=version,
description='Training code for mozilla DeepSpeech', description='Training code for DeepSpeech',
url='https://github.com/mozilla/DeepSpeech', url='https://github.com/mozilla/DeepSpeech',
author='Mozilla', author='DeepSpeech authors',
license='MPL-2.0', license='MPL-2.0',
# Classifiers help users find your project by categorizing it. # Classifiers help users find your project by categorizing it.
# #