Skip to content

Fix 404 in http://sqlflow.org/sqlflow/doc/quick_start/ #93

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 24, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ git clone https://github.com/sql-machine-learning/sql-machine-learning.github.io
git submodule update --init --recursive --remote
```

**Step Three**: Fire up docker run under the repo root. Note the command will pull the image from the remote automatically. Also, make sure to replace `b90ffea2` with your personal access token. It takes a few seconds to generate the token by following [this document](https://help.github.com/en/articles/creating-a-personal-access-token-for-the-command-line). Now you can access SQLFlow.org from http://localhost:4000 with exact the same content.
**Step Three**: Fire up docker run under the repo root. Note the command will pull the image from the remote automatically. Also, make sure to replace `b90ffea2` with your personal access token. It takes a few seconds to generate the token by following [this document](https://help.github.com/en/articles/creating-a-personal-access-token-for-the-command-line). Now you can access SQLFlow.org from http://localhost:4000 with exactly the same content.

```bash
cd sql-machine-learning.github.io
Expand Down
7 changes: 6 additions & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ title: 'SQLFlow'
description: Bridging Data and AI

permalink: pretty
exclude: ['*.sql', '*.go', '.gitignore', '*.sh', '*.proto', '*.y', '*.py', 'vendor', 'gohive/doc/design.md', 'gohive/docker/README.md', 'pysqlflow/doc/design/client_design_doc.md', 'pysqlflow/doc/design/magic_design_doc.md', 'sqlflow/doc/mysql-setup.md', 'sqlflow/doc/tutorial/aspara2019/', 'sqlflow/doc/design/design_ant_xgboost.md', 'sqlflow/doc/design/design_workflow.md', 'sqlflow/python/README.md', 'sqlflow/parser/README.md', 'sqlflow/parser/remote/README.md', 'sqlflow/parser/remote/hiveql/README.md', 'sqlflow/scripts/markdown_link_check/README.md']
exclude: ['*.sql', '*.go', '.gitignore', '*.sh', '*.proto', '*.y', '*.py', 'vendor', 'gohive/doc/design.md', 'gohive/docker/README.md', 'pysqlflow/doc/design/client_design_doc.md', 'pysqlflow/doc/design/magic_design_doc.md', 'sqlflow/doc/mysql-setup.md', 'sqlflow/doc/tutorial/aspara2019/', 'sqlflow/doc/design/design_ant_xgboost.md', 'sqlflow/doc/design/design_workflow.md', 'sqlflow/python/README.md', 'sqlflow/parser/README.md', 'sqlflow/parser/remote/README.md', 'sqlflow/parser/remote/hiveql/README.md', 'sqlflow/scripts/markdown_link_check/README.md', 'sqlflow/doc/design/design_high-available_sqlflow_server.md', 'sqlflow/doc/design/design_support_arbitrary_select.md', 'sqlflow/doc/design/model_zoo.md', 'sqlflow/pkg/sql/codegen/xgboost/README.md']

search_enabled: true
search_tokenizer_separator: /[\s/]+/
Expand Down Expand Up @@ -367,3 +367,8 @@ compress_html:
startings: []
blanklines: false
profile: false

relative_links:
enabled: true
collections: true

2 changes: 1 addition & 1 deletion sqlflow
Submodule sqlflow updated 82 files
+1 −1 README.md
+82 −29 cmd/repl/repl.go
+187 −283 cmd/sqlflowserver/main_test.go
+2 −2 doc/design/design_elasticdl_on_sqlflow.md
+232 −0 doc/design/design_high-available_sqlflow_server.md
+67 −0 doc/design/design_support_arbitrary_select.md
+58 −65 doc/design/design_workflow.md
+1 −1 doc/design/design_xgboost_on_sqlflow.md
+ doc/design/figures/cluster_job_runner.graffle
+ doc/design/figures/cluster_job_runner.png
+190 −0 doc/design/model_zoo.md
+5 −5 doc/quick_start.md
+9 −0 doc/run/repl.md
+1 −1 doc/talk/201812/pred.sql
+1 −1 doc/talk/201812/train.sql
+1 −1 doc/talk/201905/pred.sql
+1 −1 doc/talk/201905/train.sql
+8 −8 doc/tutorial/iris-dnn.md
+0 −0 parser/tidb/tidb_parser.go.txt
+0 −0 parser/tidb/tidb_parser_test.go.txt
+5 −0 pkg/server/proto/sqlflow.proto
+6 −0 pkg/sql/attribute.go
+3 −3 pkg/sql/cmd.go
+14 −5 pkg/sql/codegen.go
+135 −0 pkg/sql/codegen/attribute/attribute.go
+69 −0 pkg/sql/codegen/attribute/attribute_test.go
+101 −0 pkg/sql/codegen/attribute/checker.go
+55 −0 pkg/sql/codegen/attribute/checker_test.go
+40 −6 pkg/sql/codegen/feature_column.go
+8 −3 pkg/sql/codegen/intermediate_representation.go
+264 −0 pkg/sql/codegen/tensorflow/codegen.go
+74 −0 pkg/sql/codegen/tensorflow/codegen_test.go
+82 −0 pkg/sql/codegen/tensorflow/template_pred.go
+86 −0 pkg/sql/codegen/tensorflow/template_train.go
+56 −0 pkg/sql/codegen/xgboost/README.md
+58 −47 pkg/sql/codegen/xgboost/codegen.go
+70 −0 pkg/sql/codegen/xgboost/codegen_analyze.go
+38 −0 pkg/sql/codegen/xgboost/codegen_analyze_test.go
+26 −11 pkg/sql/codegen/xgboost/codegen_test.go
+61 −0 pkg/sql/codegen/xgboost/docgen.go
+25 −0 pkg/sql/codegen/xgboost/docgen_test.go
+72 −0 pkg/sql/codegen/xgboost/template_analyze.go
+82 −0 pkg/sql/codegen/xgboost/template_pred.go
+2 −1 pkg/sql/codegen/xgboost/template_train.go
+26 −17 pkg/sql/codegen_alps.go
+2 −1 pkg/sql/codegen_analyze.go
+54 −40 pkg/sql/codegen_elasticdl.go
+2 −2 pkg/sql/codegen_elasticdl_test.go
+53 −2 pkg/sql/codegen_test.go
+17 −8 pkg/sql/codegen_xgboost.go
+18 −2 pkg/sql/codegen_xgboost_test.go
+4 −0 pkg/sql/create_train_val.go
+4 −0 pkg/sql/database.go
+3 −2 pkg/sql/database_test.go
+82 −20 pkg/sql/executor.go
+1 −1 pkg/sql/executor_test.go
+1 −5 pkg/sql/expression_resolver.go
+354 −0 pkg/sql/feature_derivation.go
+177 −0 pkg/sql/feature_derivation_test.go
+0 −305 pkg/sql/featurederivation.go
+0 −120 pkg/sql/featurederivation_test.go
+90 −5 pkg/sql/ir_generator.go
+123 −0 pkg/sql/ir_generator_test.go
+14 −7 pkg/sql/template_elasticdl.go
+2 −2 pkg/sql/template_tf.go
+1 −2 pkg/sql/template_xgboost.go
+6 −5 pkg/sql/testdata/feature_derivation_case.go
+4 −2 python/sqlflow_submitter/db.py
+5 −4 python/sqlflow_submitter/db_test.py
+36 −5 python/sqlflow_submitter/db_writer/hive.py
+13 −0 python/sqlflow_submitter/tensorflow/__init__.py
+95 −0 python/sqlflow_submitter/tensorflow/estimator_train_pred.py
+46 −0 python/sqlflow_submitter/tensorflow/keras_train_pred.py
+175 −0 python/sqlflow_submitter/tensorflow/predict.py
+117 −0 python/sqlflow_submitter/tensorflow/train.py
+40 −0 python/sqlflow_submitter/tensorflow/train_predict_test.py
+10 −11 scripts/build_docker_image.sh
+1 −1 scripts/deploy.sh
+0 −1 scripts/setup_k8s_env.sh
+1 −1 scripts/test_ipython.sh
+15 −1 scripts/test_maxcompute.sh
+3 −0 scripts/test_units.sh