Skip to content

Commit 81f5b38

Browse files
committed
Add supporting files.
PiperOrigin-RevId: 232774771
1 parent 035dbcd commit 81f5b38

File tree

10 files changed

+89
-24
lines changed

10 files changed

+89
-24
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
**/*.pyc
2+
**/.DS_Store
3+
**/.idea
4+
**/.ipynb_checkpoints

AUTHORS

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
2+
# This is the official list of TensorFlow authors for copyright purposes.
3+
# This file is distinct from the CONTRIBUTORS files.
4+
# See the latter for an explanation.
5+
# Names should be added to this file as:
6+
# Name or Organization <email address>
7+
# The email address is not required for organizations.
8+
Google Inc.

CODEOWNERS

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# https://help.github.com/articles/about-codeowners/
2+
# Last matching pattern takes preecedence.
3+
4+
# Default owners for everything in repo.
5+
* @wolffg @lamberta @MarkDaoust

CONTRIBUTING.md

+35-15
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,48 @@
1-
# Contributing guidelines
1+
# Contributing
22

3-
To contribute to the TensorFlow examples, please send us a pull request. If you
4-
are new to pull requests, read GitHub's
5-
[About pull requests](https://help.github.com/articles/using-pull-requests/) guide.
3+
You don't need to be a developer to make a significant
4+
impact on TensorFlow documentation and examples-—just a
5+
[GitHubaccount](https://github.com/).
66

7-
The documentation and code in this repository is licensed under the
8-
[Apache License 2.0](LICENSE).
7+
Questions about TensorFlow usage are best addressed on
8+
[StackOverflow](https://stackoverflow.com/questions/tagged/tensorflow) or the
9+
[[email protected]](https://groups.google.com/a/tensorflow.org/forum/#!forum/discuss)
10+
mailing list.
911

10-
For more details, see the
11-
[TensorFlow contributing guidelines](https://github.com/tensorflow/tensorflow/blob/master/CONTRIBUTING.md).
12+
To contribute to the TensorFlow code repositories, see the
13+
[Contributing to TensorFlow](https://www.tensorflow.org/community/contributing) guide
14+
and the
15+
[TensorFlow contribution guidelines](https://github.com/tensorflow/tensorflow/blob/master/CONTRIBUTING.md).
1216

13-
### Contributor License Agreements
17+
## Contributor License Agreements
1418

15-
We love patches! So we can publish your changes, you must sign either the
16-
individual or corporate Contributor License Agreement (CLA).
19+
We love patches! To publish your changes, you must sign either the individual or
20+
corporate Contributor License Agreement (CLA):
1721

1822
* If you are an individual writing original documentation or source code and
1923
you're sure you own the intellectual property, sign an
2024
[individual CLA](http://code.google.com/legal/individual-cla-v1.0.html).
2125
* If you work for a company that wants to allow you to contribute your work, sign
2226
a [corporate CLA](http://code.google.com/legal/corporate-cla-v1.0.html).
2327

24-
These links have instructions on how to sign and return the CLA. Once we receive
25-
the CLA, we can accept your pull requests.
28+
We can accept your pull requests after you sign the CLA. We can only receive
29+
original documentation and source code from you and other people that have
30+
signed the CLA.
2631

27-
Note: We can only accept original documentation and source code from you and
28-
other people that have signed the CLA.
32+
33+
# Pull requests
34+
35+
To contribute documentation or code, please send us a pull request. If you are new to
36+
pull requests, read GitHub's
37+
[Creating a pull request from a fork](https://help.github.com/articles/creating-a-pull-request-from-a-fork/)
38+
guide.
39+
40+
Notebooks can be viewed, edited, and run in
41+
[Colab](https://colab.research.google.com/notebooks/welcome.ipynb) by passing
42+
the GitHub path as a URL parameter. For example, open the notebook at
43+
https://github.com/tensorflow/docs/blob/r1.11/site/en/tutorials/keras/basic_classification.ipynb
44+
in Colab here:
45+
https://colab.research.google.com/github/tensorflow/docs/blob/r1.11/site/en/tutorials/keras/basic_classification.ipynb
46+
47+
The [Open in Colab](https://chrome.google.com/webstore/detail/open-in-colab/iogfkhleblhcpcekbiedikdehleodpjo)
48+
Chrome extension will automatically perform the URL substitution.

README.md

+23-6
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,32 @@
44
<img src="https://www.tensorflow.org/images/tf_logo_transp.png"><br><br>
55
</div>
66

7-
We welcome contributions to the TensorFlow examples from the community. See the
8-
[Contributing to TensorFlow](https://www.tensorflow.org/community/contributing)
9-
guide.
7+
<h2>Most important links!</h2>
8+
9+
* [Community examples](./community)
10+
* [Course materials](./courses/udacity_deep_learning) for the [Deep Learning](https://www.udacity.com/course/deep-learning--ud730) class on Udacity
11+
12+
If you are looking to learn TensorFlow, don't miss the
13+
[core TensorFlow documentation](http://github.com/tensorflow/docs)
14+
which is largely runnable code.
15+
Those notebooks can be opened in Colab from
16+
[tensorflow.org](tensorflow.org).
1017

11-
To file an issue, use the tracker in the [tensorflow/tensorflow](https://github.com/tensorflow/tensorflow/issues/new?template=20-documentation-issue.md) repo and add the label `type:docs`.
18+
<h2>What is this repo?</h2>
1219

13-
## Contribution guidelines
20+
This is the TensorFlow example repo. It has several classes of material:
21+
22+
* Showcase examples and documentation for our fantastic [TensorFlow Community](tensorflow.org/community)
23+
* Provide examples mentioned on TensorFlow.org
24+
* Publish material supporting official TensorFlow courses
25+
* Publish supporting material for [blog.tensorflow.org](blog.tensorflow.org) and [youtube.com/tensorflow](youtube.com/tensorflow)
26+
27+
We welcome community contributions, see [CONTRIBUTING.md](CONTRIBUTING.md) and, for style help,
28+
[Writing TensorFlow documentation](https://www.tensorflow.org/community/documentation)
29+
guide.
1430

15-
To contribute documentation, review the [contribution guidelines](CONTRIBUTING.md).
31+
To file an issue, use the tracker in the
32+
[tensorflow/tensorflow](https://github.com/tensorflow/tensorflow/issues/new?template=20-documentation-issue.md) repo.
1633

1734
## License
1835

__init__.py

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
"""tensorflow_examples is a package for examples of TensorFlow."""
2+
3+
from __future__ import absolute_import
4+
from __future__ import division
5+
from __future__ import print_function

community/README.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
2+
<h2>TensorFlow Community</h2>
3+
4+
If you want to learn how to join the [TensorFlow community page on tensorflow.org](tensorflow.org/community), see the TensorFlow community page.
5+
6+
Please suggest PRs here for new documentation and samples, and see the
7+
[contributing guide](../CONTRIBUTING.md) for details.
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
notMNIST_large*
2-
notMNIST_small*
2+
notMNIST_small*

courses/udacity_deep_learning/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM gcr.io/tensorflow/tensorflow:latest
1+
FROM gcr.io/tensorflow/tensorflow:1.0.0
22
LABEL maintainer="Vincent Vanhoucke <[email protected]>"
33

44
# Pillow needs libjpeg by default as of 3.0.

lite/README.md

-1
This file was deleted.

0 commit comments

Comments
 (0)