Commit ea43da2
authored
4 files changed
+4
-4
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
29 | 29 | | |
30 | 30 | | |
31 | 31 | | |
32 | | - | |
| 32 | + | |
33 | 33 | | |
34 | 34 | | |
35 | 35 | | |
| |||
- .codecov.yml+17
- .travis.yml+33-21
- README.md+4-2
- RELEASE.md+8
- doc/overall_design.md-58
- doc/tutorials/get_started.md-34
- docs/blogs/elasticdl-gdd-2019.md
- docs/designs/archived/model_evaluation_design.md
- docs/designs/archived/odps_support_design.md
- docs/designs/archived/overview.md
- docs/designs/archived/worker_optimization_design.md+2-2
- docs/designs/async_sgd_design.md+3-3
- docs/designs/custom_data_source_support_design.md+1-1
- docs/designs/data_io_pipeline_design.md+13
- docs/designs/data_preparation_design.md
- docs/designs/design_diagram.pdf
- docs/designs/design_diagram.pptx
- docs/designs/distributed_embedding_layer_design.md
- docs/designs/dynamic_data_sharding_design.md+16
- docs/designs/elastic_sync_sgd.md
- docs/designs/evaluation_design.md+62
- docs/designs/high_level_api_design.md
- docs/designs/overall_design.md+31
- docs/designs/parameter_server.md+1-1
- docs/designs/ps_design.md+424
- docs/designs/versioning.md+5-5
- docs/images/architecture.png
- docs/images/data_io_pipeline.jpg
- docs/images/distributed_training_sequence.jpg
- docs/images/dynamic_data_sharding.png
- docs/images/evaluate_sequence.svg+3
- docs/images/parameter_server.graffle
- docs/images/parameter_server.png
- docs/images/pserver.png
- docs/images/train_and_evaluate_flowchart.svg+3
- docs/images/train_and_evaluate_flowchart_proposal.svg+3
- docs/tutorials/data_preparation.md+9-8
- docs/tutorials/elasticdl_cloud.md+10-10
- docs/tutorials/elasticdl_local.md+9-9
- docs/tutorials/elasticdl_on_prem_cluster.md+3-3
- docs/tutorials/get_started.md+38
- docs/tutorials/model_building.md+1
- elasticdl/README.md+18-3
- elasticdl/docker/Dockerfile+1-1
- elasticdl/docker/Dockerfile.data_process+1-1
- elasticdl/docker/Dockerfile.dev+3-2
- elasticdl/manifests/examples/elasticdl-demo-k8s.yaml+2-2
- elasticdl/manifests/examples/elasticdl-demo-minikube.yaml+2-2
- elasticdl/proto/elasticdl.proto+2-1
- elasticdl/python/common/args.py+26-21
- elasticdl/python/common/constants.py+5
- elasticdl/python/data/data_reader.py+1-1
- elasticdl/python/data/odps_io.py+1-1
- elasticdl/python/elasticdl/README.md+5-5
- elasticdl/python/elasticdl/api.py+12-6
- elasticdl/python/master/evaluation_service.py+73-18
- elasticdl/python/master/main.py+18-26
- elasticdl/python/master/optimizer_wrapper.py+8-8
- elasticdl/python/master/servicer.py+1-27
- elasticdl/python/tests/data_reader_test.py+4-1
- elasticdl/python/tests/evaluation_service_test.py+56-23
- elasticdl/python/tests/model_utils_test.py+14
- elasticdl/python/tests/test_module.py+2-2
- elasticdl/python/tests/test_utils.py+49-3
- elasticdl/python/worker/worker.py+38-19
- elasticdl/requirements-dev.txt+5
- elasticdl/requirements.txt+1-5
- model_zoo/cifar10_functional_api/cifar10_functional_api.py+5-11
- model_zoo/cifar10_subclass/cifar10_subclass.py+5-11
- model_zoo/deepfm_edl_embedding/deepfm_edl_embedding.py+16-19
- model_zoo/deepfm_functional_api/deepfm_functional_api.py+16-19
- model_zoo/mnist_functional_api/mnist_functional_api.py+5-11
- model_zoo/mnist_subclass/mnist_subclass.py+5-11
- model_zoo/odps_iris_dnn_model/odps_iris_dnn_model.py+13-6
- model_zoo/resnet50_subclass/resnet50_subclass.py+5-11
- scripts/bump_version.sh
- scripts/client_test.sh+29-7
- scripts/validate_job_status.sh+3-3
- setup.py+13-4
- README.md+1-1
- cmd/repl/repl.go+82-29
- cmd/sqlflowserver/main_test.go+100-40
- doc/design/design_elasticdl_on_sqlflow.md+2-2
- doc/design/design_high-available_sqlflow_server.md+232
- doc/design/design_support_arbitrary_select.md+67
- doc/design/design_workflow.md+58-65
- doc/design/design_xgboost_on_sqlflow.md+1-1
- doc/design/figures/cluster_job_runner.graffle
- doc/design/figures/cluster_job_runner.png
- doc/design/model_zoo.md+190
- doc/run/repl.md+9
- doc/tutorial/iris-dnn.md+8-8
- parser/tidb/tidb_parser.go.txt
- parser/tidb/tidb_parser_test.go.txt
- pkg/server/proto/sqlflow.proto+5
- pkg/sql/attribute.go+6
- pkg/sql/codegen.go+14-5
- pkg/sql/codegen/attribute/attribute.go+135
- pkg/sql/codegen/attribute/attribute_test.go+69
- pkg/sql/codegen/attribute/checker.go+101
- pkg/sql/codegen/attribute/checker_test.go+55
- pkg/sql/codegen/feature_column.go+40-6
- pkg/sql/codegen/intermediate_representation.go+8-3
- pkg/sql/codegen/tensorflow/codegen.go+274
- pkg/sql/codegen/tensorflow/codegen_test.go+74
- pkg/sql/codegen/tensorflow/template_pred.go+75
- pkg/sql/codegen/tensorflow/template_train.go+79
- pkg/sql/codegen/xgboost/README.md+56
- pkg/sql/codegen/xgboost/codegen.go+29-47
- pkg/sql/codegen/xgboost/codegen_test.go+8-8
- pkg/sql/codegen/xgboost/docgen.go+61
- pkg/sql/codegen/xgboost/docgen_test.go+25
- pkg/sql/codegen/xgboost/template.go+2-1
- pkg/sql/codegen_alps.go+25-16
- pkg/sql/codegen_analyze.go+2-1
- pkg/sql/codegen_elasticdl.go+54-40
- pkg/sql/codegen_elasticdl_test.go+2-2
- pkg/sql/codegen_test.go+53-2
- pkg/sql/codegen_xgboost.go+17-8
- pkg/sql/codegen_xgboost_test.go+18-2
- pkg/sql/create_train_val.go+4
- pkg/sql/database.go+4
- pkg/sql/database_test.go+3-2
- pkg/sql/executor.go+59-17
- pkg/sql/executor_test.go+1-1
- pkg/sql/expression_resolver.go+1-5
- pkg/sql/feature_derivation.go+354
- pkg/sql/feature_derivation_test.go+177
- pkg/sql/featurederivation.go-305
- pkg/sql/featurederivation_test.go-120
- pkg/sql/ir_generator.go+70-5
- pkg/sql/ir_generator_test.go+123
- pkg/sql/template_elasticdl.go+14-7
- pkg/sql/template_tf.go+2-2
- pkg/sql/template_xgboost.go+1-1
- pkg/sql/testdata/feature_derivation_case.go+6-5
- python/sqlflow_submitter/db.py+4-2
- python/sqlflow_submitter/db_test.py+5-4
- python/sqlflow_submitter/db_writer/hive.py+36-5
- python/sqlflow_submitter/tensorflow/__init__.py+13
- python/sqlflow_submitter/tensorflow/estimator_train_pred.py+94
- python/sqlflow_submitter/tensorflow/keras_train_pred.py+45
- python/sqlflow_submitter/tensorflow/predict.py+181
- python/sqlflow_submitter/tensorflow/train.py+125
- python/sqlflow_submitter/tensorflow/train_predict_test.py+40
- scripts/build_docker_image.sh+10-11
- scripts/deploy.sh+1-1
- scripts/setup_k8s_env.sh-1
- scripts/test_ipython.sh+1-1
- scripts/test_maxcompute.sh+15-1
- scripts/test_units.sh+3
0 commit comments