forked from sql-machine-learning/elasticdl
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
41 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,14 @@ | ||
# Release 0.1.0 | ||
|
||
## Major Features and Improvements | ||
|
||
- This is the first release of ElasticDL. It supports TensorFlow 2.0. | ||
- 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. | ||
- Supports different job types: training-only, training-with-evaluation, evaluation-only and prediction-only. | ||
- 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. | ||
- Supports different job types: training-only, training-with-evaluation, | ||
evaluation-only and prediction-only. | ||
- Provides high-level APIs and CLI for training, evaluation and prediction. | ||
- Supports running in environments, including MiniKube, GCP, and on-prem clusters. | ||
- Supports running in environments, including MiniKube, GCP, and on-prem | ||
clusters. | ||
- Adds experimental integration with SQLFlow for ODPS data source. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,20 @@ | ||
# ElasticDL Preprocessing | ||
|
||
This is a feature preprocessing library provided by ElasticDL. | ||
This is a feature preprocessing library provided by ElasticDL. | ||
It provides APIs in the following forms: | ||
|
||
- Keras layer | ||
- Feature column API | ||
|
||
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. | ||
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. | ||
|
||
*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.* | ||
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. |