diff --git a/BIBLIOGRAPHY.md b/BIBLIOGRAPHY.md
index 19b14d27..1d392a66 100644
--- a/BIBLIOGRAPHY.md
+++ b/BIBLIOGRAPHY.md
@@ -1,5 +1,5 @@
This file contains a list of papers in chronological order that have been published
-using Mozilla's DeepSpeech.
+using DeepSpeech.
To appear
==========
diff --git a/doc/TRAINING.rst b/doc/TRAINING.rst
index 7eed6b35..29671d0c 100644
--- a/doc/TRAINING.rst
+++ b/doc/TRAINING.rst
@@ -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)
^^^^^^^^^^^^^^^^^^^^^^^^^^^
-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:
diff --git a/doc/conf.py b/doc/conf.py
index a74fff70..401ba08b 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -46,8 +46,8 @@ import semver
# -- Project information -----------------------------------------------------
project = u'DeepSpeech'
-copyright = '2019-2020, Mozilla Corporation'
-author = 'Mozilla Corporation'
+copyright = '2019-2020 Mozilla Corporation, 2020 DeepSpeech authors'
+author = 'DeepSpeech authors'
with open('../VERSION', 'r') as ver:
v = ver.read().strip()
@@ -175,7 +175,7 @@ latex_elements = {
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'DeepSpeech.tex', u'DeepSpeech Documentation',
- u'Mozilla Research', 'manual'),
+ u'DeepSpeech authors', 'manual'),
]
diff --git a/native_client/dotnet/DeepSpeechClient/Interfaces/IDeepSpeech.cs b/native_client/dotnet/DeepSpeechClient/Interfaces/IDeepSpeech.cs
index 344b758e..fca21a57 100644
--- a/native_client/dotnet/DeepSpeechClient/Interfaces/IDeepSpeech.cs
+++ b/native_client/dotnet/DeepSpeechClient/Interfaces/IDeepSpeech.cs
@@ -5,7 +5,7 @@ using System.IO;
namespace DeepSpeechClient.Interfaces
{
///
- /// Client interface of Mozilla's DeepSpeech implementation.
+ /// Client interface for DeepSpeech
///
public interface IDeepSpeech : IDisposable
{
diff --git a/native_client/dotnet/README.rst b/native_client/dotnet/README.rst
index b1025573..7c9010c2 100644
--- a/native_client/dotnet/README.rst
+++ b/native_client/dotnet/README.rst
@@ -61,7 +61,7 @@ There should already be a symbolic link, for this example let's suppose that we
├── D:\
│ ├── cloned # Contains DeepSpeech and tensorflow side by side
│ │ └── DeepSpeech # Root of the cloned DeepSpeech
- │ │ ├── tensorflow # Root of the cloned Mozilla's tensorflow
+ │ │ ├── tensorflow # Root of the cloned mozilla/tensorflow
└── ...
diff --git a/native_client/dotnet/nupkg/deepspeech.nuspec.in b/native_client/dotnet/nupkg/deepspeech.nuspec.in
index a4797177..68e192c8 100644
--- a/native_client/dotnet/nupkg/deepspeech.nuspec.in
+++ b/native_client/dotnet/nupkg/deepspeech.nuspec.in
@@ -4,13 +4,13 @@
$NUPKG_ID
$NUPKG_VERSION
DeepSpeech
- Mozilla
- Mozilla
+ DeepSpeech authors
+ DeepSpeech authors
MPL-2.0
http://github.com/mozilla/DeepSpeech
false
A library for running inference with a DeepSpeech model
- Copyright (c) 2019 Mozilla Corporation
+ Copyright (c) 2019-2020 Mozilla Corporation, 2020 DeepSpeech authors
native speech speech_recognition
diff --git a/native_client/java/libdeepspeech/build.gradle b/native_client/java/libdeepspeech/build.gradle
index b4740333..ab5bc310 100644
--- a/native_client/java/libdeepspeech/build.gradle
+++ b/native_client/java/libdeepspeech/build.gradle
@@ -96,7 +96,7 @@ uploadArchives {
developers {
developer {
id 'deepspeech'
- name 'Mozilla DeepSpeech Team'
+ name 'DeepSpeech authors'
email 'deepspeechs@lists.mozilla.org'
}
}
diff --git a/native_client/javascript/package.json.in b/native_client/javascript/package.json.in
index 42edc3c1..2494577f 100644
--- a/native_client/javascript/package.json.in
+++ b/native_client/javascript/package.json.in
@@ -7,7 +7,7 @@
"bin": {
"deepspeech": "./client.js"
},
- "author" : "Mozilla",
+ "author" : "DeepSpeech authors",
"license": "MPL-2.0",
"homepage": "https://github.com/mozilla/DeepSpeech/tree/v$(PROJECT_VERSION)#project-deepspeech",
"files": [
diff --git a/native_client/swift/deepspeech-ios.podspec b/native_client/swift/deepspeech-ios.podspec
index d56d806a..ad9eccf1 100644
--- a/native_client/swift/deepspeech-ios.podspec
+++ b/native_client/swift/deepspeech-ios.podspec
@@ -7,7 +7,7 @@ Pod::Spec.new do |s|
s.summary = "DeepSpeech"
s.homepage = "https://github.com/mozilla/DeepSpeech"
s.license = "Mozilla Public License 2.0"
- s.authors = "Mozilla et al."
+ s.authors = "DeepSpeech authors"
s.platforms = { :ios => "9.0" }
s.source = { :git => "https://github.com/mozilla/DeepSpeech.git", :tag => "v#{s.version}" }
diff --git a/setup.py b/setup.py
index 16c17eb7..da705262 100644
--- a/setup.py
+++ b/setup.py
@@ -98,9 +98,9 @@ def main():
setup(
name='deepspeech_training',
version=version,
- description='Training code for mozilla DeepSpeech',
+ description='Training code for DeepSpeech',
url='https://github.com/mozilla/DeepSpeech',
- author='Mozilla',
+ author='DeepSpeech authors',
license='MPL-2.0',
# Classifiers help users find your project by categorizing it.
#