Skip to content

Commit 9be324b

Browse files
authored
Update (#2065)
1 parent e16c6fb commit 9be324b

File tree

5 files changed

+41
-26
lines changed

5 files changed

+41
-26
lines changed

CODE_OF_CONDUCT.md

+14-13
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,21 @@ appearance, race, religion, or sexual identity and orientation.
1414
Examples of behavior that contributes to creating a positive environment
1515
include:
1616

17-
* Using welcoming and inclusive language
18-
* Being respectful of differing viewpoints and experiences
19-
* Gracefully accepting constructive criticism
20-
* Focusing on what is best for the community
21-
* Showing empathy towards other community members
17+
- Using welcoming and inclusive language
18+
- Being respectful of differing viewpoints and experiences
19+
- Gracefully accepting constructive criticism
20+
- Focusing on what is best for the community
21+
- Showing empathy towards other community members
2222

2323
Examples of unacceptable behavior by participants include:
2424

25-
* The use of sexualized language or imagery and unwelcome sexual attention or
25+
- The use of sexualized language or imagery and unwelcome sexual attention or
2626
advances
27-
* Trolling, insulting/derogatory comments, and personal or political attacks
28-
* Public or private harassment
29-
* Publishing others' private information, such as a physical or electronic
27+
- Trolling, insulting/derogatory comments, and personal or political attacks
28+
- Public or private harassment
29+
- Publishing others' private information, such as a physical or electronic
3030
address, without explicit permission
31-
* Other conduct which could reasonably be considered inappropriate in a
31+
- Other conduct which could reasonably be considered inappropriate in a
3232
professional setting
3333

3434
## Our Responsibilities
@@ -67,10 +67,11 @@ members of the project's leadership.
6767

6868
## Attribution
6969

70-
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71-
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
70+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
71+
version 1.4, available at
72+
<https://www.contributor-covenant.org/version/1/4/code-of-conduct.html>.
7273

7374
[homepage]: https://www.contributor-covenant.org
7475

7576
For answers to common questions about this code of conduct, see
76-
https://www.contributor-covenant.org/faq
77+
<https://www.contributor-covenant.org/faq>.

RELEASE.md

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
# Release 0.1.0
22

33
## Major Features and Improvements
4+
45
- This is the first release of ElasticDL. It supports TensorFlow 2.0.
5-
- Includes a master-worker architecture, where the master controls task generation and entire job progress. Workers communicate with the master to get the tasks to execute and report execution results.
6-
- Supports different job types: training-only, training-with-evaluation, evaluation-only and prediction-only.
6+
- Includes a master-worker architecture, where the master controls task
7+
generation and entire job progress. Workers communicate with the master to get
8+
the tasks to execute and report execution results.
9+
- Supports different job types: training-only, training-with-evaluation,
10+
evaluation-only and prediction-only.
711
- Provides high-level APIs and CLI for training, evaluation and prediction.
8-
- Supports running in environments, including MiniKube, GCP, and on-prem clusters.
12+
- Supports running in environments, including MiniKube, GCP, and on-prem
13+
clusters.
914
- Adds experimental integration with SQLFlow for ODPS data source.

docs/tutorials/preprocessing_tutorial.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ TensorFlow. ElasticDL preprocessing provides a number of Keras layers to
99
preprocess data directly in Keras models.
1010
For example, using ElasticDL preprocessing layers you could:
1111

12-
* Normalize an input value by using the mean and standard deviation.
13-
* Convert floats to integers by assigning them to buckets and rounding.
14-
* Convert strings to integers by lookuping a vocabulary or hashing.
12+
- Normalize an input value by using the mean and standard deviation.
13+
- Convert floats to integers by assigning them to buckets and rounding.
14+
- Convert strings to integers by lookuping a vocabulary or hashing.
1515

1616
### Normalize input values
1717

elasticdl/python/elasticdl/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
A model definition directory is needed to be created, the files in the directory
66
are as follows:
77

8-
* (mandatory) A Python source file which defines the keras model and use the
8+
- (mandatory) A Python source file which defines the keras model and use the
99
directory base name as the filename.
10-
* (mandatory) The file `__init__.py` is necessary.
11-
* (optional) Source files of other Python modules.
12-
* (optional) A requirements.txt file that lists dependencies required by the
10+
- (mandatory) The file `__init__.py` is necessary.
11+
- (optional) Source files of other Python modules.
12+
- (optional) A requirements.txt file that lists dependencies required by the
1313
above source files.
1414

1515
There are several Keras examples provided in `model_zoo` directory.

elasticdl_preprocessing/README.md

+12-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,20 @@
11
# ElasticDL Preprocessing
22

3-
This is a feature preprocessing library provided by ElasticDL.
3+
This is a feature preprocessing library provided by ElasticDL.
44
It provides APIs in the following forms:
55

66
- Keras layer
77
- Feature column API
88

9-
This is an extension of the native [Keras Preprocessing Layers](https://www.tensorflow.org/versions/r2.2/api_docs/python/tf/keras/preprocessing) and [Feature Column API](https://www.tensorflow.org/versions/r2.2/api_docs/python/tf/feature_column) from TensorFlow. We can develop our model using the native high-level API from TensorFlow and our library. We can train this model using native TensorFlow or ElasticDL.
9+
This is an extension of the native [Keras Preprocessing
10+
Layers](https://www.tensorflow.org/versions/r2.2/api_docs/python/tf/keras/preprocessing)
11+
and [Feature Column
12+
API](https://www.tensorflow.org/versions/r2.2/api_docs/python/tf/feature_column)
13+
from TensorFlow. We can develop our model using the native high-level API from
14+
TensorFlow and our library. We can train this model using native TensorFlow or
15+
ElasticDL.
1016

11-
*Note: Some native [Keras Preprocess layers](https://github.com/tensorflow/community/pull/188) will be released in TF2.2. For the TF version <= 2.1, we will provide our implementation of the same functionality.*
17+
Note: Some native [Keras Preprocess
18+
layers](https://github.com/tensorflow/community/pull/188) will be released in
19+
TF2.2. For the TF version <= 2.1, we will provide our implementation of the same
20+
functionality.

0 commit comments

Comments
 (0)