Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
tensorflow-federated
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to JiHu GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
KMSCAKKSCFKA AKFACAMADCAS
tensorflow-federated
Commits
c76a3a88
Commit
c76a3a88
authored
6 years ago
by
michaelreneer
Committed by
A. Unique TensorFlower
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Increment the version and add release documentation.
PiperOrigin-RevId: 234727703
parent
7fe4808e
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
RELEASE.md
+3
-0
3 additions, 0 deletions
RELEASE.md
tensorflow_federated/tools/setup.py
+22
-6
22 additions, 6 deletions
tensorflow_federated/tools/setup.py
with
25 additions
and
6 deletions
RELEASE.md
0 → 100644
+
3
−
0
View file @
c76a3a88
# Release 0.1.0
Initial public release.
This diff is collapsed.
Click to expand it.
tensorflow_federated/tools/setup.py
+
22
−
6
View file @
c76a3a88
...
...
@@ -11,13 +11,30 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""
TensorFlow Federated is an open source federated learning framework.
# pylint: disable=line-too-long
"""
TensorFlow Federated is an open-source federated learning framework.
TensorFlow Federated is a framework for implementing federated learning
algorithms and other computations on privacy-sensitive decentralized data.
TensorFlow Federated (TFF) is an open-source framework for collaborative
computations on distributed data that does not require collecting data at a
centralized location.
TODO(b/112658581): Add TFF high level overview.
The framework has initially been developed to facilitate open research and
experimentation with
[Federated Learning](https://ai.googleblog.com/2017/04/federated-learning-collaborative.html),
a technology that enables devices owned by end users to collaboratively learn a
shared prediction model while keeping potentially sensitive training data on the
devices, thus decoupling the ability to do machine learning from the need to
collect and store the data in the cloud.
With the interfaces provided by TFF, developers can test existing federated
learning algorithms on their models and data, or design new experimental
algorithms and run them on existing models and data, all within the same open
source environment. The framework has been designed with compositionality in
mind, and can be used to combine independently-developed techniques and
components that offer complementary capabilities into larger systems.
"""
# pylint: enable=line-too-long
# TODO(b/124800187): Keep in sync with the contents of README.
import
sys
...
...
@@ -25,8 +42,7 @@ import setuptools
DOCLINES
=
__doc__
.
split
(
'
\n
'
)
# Set when releasing a new version of TensorFlow Federated (e.g. 1.0.0).
_VERSION
=
'
0.0.0
'
_VERSION
=
'
0.1.0
'
project_name
=
'
tensorflow_federated
'
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment