Skip to content

Commit f822b04

Browse files
committed
Branding cleanup
Remove Mozilla trademarks.
1 parent ad7d61f commit f822b04

File tree

10 files changed

+15
-15
lines changed

10 files changed

+15
-15
lines changed

BIBLIOGRAPHY.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
This file contains a list of papers in chronological order that have been published
2-
using Mozilla's DeepSpeech.
2+
using DeepSpeech.
33

44
To appear
55
==========

doc/TRAINING.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ N.B. - If you have access to a pre-trained model which uses UTF-8 bytes at the o
245245
Fine-Tuning (same alphabet)
246246
^^^^^^^^^^^^^^^^^^^^^^^^^^^
247247

248-
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.
248+
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.
249249

250250
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:
251251

doc/conf.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@
4646
# -- Project information -----------------------------------------------------
4747

4848
project = u'DeepSpeech'
49-
copyright = '2019-2020, Mozilla Corporation'
50-
author = 'Mozilla Corporation'
49+
copyright = '2019-2020 Mozilla Corporation, 2020 DeepSpeech authors'
50+
author = 'DeepSpeech authors'
5151

5252
with open('../VERSION', 'r') as ver:
5353
v = ver.read().strip()
@@ -175,7 +175,7 @@
175175
# author, documentclass [howto, manual, or own class]).
176176
latex_documents = [
177177
(master_doc, 'DeepSpeech.tex', u'DeepSpeech Documentation',
178-
u'Mozilla Research', 'manual'),
178+
u'DeepSpeech authors', 'manual'),
179179
]
180180

181181

native_client/dotnet/DeepSpeechClient/Interfaces/IDeepSpeech.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
namespace DeepSpeechClient.Interfaces
66
{
77
/// <summary>
8-
/// Client interface of Mozilla's DeepSpeech implementation.
8+
/// Client interface for DeepSpeech
99
/// </summary>
1010
public interface IDeepSpeech : IDisposable
1111
{

native_client/dotnet/README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ There should already be a symbolic link, for this example let's suppose that we
6161
├── D:\
6262
│ ├── cloned # Contains DeepSpeech and tensorflow side by side
6363
│ │ └── DeepSpeech # Root of the cloned DeepSpeech
64-
│ │ ├── tensorflow # Root of the cloned Mozilla's tensorflow
64+
│ │ ├── tensorflow # Root of the cloned mozilla/tensorflow
6565
└── ...
6666
6767

native_client/dotnet/nupkg/deepspeech.nuspec.in

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
<id>$NUPKG_ID</id>
55
<version>$NUPKG_VERSION</version>
66
<title>DeepSpeech</title>
7-
<authors>Mozilla</authors>
8-
<owners>Mozilla</owners>
7+
<authors>DeepSpeech authors</authors>
8+
<owners>DeepSpeech authors</owners>
99
<license type="expression">MPL-2.0</license>
1010
<projectUrl>http://github.com/mozilla/DeepSpeech</projectUrl>
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1212
<description>A library for running inference with a DeepSpeech model</description>
13-
<copyright>Copyright (c) 2019 Mozilla Corporation</copyright>
13+
<copyright>Copyright (c) 2019-2020 Mozilla Corporation, 2020 DeepSpeech authors</copyright>
1414
<tags>native speech speech_recognition</tags>
1515
</metadata>
1616
<files>

native_client/java/libdeepspeech/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ uploadArchives {
9696
developers {
9797
developer {
9898
id 'deepspeech'
99-
name 'Mozilla DeepSpeech Team'
99+
name 'DeepSpeech authors'
100100
101101
}
102102
}

native_client/javascript/package.json.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"bin": {
88
"deepspeech": "./client.js"
99
},
10-
"author" : "Mozilla",
10+
"author" : "DeepSpeech authors",
1111
"license": "MPL-2.0",
1212
"homepage": "https://github.com/mozilla/DeepSpeech/tree/v$(PROJECT_VERSION)#project-deepspeech",
1313
"files": [

native_client/swift/deepspeech-ios.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Pod::Spec.new do |s|
77
s.summary = "DeepSpeech"
88
s.homepage = "https://github.com/mozilla/DeepSpeech"
99
s.license = "Mozilla Public License 2.0"
10-
s.authors = "Mozilla et al."
10+
s.authors = "DeepSpeech authors"
1111

1212
s.platforms = { :ios => "9.0" }
1313
s.source = { :git => "https://github.com/mozilla/DeepSpeech.git", :tag => "v#{s.version}" }

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,9 @@ def main():
9898
setup(
9999
name='deepspeech_training',
100100
version=version,
101-
description='Training code for mozilla DeepSpeech',
101+
description='Training code for DeepSpeech',
102102
url='https://github.com/mozilla/DeepSpeech',
103-
author='Mozilla',
103+
author='DeepSpeech authors',
104104
license='MPL-2.0',
105105
# Classifiers help users find your project by categorizing it.
106106
#

0 commit comments

Comments
 (0)