Skip to content

Commit 4c20331

Browse files
committed
use "TF Encrypted" everywhere
closes tf-encrypted#404
1 parent 2a40064 commit 4c20331

File tree

18 files changed

+46
-45
lines changed

18 files changed

+46
-45
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ endif
129129
# ###############################################
130130
# Building Docker Image
131131
#
132-
# Builds a docker image for tf-encrypted that can be used to deploy and
132+
# Builds a docker image for TF Encrypted that can be used to deploy and
133133
# test.
134134
# ###############################################
135135
DOCKER_BUILD=docker build -t mortendahl/tf-encrypted:$(1) -f Dockerfile $(2) .

NOTICE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
tf-encrypted
1+
TF Encrypted
22

33
All contributions by Morten Dahl:
44
Copyright (c) 2018, Morten Dahl.

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# tf-encrypted
1+
# TF Encrypted
22

33
![Status](https://img.shields.io/badge/status-alpha-blue.svg) [![License](https://img.shields.io/github/license/mortendahl/tf-encrypted.svg)](./LICENSE) [![PyPI](https://img.shields.io/pypi/v/tf-encrypted.svg)](https://pypi.org/project/tf-encrypted/) [![CircleCI Badge](https://circleci.com/gh/mortendahl/tf-encrypted/tree/master.svg?style=svg)](https://circleci.com/gh/mortendahl/tf-encrypted/tree/master) [![Documentation](https://img.shields.io/badge/api-reference-blue.svg)](https://tf-encrypted.readthedocs.io/en/latest/)
44

5-
tf-encrypted is a Python library built on top of [TensorFlow](https://www.tensorflow.org) for researchers and practitioners to experiment with privacy-preserving machine learning. It provides an interface similar to that of TensorFlow, and aims at making the technology readily available without first becoming an expert in machine learning, cryptography, distributed systems, and high performance computing.
5+
TF Encrypted is a Python library built on top of [TensorFlow](https://www.tensorflow.org) for researchers and practitioners to experiment with privacy-preserving machine learning. It provides an interface similar to that of TensorFlow, and aims at making the technology readily available without first becoming an expert in machine learning, cryptography, distributed systems, and high performance computing.
66

77
In particular, the library focuses on:
88

@@ -18,7 +18,7 @@ The project has benefitted enormously from the efforts of several contributors f
1818

1919
# Installation
2020

21-
tf-encrypted is available as a package on [PyPI](https://pypi.org/project/tf-encrypted/) supporting Python 3.5+ and TensorFlow 1.12.0+ which can be installed using:
21+
TF Encrypted is available as a package on [PyPI](https://pypi.org/project/tf-encrypted/) supporting Python 3.5+ and TensorFlow 1.12.0+ which can be installed using:
2222

2323
```bash
2424
pip3 install tf-encrypted
@@ -32,17 +32,17 @@ cd tf-encrypted
3232
pip3 install -e .
3333
```
3434

35-
This latter is useful on platforms for which the pip package has not yet been compiled but is also needed for [development](./.github/CONTRIBUTING.md). Note that this will get you a working basic installation, yet [a few more steps](./INSTALL.md) are required to match the performance and security of the version shipped in the pip package.
35+
This latter is useful on platforms for which the pip package has not yet been compiled but is also needed for [development](./.github/CONTRIBUTING.md). Note that this will get you a working basic installation, yet a few more steps are required to match the performance and security of the version shipped in the pip package, see [INSTALL.md](./docs/INSTALL.md).
3636

3737
## Custom build of TensorFlow
3838

39-
While tf-encrypted will work with the official release of [TensorFlow](https://pypi.org/project/tensorflow/) (version 1.12+), some features currently depend on improvements that have not yet been shipped. In particular, to get speed improvements by using int64 tensors instead of int100 tensors you currently need a custom build of TensorFlow.
39+
While TF Encrypted will work with the official release of [TensorFlow](https://pypi.org/project/tensorflow/) (version 1.12+), some features currently depend on improvements that have not yet been shipped. In particular, to get speed improvements by using int64 tensors instead of int100 tensors you currently need a custom build of TensorFlow.
4040

41-
Such builds are available for [macOS](https://storage.googleapis.com/dropoutlabs-tensorflow-builds/tensorflow-1.12.0-cp35-cp35m-macosx_10_7_x86_64.whl) and [Linux](https://storage.googleapis.com/dropoutlabs-tensorflow-builds/tensorflow-1.12.0-cp35-cp35m-linux_x86_64.whl) as a temporary solution until the next official release of TensorFlow is out (version 1.13), but no guarantees are made about them and they should be treated as pre-alpha. See more in the [installation instructions](./INSTALL.md#custom-tensorflow).
41+
Such builds are available for [macOS](https://storage.googleapis.com/dropoutlabs-tensorflow-builds/tensorflow-1.12.0-cp35-cp35m-macosx_10_7_x86_64.whl) and [Linux](https://storage.googleapis.com/dropoutlabs-tensorflow-builds/tensorflow-1.12.0-cp35-cp35m-linux_x86_64.whl) as a temporary solution until the next official release of TensorFlow is out (version 1.13), but no guarantees are made about them and they should be treated as pre-alpha. See more in the [installation instructions](./docs/INSTALL.md#custom-tensorflow).
4242

4343
# Usage
4444

45-
The following is an example of simple matmul on encrypted data using tf-encrypted:
45+
The following is an example of simple matmul on encrypted data using TF Encrypted:
4646

4747
```python
4848
import tensorflow as tf
@@ -81,7 +81,7 @@ The following texts provide further in-depth presentations of the project:
8181

8282
# Project Status
8383

84-
tf-encrypted is experimental software not currently intended for use in production environments. The focus is on building the underlying primitives and techniques, with some practical security issues post-poned for a later stage. However, care is taken to ensure that none of these represent fundamental issues that cannot be fixed as needed.
84+
TF Encrypted is experimental software not currently intended for use in production environments. The focus is on building the underlying primitives and techniques, with some practical security issues postponed for a later stage. However, care is taken to ensure that none of these represent fundamental issues that cannot be fixed as needed.
8585

8686
## Known limitations
8787

.github/CONTRIBUTING.md docs/CONTRIBUTING.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
# Contribution Guide
22

3-
The goal of `tf-encrypted` is to make it easy for researchers and practitioners to experiment with various tricks and techniques for privacy-preserving machine learning. As such, contributions are more than welcome and we're always looking for use cases, feature ideas, cryptographic protocols, or machine learning optimizations!
3+
The goal of TF Encrypted is to make it easy for researchers and practitioners to experiment with various tricks and techniques for privacy-preserving machine learning. As such, contributions are more than welcome and we're always looking for use cases, feature ideas, cryptographic protocols, or machine learning optimizations!
44

55
This document helps you get started on:
66

77
- [Submitting a pull request](#submitting-a-pull-request)
88
- [Writing documentation](#writing-documentation)
99
- [Reporting a bug](#reporting-a-bug)
1010

11-
Please visit the [installation instructions](/INSTALL.md) for help on setting up for development.
11+
Please visit the [installation instructions](./INSTALL.md) for help on setting up for development.
1212

1313
# Submitting a Pull Request
1414

15-
To contribute, [fork](https://help.github.com/articles/fork-a-repo/) `tf-encrypted`, commit your changes, and [open a pull request](https://help.github.com/articles/using-pull-requests/).
15+
To contribute, [fork](https://help.github.com/articles/fork-a-repo/) TF Encrypted, commit your changes, and [open a pull request](https://help.github.com/articles/using-pull-requests/).
1616

1717
While you may be asked to make changes to your submission during the review process, we will work with you on this and suggest changes. Consider giving us [push rights to your branch](https://help.github.com/articles/allowing-changes-to-a-pull-request-branch-created-from-a-fork/) so we can potentially also help via commits.
1818

1919
## Commit history and merging
2020

2121
For the sake of transparency our key rule is to keep a logical and intelligible commit history, meaning anyone stepping through the commits on either the `master` branch or as part of a review should be able to easily follow the changes made and their potential implications.
2222

23-
To this end we ask all contributors to sanitise pull requests before submitting them as our preferred way of merging pull requests is rebasing.
23+
To this end we ask all contributors to sanitize pull requests before submitting them as our preferred way of merging pull requests is rebasing.
2424

2525
Some guidelines:
2626

@@ -73,6 +73,7 @@ make docs
7373
command which will
7474
subsequently output the html version of our docs to your `build` folder. You
7575
can view the docs after their built using your browser by running
76+
7677
```sh
7778
open build/html/index.html
7879
```

INSTALL.md docs/INSTALL.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Installation
22

3-
The most convenient way of installing tf-encrypted is via [the official pip package](https://pypi.org/project/tf-encrypted/):
3+
The most convenient way of installing TF Encrypted is via [the official pip package](https://pypi.org/project/tf-encrypted/):
44

55
```
66
pip3 install tf-encrypted
@@ -44,7 +44,7 @@ We address both below but stress that they can be skipped for initial experiment
4444

4545
# Custom Ops
4646

47-
Certains operations, such as secure randomness generation, rely on C++ extensions of TensorFlow known as [custom ops](https://www.tensorflow.org/guide/extend/op). These come precompiled with the [tf-encrypted pip package](https://pypi.org/project/tf-encrypted/) but need to be manually compiled when installing from source code as done above.
47+
Certains operations, such as secure randomness generation, rely on C++ extensions of TensorFlow known as [custom ops](https://www.tensorflow.org/guide/extend/op). These come precompiled with the [pip package](https://pypi.org/project/tf-encrypted/) but need to be manually compiled when installing from source code as done above.
4848

4949
On macOS this is straight forward once libtool and automake are installed (see the [detailed instructions](#complete-instructions)):
5050

@@ -100,7 +100,7 @@ after making sure flake8 is installed:
100100

101101
# Custom TensorFlow
102102

103-
While tf-encrypted will work with the official release of [TensorFlow](https://pypi.org/project/tensorflow/) (version 1.12+), some features currently depend on improvements that have not yet been shipped. In particular, to get speed improvements from using int64 instead of int100 tensors you currently need a custom build of TensorFlow.
103+
While TF Encrypted will work with the official release of [TensorFlow](https://pypi.org/project/tensorflow/) (version 1.12+), some features currently depend on improvements that have not yet been shipped. In particular, to get speed improvements from using int64 instead of int100 tensors you currently need a custom build of TensorFlow.
104104

105105
We provide such builds as a temporary solution until the next official release of TensorFlow is out (version 1.13), but no guarantees are made about them and they should be treated as experimental:
106106

@@ -115,7 +115,7 @@ In both cases should you end up with a wheel file that you can install using pip
115115
(venv) ./ $ pip install tensorflow-1.13.0-XXX.whl
116116
```
117117

118-
tf-encrypted auto-detects which features are available so no further actions are needed.
118+
TF Encrypted auto-detects which features are available so no further actions are needed.
119119

120120
# Complete Instructions
121121

@@ -213,7 +213,7 @@ We finally close the repository:
213213
./ $ cd tf-encrypted
214214
```
215215

216-
install tf-encrypted outside a virtual environment and without dependencies:
216+
install TF Encrypted outside a virtual environment and without dependencies:
217217

218218
```
219219
./tf-encrypted/ $ pip3 install -e . --no-deps

docs/getting_started.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Getting Started with tf-encrypted
1+
# Getting Started with TF Encrypted
22

33
This guide assumes that you have followed the installation instructions in [README](https://github.com/mortendahl/tf-encrypted).
44

@@ -12,14 +12,14 @@ This guide assumes that you have followed the installation instructions in [READ
1212

1313
## Introduction to the API
1414

15-
tf-encrypted has a simple API to make it easy for data scientists to make private predictions and training.
15+
TF Encrypted has a simple API to make it easy for data scientists to make private predictions and training.
1616

17-
To define a machine learning model, tf-encrypted and TensorFlow follow a very similar API.
17+
To define a machine learning model, TF Encrypted and TensorFlow follow a very similar API.
1818

1919
<table>
2020
<tr>
2121
<th>TensorFlow</th>
22-
<th>tf-encrypted</th>
22+
<th>TF Encrypted</th>
2323
</tr>
2424
<tr>
2525
<td><pre lang="python">layer0 = tf.matmul(x, w0) + b0
@@ -69,7 +69,7 @@ Two servers and a crypto producer are doing the actual computation on encrypted
6969
## Private Predictions
7070
### a. Locally
7171

72-
With tf-encrypted, you can very easily make private predictions with a pre-trained model saved as a [protobuf](https://www.tensorflow.org/extend/tool_developers/) file.
72+
With TF Encrypted, you can very easily make private predictions with a pre-trained model saved as a [protobuf](https://www.tensorflow.org/extend/tool_developers/) file.
7373

7474
1. In the [`examples/`](./examples/) folder run the following line of code in your terminal to train a convolution network on MNIST dataset, then save the model as a protobuf file :
7575
```bash

docs/source/api/config/config.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
`Config`
22
============
33

4-
| Config determines how a session should run in tf-encrypted.
4+
| Config determines how a session should run in TF Encrypted.
55
| There are two primary ways in which config can be used:
66
77
.. py:class:: tf_encrypted.config.LocalConfig

docs/source/api/layers/relu.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Classicly, `Relu` computes the following on input:
77
88
Relu(x) = max(0, x)
99
10-
In `tf-encrypted`, how `Relu` behaves will depend on the underlying protocol
10+
In TF Encrypted, how `Relu` behaves will depend on the underlying protocol
1111
you are using.
1212

1313
| With :class:`~tf_encrypted.protocol.pond.Pond`, `Relu` will be approximated using `Chebyshev Polynomial Approximation`_

docs/source/api/protocol/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
`protocol`
22
===========
33

4-
In `tf-encrypted`, a protocol represents a certain type of cryptographic protocol
4+
In TF Encrypted, a protocol represents a certain type of cryptographic protocol
55
to achieve security.
66

77
The goal is to allow you to easily play with or use different cryptographic methods

docs/source/api/session.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
Session is an extension of `tf.Session` that lets the graph run in a secure manner.
55

6-
The aim of `tf-encrypted` is to look as close to `TensorFlow` as possible. With this goal in mind,
6+
The aim of TF Encrypted is to look as close to `TensorFlow` as possible. With this goal in mind,
77
you get and use a session the same way that you're used to with Tensorflow::
88

99
import tf_encrypted as tfe

docs/source/guides/mnist.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ MNIST
44
This tutorial is also available on `Google Collab`_, feel free to follow along there!
55

66
In this tutorial, we will train our model in plaintext with Tensorflow, then
7-
make private predictions with `tf-encrypted`. we will use the `MNIST dataset`_.
7+
make private predictions with TF Encrypted. we will use the `MNIST dataset`_.
88

99
.. _Google Collab: https://colab.research.google.com/drive/1BbOcMc8npAfQH91-2jtCWkTvpXY0aThC
1010
.. _MNIST dataset: http://yann.lecun.com/exdb/mnist/
@@ -276,7 +276,7 @@ The `PredictionClient` object will provide the private input that will be used t
276276
277277
Once you instantiate the `ModelTrainer` and `PredictionClient` objects, you can very
278278
easily get the weights trained in plaintext, get the private input from the client
279-
and finally make private predictions. As you can see, to create a model, `tf-encrypted`
279+
and finally make private predictions. As you can see, to create a model, TF Encrypted
280280
and TensorFlow follow a very similar API
281281

282282
.. code-block:: python

docs/source/index.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
You can adapt this file completely to your liking, but it should at least
44
contain the root `toctree` directive.
55
6-
tf-encrypted
6+
TF Encrypted
77
========================================
88

9-
tf-encrypted is a Python library built on top of TensorFlow_ for researchers and practitioners to experiment with privacy-preserving machine learning. It provides an interface similar to that of TensorFlow, and aims at making the technology readily available without first becoming an expert in machine learning, cryptography, distributed systems, and high performance computing.
9+
TF Encrypted is a Python library built on top of TensorFlow_ for researchers and practitioners to experiment with privacy-preserving machine learning. It provides an interface similar to that of TensorFlow, and aims at making the technology readily available without first becoming an expert in machine learning, cryptography, distributed systems, and high performance computing.
1010

1111
In particular, the library focuses on:
1212

0 commit comments

Comments
 (0)