Add 'docs-site/' from commit 'f90e13306f486282f56d89625399cfac55af9def'

git-subtree-dir: docs-site
git-subtree-mainline: 9f4f98c65ce7b47cb99a88da0b7e9eddc7807708
git-subtree-split: f90e13306f486282f56d89625399cfac55af9def
diff --git a/README.md b/README.md
index 932419e..8ba3758 100644
--- a/README.md
+++ b/README.md
@@ -1,187 +1,3 @@
-# Apache SINGA docs-site (README still work in progress)
+# SINGA-Doc
 
-## Docusaurus Website Local Set Up
-
-This website was created with [Docusaurus](https://docusaurus.io/).
-
-You need at least `node` and `yarn` to get started with setting up a local development environment.
-
-1. Start from the SINGA root directory, install any website specific dependencies by `yarn install`.
-
-```sh
-# Install dependencies
-$ yarn install
-```
-
-2.  Run a development server with hot-reloading to check changes by running `yarn start` in the website directory.
-
-```sh
-# Start the site
-$ yarn run start:website
-```
-
-## Docs for the Docusaurus Site
-
-All the docs are located in the `docs` folder.
-
-"Versioned documents are placed into `website/versioned_docs/version-${version}`, where `${version}` is the version number you supplied the `version` script... If you wish to change the documentation for a past version, you can access the files for that respective version. (https://docusaurus.io/docs/en/versioning.html#storing-files-for-each-version)
-
-"Documents in the `docs` directory will be considered part of version `next` and they are available, for example, at the URL `docs/next/doc1.html`. Documents from the latest version use the URL `docs/doc1.html`" (https://docusaurus.io/docs/en/versioning)
-
-## News for the Docusaurus Site
-
-All the news are located in the `website/blog/` folder.
-
-# Editing Content
-
-## Static assets
-
-Static assets used in documents and blog/news should go into `docs/assets` and `website/blog/assets`
-
-## Editing an existing docs page
-
-Edit docs by navigating to `docs/` and editing the corresponding document:
-
-`docs/doc-to-be-edited.md`
-
-```markdown
----
-id: page-needs-edit
-title: This Doc Needs To Be Edited
----
-
-Edit me...
-```
-
-For more information about docs, click [here](https://docusaurus.io/docs/en/navigation)
-
-## Editing an existing news post
-
-Edit blog posts by navigating to `website/blog` and editing the corresponding post:
-
-`website/blog/post-to-be-edited.md`
-
-```markdown
----
-id: post-needs-edit
-title: This Blog Post Needs To Be Edited
----
-
-Edit me...
-```
-
-For more information about blog posts, click [here](https://docusaurus.io/docs/en/adding-blog)
-
-# Adding Content
-
-## Adding a new docs page to an existing sidebar
-
-1. Create the doc as a new markdown file in `/docs`, example `docs/newly-created-doc.md`:
-
-```md
----
-id: newly-created-doc
-title: This Doc Needs To Be Edited
----
-
-My new content here..
-```
-
-1. Refer to that doc's ID in an existing sidebar in `website/sidebar.json`:
-
-```javascript
-// Add newly-created-doc to the Getting Started category of docs
-{
-  "docs": {
-    "Getting Started": [
-      "quick-start",
-      "newly-created-doc" // new doc here
-    ],
-    ...
-  },
-  ...
-}
-```
-
-For more information about adding new docs, click [here](https://docusaurus.io/docs/en/navigation)
-
-## Adding a new blog/news post
-
-1. Make sure there is a header link to your blog in `website/siteConfig.js`:
-
-`website/siteConfig.js`
-
-```javascript
-headerLinks: [
-    ...
-    { blog: true, label: 'Blog' },
-    ...
-]
-```
-
-2. Create the blog post with the format `YYYY-MM-DD-My-Blog-Post-Title.md` in `website/blog`:
-
-`website/blog/2018-05-21-New-Blog-Post.md`
-
-```markdown
----
-author: Frank Li
-authorURL: https://twitter.com/foobarbaz
-authorFBID: 503283835
-title: New Blog Post
----
-
-Lorem Ipsum...
-```
-
-For more information about blog posts, click [here](https://docusaurus.io/docs/en/adding-blog)
-
-## Adding items to your site's top navigation bar
-
-1. Add links to docs, custom pages or external links by editing the headerLinks field of `website/siteConfig.js`:
-
-`website/siteConfig.js`
-
-```javascript
-{
-  headerLinks: [
-    ...
-    /* you can add docs */
-    { doc: 'my-examples', label: 'Examples' },
-    /* you can add custom pages */
-    { page: 'help', label: 'Help' },
-    /* you can add external links */
-    { href: 'https://github.com/facebook/docusaurus', label: 'GitHub' },
-    ...
-  ],
-  ...
-}
-```
-
-For more information about the navigation bar, click [here](https://docusaurus.io/docs/en/navigation)
-
-## Adding custom pages
-
-1. Docusaurus uses React components to build pages. The components are saved as .js files in `website/pages/en`:
-1. If you want your page to show up in your navigation header, you will need to update `website/siteConfig.js` to add to the `headerLinks` element:
-
-`website/siteConfig.js`
-
-```javascript
-{
-  headerLinks: [
-    ...
-    { page: 'my-new-custom-page', label: 'My New Custom Page' },
-    ...
-  ],
-  ...
-}
-```
-
-For more information about custom pages, click [here](https://docusaurus.io/docs/en/custom-pages).
-
-## Deploy
-
-"To create a static build of your website, run the following script from the `website` directory: `yarn run build # or npm run build`"
-
-`cd` to `/website/build/singa-doc/` to serve the static files
+This repo hosts the documentation files of Apache SINGA.
diff --git a/.editorconfig b/docs-site/.editorconfig
similarity index 100%
rename from .editorconfig
rename to docs-site/.editorconfig
diff --git a/.eslintignore b/docs-site/.eslintignore
similarity index 100%
rename from .eslintignore
rename to docs-site/.eslintignore
diff --git a/.eslintrc b/docs-site/.eslintrc
similarity index 100%
rename from .eslintrc
rename to docs-site/.eslintrc
diff --git a/.gitattributes b/docs-site/.gitattributes
similarity index 100%
rename from .gitattributes
rename to docs-site/.gitattributes
diff --git a/.gitignore b/docs-site/.gitignore
similarity index 100%
rename from .gitignore
rename to docs-site/.gitignore
diff --git a/.prettierignore b/docs-site/.prettierignore
similarity index 100%
rename from .prettierignore
rename to docs-site/.prettierignore
diff --git a/.prettierrc b/docs-site/.prettierrc
similarity index 100%
rename from .prettierrc
rename to docs-site/.prettierrc
diff --git a/docs-site/README.md b/docs-site/README.md
new file mode 100644
index 0000000..932419e
--- /dev/null
+++ b/docs-site/README.md
@@ -0,0 +1,187 @@
+# Apache SINGA docs-site (README still work in progress)
+
+## Docusaurus Website Local Set Up
+
+This website was created with [Docusaurus](https://docusaurus.io/).
+
+You need at least `node` and `yarn` to get started with setting up a local development environment.
+
+1. Start from the SINGA root directory, install any website specific dependencies by `yarn install`.
+
+```sh
+# Install dependencies
+$ yarn install
+```
+
+2.  Run a development server with hot-reloading to check changes by running `yarn start` in the website directory.
+
+```sh
+# Start the site
+$ yarn run start:website
+```
+
+## Docs for the Docusaurus Site
+
+All the docs are located in the `docs` folder.
+
+"Versioned documents are placed into `website/versioned_docs/version-${version}`, where `${version}` is the version number you supplied the `version` script... If you wish to change the documentation for a past version, you can access the files for that respective version. (https://docusaurus.io/docs/en/versioning.html#storing-files-for-each-version)
+
+"Documents in the `docs` directory will be considered part of version `next` and they are available, for example, at the URL `docs/next/doc1.html`. Documents from the latest version use the URL `docs/doc1.html`" (https://docusaurus.io/docs/en/versioning)
+
+## News for the Docusaurus Site
+
+All the news are located in the `website/blog/` folder.
+
+# Editing Content
+
+## Static assets
+
+Static assets used in documents and blog/news should go into `docs/assets` and `website/blog/assets`
+
+## Editing an existing docs page
+
+Edit docs by navigating to `docs/` and editing the corresponding document:
+
+`docs/doc-to-be-edited.md`
+
+```markdown
+---
+id: page-needs-edit
+title: This Doc Needs To Be Edited
+---
+
+Edit me...
+```
+
+For more information about docs, click [here](https://docusaurus.io/docs/en/navigation)
+
+## Editing an existing news post
+
+Edit blog posts by navigating to `website/blog` and editing the corresponding post:
+
+`website/blog/post-to-be-edited.md`
+
+```markdown
+---
+id: post-needs-edit
+title: This Blog Post Needs To Be Edited
+---
+
+Edit me...
+```
+
+For more information about blog posts, click [here](https://docusaurus.io/docs/en/adding-blog)
+
+# Adding Content
+
+## Adding a new docs page to an existing sidebar
+
+1. Create the doc as a new markdown file in `/docs`, example `docs/newly-created-doc.md`:
+
+```md
+---
+id: newly-created-doc
+title: This Doc Needs To Be Edited
+---
+
+My new content here..
+```
+
+1. Refer to that doc's ID in an existing sidebar in `website/sidebar.json`:
+
+```javascript
+// Add newly-created-doc to the Getting Started category of docs
+{
+  "docs": {
+    "Getting Started": [
+      "quick-start",
+      "newly-created-doc" // new doc here
+    ],
+    ...
+  },
+  ...
+}
+```
+
+For more information about adding new docs, click [here](https://docusaurus.io/docs/en/navigation)
+
+## Adding a new blog/news post
+
+1. Make sure there is a header link to your blog in `website/siteConfig.js`:
+
+`website/siteConfig.js`
+
+```javascript
+headerLinks: [
+    ...
+    { blog: true, label: 'Blog' },
+    ...
+]
+```
+
+2. Create the blog post with the format `YYYY-MM-DD-My-Blog-Post-Title.md` in `website/blog`:
+
+`website/blog/2018-05-21-New-Blog-Post.md`
+
+```markdown
+---
+author: Frank Li
+authorURL: https://twitter.com/foobarbaz
+authorFBID: 503283835
+title: New Blog Post
+---
+
+Lorem Ipsum...
+```
+
+For more information about blog posts, click [here](https://docusaurus.io/docs/en/adding-blog)
+
+## Adding items to your site's top navigation bar
+
+1. Add links to docs, custom pages or external links by editing the headerLinks field of `website/siteConfig.js`:
+
+`website/siteConfig.js`
+
+```javascript
+{
+  headerLinks: [
+    ...
+    /* you can add docs */
+    { doc: 'my-examples', label: 'Examples' },
+    /* you can add custom pages */
+    { page: 'help', label: 'Help' },
+    /* you can add external links */
+    { href: 'https://github.com/facebook/docusaurus', label: 'GitHub' },
+    ...
+  ],
+  ...
+}
+```
+
+For more information about the navigation bar, click [here](https://docusaurus.io/docs/en/navigation)
+
+## Adding custom pages
+
+1. Docusaurus uses React components to build pages. The components are saved as .js files in `website/pages/en`:
+1. If you want your page to show up in your navigation header, you will need to update `website/siteConfig.js` to add to the `headerLinks` element:
+
+`website/siteConfig.js`
+
+```javascript
+{
+  headerLinks: [
+    ...
+    { page: 'my-new-custom-page', label: 'My New Custom Page' },
+    ...
+  ],
+  ...
+}
+```
+
+For more information about custom pages, click [here](https://docusaurus.io/docs/en/custom-pages).
+
+## Deploy
+
+"To create a static build of your website, run the following script from the `website` directory: `yarn run build # or npm run build`"
+
+`cd` to `/website/build/singa-doc/` to serve the static files
diff --git a/docs/assets/benchmark.png b/docs-site/docs/assets/benchmark.png
similarity index 100%
rename from docs/assets/benchmark.png
rename to docs-site/docs/assets/benchmark.png
Binary files differ
diff --git a/docs/assets/singav1-sw.png b/docs-site/docs/assets/singav1-sw.png
similarity index 100%
rename from docs/assets/singav1-sw.png
rename to docs-site/docs/assets/singav1-sw.png
Binary files differ
diff --git a/docs/autograd.md b/docs-site/docs/autograd.md
similarity index 100%
rename from docs/autograd.md
rename to docs-site/docs/autograd.md
diff --git a/docs/benchmark-train.md b/docs-site/docs/benchmark-train.md
similarity index 100%
rename from docs/benchmark-train.md
rename to docs-site/docs/benchmark-train.md
diff --git a/docs/build.md b/docs-site/docs/build.md
similarity index 100%
rename from docs/build.md
rename to docs-site/docs/build.md
diff --git a/docs/contribute-code.md b/docs-site/docs/contribute-code.md
similarity index 100%
rename from docs/contribute-code.md
rename to docs-site/docs/contribute-code.md
diff --git a/docs/contribute-docs.md b/docs-site/docs/contribute-docs.md
similarity index 100%
rename from docs/contribute-docs.md
rename to docs-site/docs/contribute-docs.md
diff --git a/docs/device.md b/docs-site/docs/device.md
similarity index 100%
rename from docs/device.md
rename to docs-site/docs/device.md
diff --git a/docs/download-singa.md b/docs-site/docs/download-singa.md
similarity index 100%
rename from docs/download-singa.md
rename to docs-site/docs/download-singa.md
diff --git a/docs/history-singa.md b/docs-site/docs/history-singa.md
similarity index 100%
rename from docs/history-singa.md
rename to docs-site/docs/history-singa.md
diff --git a/docs/how-to-release.md b/docs-site/docs/how-to-release.md
similarity index 100%
rename from docs/how-to-release.md
rename to docs-site/docs/how-to-release.md
diff --git a/docs/initializer.md b/docs-site/docs/initializer.md
similarity index 100%
rename from docs/initializer.md
rename to docs-site/docs/initializer.md
diff --git a/docs/install-win.md b/docs-site/docs/install-win.md
similarity index 100%
rename from docs/install-win.md
rename to docs-site/docs/install-win.md
diff --git a/docs/installation.md b/docs-site/docs/installation.md
similarity index 100%
rename from docs/installation.md
rename to docs-site/docs/installation.md
diff --git a/docs/issue-tracking.md b/docs-site/docs/issue-tracking.md
similarity index 100%
rename from docs/issue-tracking.md
rename to docs-site/docs/issue-tracking.md
diff --git a/docs/layer.md b/docs-site/docs/layer.md
similarity index 100%
rename from docs/layer.md
rename to docs-site/docs/layer.md
diff --git a/docs/loss.md b/docs-site/docs/loss.md
similarity index 100%
rename from docs/loss.md
rename to docs-site/docs/loss.md
diff --git a/docs/mail-lists.md b/docs-site/docs/mail-lists.md
similarity index 100%
rename from docs/mail-lists.md
rename to docs-site/docs/mail-lists.md
diff --git a/docs/metric.md b/docs-site/docs/metric.md
similarity index 100%
rename from docs/metric.md
rename to docs-site/docs/metric.md
diff --git a/docs/model-zoo-char-rnn.md b/docs-site/docs/model-zoo-char-rnn.md
similarity index 100%
rename from docs/model-zoo-char-rnn.md
rename to docs-site/docs/model-zoo-char-rnn.md
diff --git a/docs/model-zoo-cnn-cifar10.md b/docs-site/docs/model-zoo-cnn-cifar10.md
similarity index 100%
rename from docs/model-zoo-cnn-cifar10.md
rename to docs-site/docs/model-zoo-cnn-cifar10.md
diff --git a/docs/model-zoo-imagenet-alexnet.md b/docs-site/docs/model-zoo-imagenet-alexnet.md
similarity index 100%
rename from docs/model-zoo-imagenet-alexnet.md
rename to docs-site/docs/model-zoo-imagenet-alexnet.md
diff --git a/docs/model-zoo-imagenet-densenet.md b/docs-site/docs/model-zoo-imagenet-densenet.md
similarity index 100%
rename from docs/model-zoo-imagenet-densenet.md
rename to docs-site/docs/model-zoo-imagenet-densenet.md
diff --git a/docs/model-zoo-imagenet-googlenet.md b/docs-site/docs/model-zoo-imagenet-googlenet.md
similarity index 100%
rename from docs/model-zoo-imagenet-googlenet.md
rename to docs-site/docs/model-zoo-imagenet-googlenet.md
diff --git a/docs/model-zoo-imagenet-inception.md b/docs-site/docs/model-zoo-imagenet-inception.md
similarity index 100%
rename from docs/model-zoo-imagenet-inception.md
rename to docs-site/docs/model-zoo-imagenet-inception.md
diff --git a/docs/model-zoo-imagenet-resnet.md b/docs-site/docs/model-zoo-imagenet-resnet.md
similarity index 100%
rename from docs/model-zoo-imagenet-resnet.md
rename to docs-site/docs/model-zoo-imagenet-resnet.md
diff --git a/docs/model-zoo-imagenet-vgg.md b/docs-site/docs/model-zoo-imagenet-vgg.md
similarity index 100%
rename from docs/model-zoo-imagenet-vgg.md
rename to docs-site/docs/model-zoo-imagenet-vgg.md
diff --git a/docs/model-zoo-rbm-mnist.md b/docs-site/docs/model-zoo-rbm-mnist.md
similarity index 100%
rename from docs/model-zoo-rbm-mnist.md
rename to docs-site/docs/model-zoo-rbm-mnist.md
diff --git a/docs/onnx.md b/docs-site/docs/onnx.md
similarity index 100%
rename from docs/onnx.md
rename to docs-site/docs/onnx.md
diff --git a/docs/optimizer.md b/docs-site/docs/optimizer.md
similarity index 100%
rename from docs/optimizer.md
rename to docs-site/docs/optimizer.md
diff --git a/docs/releases/RELEASE_NOTES_0.1.0.md b/docs-site/docs/releases/RELEASE_NOTES_0.1.0.md
similarity index 100%
rename from docs/releases/RELEASE_NOTES_0.1.0.md
rename to docs-site/docs/releases/RELEASE_NOTES_0.1.0.md
diff --git a/docs/releases/RELEASE_NOTES_0.2.0.md b/docs-site/docs/releases/RELEASE_NOTES_0.2.0.md
similarity index 100%
rename from docs/releases/RELEASE_NOTES_0.2.0.md
rename to docs-site/docs/releases/RELEASE_NOTES_0.2.0.md
diff --git a/docs/releases/RELEASE_NOTES_0.3.0.md b/docs-site/docs/releases/RELEASE_NOTES_0.3.0.md
similarity index 100%
rename from docs/releases/RELEASE_NOTES_0.3.0.md
rename to docs-site/docs/releases/RELEASE_NOTES_0.3.0.md
diff --git a/docs/releases/RELEASE_NOTES_1.0.0.md b/docs-site/docs/releases/RELEASE_NOTES_1.0.0.md
similarity index 100%
rename from docs/releases/RELEASE_NOTES_1.0.0.md
rename to docs-site/docs/releases/RELEASE_NOTES_1.0.0.md
diff --git a/docs/releases/RELEASE_NOTES_1.1.0.md b/docs-site/docs/releases/RELEASE_NOTES_1.1.0.md
similarity index 100%
rename from docs/releases/RELEASE_NOTES_1.1.0.md
rename to docs-site/docs/releases/RELEASE_NOTES_1.1.0.md
diff --git a/docs/releases/RELEASE_NOTES_1.2.0.md b/docs-site/docs/releases/RELEASE_NOTES_1.2.0.md
similarity index 100%
rename from docs/releases/RELEASE_NOTES_1.2.0.md
rename to docs-site/docs/releases/RELEASE_NOTES_1.2.0.md
diff --git a/docs/releases/RELEASE_NOTES_2.0.0.md b/docs-site/docs/releases/RELEASE_NOTES_2.0.0.md
similarity index 100%
rename from docs/releases/RELEASE_NOTES_2.0.0.md
rename to docs-site/docs/releases/RELEASE_NOTES_2.0.0.md
diff --git a/docs/security.md b/docs-site/docs/security.md
similarity index 100%
rename from docs/security.md
rename to docs-site/docs/security.md
diff --git a/docs/software-stack.md b/docs-site/docs/software-stack.md
similarity index 100%
rename from docs/software-stack.md
rename to docs-site/docs/software-stack.md
diff --git a/docs/source-repository.md b/docs-site/docs/source-repository.md
similarity index 100%
rename from docs/source-repository.md
rename to docs-site/docs/source-repository.md
diff --git a/docs/team-list.md b/docs-site/docs/team-list.md
similarity index 100%
rename from docs/team-list.md
rename to docs-site/docs/team-list.md
diff --git a/docs/tensor.md b/docs-site/docs/tensor.md
similarity index 100%
rename from docs/tensor.md
rename to docs-site/docs/tensor.md
diff --git a/package.json b/docs-site/package.json
similarity index 100%
rename from package.json
rename to docs-site/package.json
diff --git a/website/blog/2017-02-12-v1-1-0.md b/docs-site/website/blog/2017-02-12-v1-1-0.md
similarity index 100%
rename from website/blog/2017-02-12-v1-1-0.md
rename to docs-site/website/blog/2017-02-12-v1-1-0.md
diff --git a/website/blog/2018-06-09-v1-2-0.md b/docs-site/website/blog/2018-06-09-v1-2-0.md
similarity index 100%
rename from website/blog/2018-06-09-v1-2-0.md
rename to docs-site/website/blog/2018-06-09-v1-2-0.md
diff --git a/website/blog/2018-07-16-DIBRIS.md b/docs-site/website/blog/2018-07-16-DIBRIS.md
similarity index 100%
rename from website/blog/2018-07-16-DIBRIS.md
rename to docs-site/website/blog/2018-07-16-DIBRIS.md
diff --git a/website/blog/2018-12-14-DISI.md b/docs-site/website/blog/2018-12-14-DISI.md
similarity index 100%
rename from website/blog/2018-12-14-DISI.md
rename to docs-site/website/blog/2018-12-14-DISI.md
diff --git a/website/blog/2019-04-20-v2-0-0.md b/docs-site/website/blog/2019-04-20-v2-0-0.md
similarity index 100%
rename from website/blog/2019-04-20-v2-0-0.md
rename to docs-site/website/blog/2019-04-20-v2-0-0.md
diff --git a/website/blog/2019-05-05-eu-fossa.md b/docs-site/website/blog/2019-05-05-eu-fossa.md
similarity index 100%
rename from website/blog/2019-05-05-eu-fossa.md
rename to docs-site/website/blog/2019-05-05-eu-fossa.md
diff --git a/website/blog/2019-06-27-google-summer-of-code.md b/docs-site/website/blog/2019-06-27-google-summer-of-code.md
similarity index 100%
rename from website/blog/2019-06-27-google-summer-of-code.md
rename to docs-site/website/blog/2019-06-27-google-summer-of-code.md
diff --git a/website/blog/2019-08-16-imda.md b/docs-site/website/blog/2019-08-16-imda.md
similarity index 100%
rename from website/blog/2019-08-16-imda.md
rename to docs-site/website/blog/2019-08-16-imda.md
diff --git a/website/blog/2019-10-03-foodlg-with-singa.md b/docs-site/website/blog/2019-10-03-foodlg-with-singa.md
similarity index 100%
rename from website/blog/2019-10-03-foodlg-with-singa.md
rename to docs-site/website/blog/2019-10-03-foodlg-with-singa.md
diff --git a/website/blog/2019-10-16-graduate-tlp.md b/docs-site/website/blog/2019-10-16-graduate-tlp.md
similarity index 100%
rename from website/blog/2019-10-16-graduate-tlp.md
rename to docs-site/website/blog/2019-10-16-graduate-tlp.md
diff --git a/website/blog/assets/imda2019_1.png b/docs-site/website/blog/assets/imda2019_1.png
similarity index 100%
rename from website/blog/assets/imda2019_1.png
rename to docs-site/website/blog/assets/imda2019_1.png
Binary files differ
diff --git a/website/blog/assets/imda2019_2.png b/docs-site/website/blog/assets/imda2019_2.png
similarity index 100%
rename from website/blog/assets/imda2019_2.png
rename to docs-site/website/blog/assets/imda2019_2.png
Binary files differ
diff --git a/website/core/Footer.js b/docs-site/website/core/Footer.js
similarity index 100%
rename from website/core/Footer.js
rename to docs-site/website/core/Footer.js
diff --git a/website/core/Showcase.js b/docs-site/website/core/Showcase.js
similarity index 100%
rename from website/core/Showcase.js
rename to docs-site/website/core/Showcase.js
diff --git a/website/data/users.js b/docs-site/website/data/users.js
similarity index 100%
rename from website/data/users.js
rename to docs-site/website/data/users.js
diff --git a/website/oldversions.json b/docs-site/website/oldversions.json
similarity index 100%
rename from website/oldversions.json
rename to docs-site/website/oldversions.json
diff --git a/website/package.json b/docs-site/website/package.json
similarity index 100%
rename from website/package.json
rename to docs-site/website/package.json
diff --git a/website/pages/en/404.js b/docs-site/website/pages/en/404.js
similarity index 100%
rename from website/pages/en/404.js
rename to docs-site/website/pages/en/404.js
diff --git a/website/pages/en/help.js b/docs-site/website/pages/en/help.js
similarity index 100%
rename from website/pages/en/help.js
rename to docs-site/website/pages/en/help.js
diff --git a/website/pages/en/index.js b/docs-site/website/pages/en/index.js
similarity index 100%
rename from website/pages/en/index.js
rename to docs-site/website/pages/en/index.js
diff --git a/website/pages/en/users.js b/docs-site/website/pages/en/users.js
similarity index 100%
rename from website/pages/en/users.js
rename to docs-site/website/pages/en/users.js
diff --git a/website/pages/en/versions.js b/docs-site/website/pages/en/versions.js
similarity index 100%
rename from website/pages/en/versions.js
rename to docs-site/website/pages/en/versions.js
diff --git a/website/sidebars.json b/docs-site/website/sidebars.json
similarity index 100%
rename from website/sidebars.json
rename to docs-site/website/sidebars.json
diff --git a/website/siteConfig.js b/docs-site/website/siteConfig.js
similarity index 100%
rename from website/siteConfig.js
rename to docs-site/website/siteConfig.js
diff --git a/website/static/css/custom.css b/docs-site/website/static/css/custom.css
similarity index 100%
rename from website/static/css/custom.css
rename to docs-site/website/static/css/custom.css
diff --git a/website/static/img/asf_logo_wide.svg b/docs-site/website/static/img/asf_logo_wide.svg
similarity index 100%
rename from website/static/img/asf_logo_wide.svg
rename to docs-site/website/static/img/asf_logo_wide.svg
diff --git a/website/static/img/favicon.ico b/docs-site/website/static/img/favicon.ico
similarity index 100%
rename from website/static/img/favicon.ico
rename to docs-site/website/static/img/favicon.ico
Binary files differ
diff --git a/website/static/img/ocean-by-ricardo-resende-unsplash-webscaled.jpeg b/docs-site/website/static/img/ocean-by-ricardo-resende-unsplash-webscaled.jpeg
similarity index 100%
rename from website/static/img/ocean-by-ricardo-resende-unsplash-webscaled.jpeg
rename to docs-site/website/static/img/ocean-by-ricardo-resende-unsplash-webscaled.jpeg
Binary files differ
diff --git a/website/static/img/overview.png b/docs-site/website/static/img/overview.png
similarity index 100%
rename from website/static/img/overview.png
rename to docs-site/website/static/img/overview.png
Binary files differ
diff --git a/website/static/img/sg-botanic-coleen-rivas-unsplash.jpg b/docs-site/website/static/img/sg-botanic-coleen-rivas-unsplash.jpg
similarity index 100%
rename from website/static/img/sg-botanic-coleen-rivas-unsplash.jpg
rename to docs-site/website/static/img/sg-botanic-coleen-rivas-unsplash.jpg
Binary files differ
diff --git a/website/static/img/singa-logo-square.png b/docs-site/website/static/img/singa-logo-square.png
similarity index 100%
rename from website/static/img/singa-logo-square.png
rename to docs-site/website/static/img/singa-logo-square.png
Binary files differ
diff --git a/website/static/img/singa-logo.png b/docs-site/website/static/img/singa-logo.png
similarity index 100%
rename from website/static/img/singa-logo.png
rename to docs-site/website/static/img/singa-logo.png
Binary files differ
diff --git a/website/static/img/singa.png b/docs-site/website/static/img/singa.png
similarity index 100%
rename from website/static/img/singa.png
rename to docs-site/website/static/img/singa.png
Binary files differ
diff --git a/website/static/img/singa_twitter_banner.jpeg b/docs-site/website/static/img/singa_twitter_banner.jpeg
similarity index 100%
rename from website/static/img/singa_twitter_banner.jpeg
rename to docs-site/website/static/img/singa_twitter_banner.jpeg
Binary files differ
diff --git a/website/static/img/singav1-sw.png b/docs-site/website/static/img/singav1-sw.png
similarity index 100%
rename from website/static/img/singav1-sw.png
rename to docs-site/website/static/img/singav1-sw.png
Binary files differ
diff --git a/website/static/img/unsplash-ocean.jpg b/docs-site/website/static/img/unsplash-ocean.jpg
similarity index 100%
rename from website/static/img/unsplash-ocean.jpg
rename to docs-site/website/static/img/unsplash-ocean.jpg
Binary files differ
diff --git a/website/static/img/users/CBRE.jpg b/docs-site/website/static/img/users/CBRE.jpg
similarity index 100%
rename from website/static/img/users/CBRE.jpg
rename to docs-site/website/static/img/users/CBRE.jpg
Binary files differ
diff --git a/website/static/img/users/NetEase.jpg b/docs-site/website/static/img/users/NetEase.jpg
similarity index 100%
rename from website/static/img/users/NetEase.jpg
rename to docs-site/website/static/img/users/NetEase.jpg
Binary files differ
diff --git a/website/static/img/users/TTSH_Logo.gif b/docs-site/website/static/img/users/TTSH_Logo.gif
similarity index 100%
rename from website/static/img/users/TTSH_Logo.gif
rename to docs-site/website/static/img/users/TTSH_Logo.gif
Binary files differ
diff --git a/website/static/img/users/carnegietech.png b/docs-site/website/static/img/users/carnegietech.png
similarity index 100%
rename from website/static/img/users/carnegietech.png
rename to docs-site/website/static/img/users/carnegietech.png
Binary files differ
diff --git a/website/static/img/users/citigroup-logo.jpg b/docs-site/website/static/img/users/citigroup-logo.jpg
similarity index 100%
rename from website/static/img/users/citigroup-logo.jpg
rename to docs-site/website/static/img/users/citigroup-logo.jpg
Binary files differ
diff --git a/website/static/img/users/foodlg.png b/docs-site/website/static/img/users/foodlg.png
similarity index 100%
rename from website/static/img/users/foodlg.png
rename to docs-site/website/static/img/users/foodlg.png
Binary files differ
diff --git a/website/static/img/users/juronghealth.png b/docs-site/website/static/img/users/juronghealth.png
similarity index 100%
rename from website/static/img/users/juronghealth.png
rename to docs-site/website/static/img/users/juronghealth.png
Binary files differ
diff --git a/website/static/img/users/medilot.svg b/docs-site/website/static/img/users/medilot.svg
similarity index 100%
rename from website/static/img/users/medilot.svg
rename to docs-site/website/static/img/users/medilot.svg
diff --git a/website/static/img/users/mzhtech.png b/docs-site/website/static/img/users/mzhtech.png
similarity index 100%
rename from website/static/img/users/mzhtech.png
rename to docs-site/website/static/img/users/mzhtech.png
Binary files differ
diff --git a/website/static/img/users/noblis.png b/docs-site/website/static/img/users/noblis.png
similarity index 100%
rename from website/static/img/users/noblis.png
rename to docs-site/website/static/img/users/noblis.png
Binary files differ
diff --git a/website/static/img/users/nuhlogo.jpg b/docs-site/website/static/img/users/nuhlogo.jpg
similarity index 100%
rename from website/static/img/users/nuhlogo.jpg
rename to docs-site/website/static/img/users/nuhlogo.jpg
Binary files differ
diff --git a/website/static/img/users/sgh.png b/docs-site/website/static/img/users/sgh.png
similarity index 100%
rename from website/static/img/users/sgh.png
rename to docs-site/website/static/img/users/sgh.png
Binary files differ
diff --git a/website/static/img/users/shentilium.png b/docs-site/website/static/img/users/shentilium.png
similarity index 100%
rename from website/static/img/users/shentilium.png
rename to docs-site/website/static/img/users/shentilium.png
Binary files differ
diff --git a/website/static/img/users/yzBigData.png b/docs-site/website/static/img/users/yzBigData.png
similarity index 100%
rename from website/static/img/users/yzBigData.png
rename to docs-site/website/static/img/users/yzBigData.png
Binary files differ
diff --git a/website/versioned_docs/version-2.0.0/autograd.md b/docs-site/website/versioned_docs/version-2.0.0/autograd.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/autograd.md
rename to docs-site/website/versioned_docs/version-2.0.0/autograd.md
diff --git a/website/versioned_docs/version-2.0.0/benchmark-train.md b/docs-site/website/versioned_docs/version-2.0.0/benchmark-train.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/benchmark-train.md
rename to docs-site/website/versioned_docs/version-2.0.0/benchmark-train.md
diff --git a/website/versioned_docs/version-2.0.0/build.md b/docs-site/website/versioned_docs/version-2.0.0/build.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/build.md
rename to docs-site/website/versioned_docs/version-2.0.0/build.md
diff --git a/website/versioned_docs/version-2.0.0/contribute-code.md b/docs-site/website/versioned_docs/version-2.0.0/contribute-code.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/contribute-code.md
rename to docs-site/website/versioned_docs/version-2.0.0/contribute-code.md
diff --git a/website/versioned_docs/version-2.0.0/contribute-docs.md b/docs-site/website/versioned_docs/version-2.0.0/contribute-docs.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/contribute-docs.md
rename to docs-site/website/versioned_docs/version-2.0.0/contribute-docs.md
diff --git a/website/versioned_docs/version-2.0.0/device.md b/docs-site/website/versioned_docs/version-2.0.0/device.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/device.md
rename to docs-site/website/versioned_docs/version-2.0.0/device.md
diff --git a/website/versioned_docs/version-2.0.0/download-singa.md b/docs-site/website/versioned_docs/version-2.0.0/download-singa.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/download-singa.md
rename to docs-site/website/versioned_docs/version-2.0.0/download-singa.md
diff --git a/website/versioned_docs/version-2.0.0/history-singa.md b/docs-site/website/versioned_docs/version-2.0.0/history-singa.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/history-singa.md
rename to docs-site/website/versioned_docs/version-2.0.0/history-singa.md
diff --git a/website/versioned_docs/version-2.0.0/how-to-release.md b/docs-site/website/versioned_docs/version-2.0.0/how-to-release.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/how-to-release.md
rename to docs-site/website/versioned_docs/version-2.0.0/how-to-release.md
diff --git a/website/versioned_docs/version-2.0.0/initializer.md b/docs-site/website/versioned_docs/version-2.0.0/initializer.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/initializer.md
rename to docs-site/website/versioned_docs/version-2.0.0/initializer.md
diff --git a/website/versioned_docs/version-2.0.0/install-win.md b/docs-site/website/versioned_docs/version-2.0.0/install-win.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/install-win.md
rename to docs-site/website/versioned_docs/version-2.0.0/install-win.md
diff --git a/website/versioned_docs/version-2.0.0/installation.md b/docs-site/website/versioned_docs/version-2.0.0/installation.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/installation.md
rename to docs-site/website/versioned_docs/version-2.0.0/installation.md
diff --git a/website/versioned_docs/version-2.0.0/issue-tracking.md b/docs-site/website/versioned_docs/version-2.0.0/issue-tracking.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/issue-tracking.md
rename to docs-site/website/versioned_docs/version-2.0.0/issue-tracking.md
diff --git a/website/versioned_docs/version-2.0.0/layer.md b/docs-site/website/versioned_docs/version-2.0.0/layer.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/layer.md
rename to docs-site/website/versioned_docs/version-2.0.0/layer.md
diff --git a/website/versioned_docs/version-2.0.0/loss.md b/docs-site/website/versioned_docs/version-2.0.0/loss.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/loss.md
rename to docs-site/website/versioned_docs/version-2.0.0/loss.md
diff --git a/website/versioned_docs/version-2.0.0/mail-lists.md b/docs-site/website/versioned_docs/version-2.0.0/mail-lists.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/mail-lists.md
rename to docs-site/website/versioned_docs/version-2.0.0/mail-lists.md
diff --git a/website/versioned_docs/version-2.0.0/metric.md b/docs-site/website/versioned_docs/version-2.0.0/metric.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/metric.md
rename to docs-site/website/versioned_docs/version-2.0.0/metric.md
diff --git a/website/versioned_docs/version-2.0.0/model-zoo-char-rnn.md b/docs-site/website/versioned_docs/version-2.0.0/model-zoo-char-rnn.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/model-zoo-char-rnn.md
rename to docs-site/website/versioned_docs/version-2.0.0/model-zoo-char-rnn.md
diff --git a/website/versioned_docs/version-2.0.0/model-zoo-cnn-cifar10.md b/docs-site/website/versioned_docs/version-2.0.0/model-zoo-cnn-cifar10.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/model-zoo-cnn-cifar10.md
rename to docs-site/website/versioned_docs/version-2.0.0/model-zoo-cnn-cifar10.md
diff --git a/website/versioned_docs/version-2.0.0/model-zoo-imagenet-alexnet.md b/docs-site/website/versioned_docs/version-2.0.0/model-zoo-imagenet-alexnet.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/model-zoo-imagenet-alexnet.md
rename to docs-site/website/versioned_docs/version-2.0.0/model-zoo-imagenet-alexnet.md
diff --git a/website/versioned_docs/version-2.0.0/model-zoo-imagenet-densenet.md b/docs-site/website/versioned_docs/version-2.0.0/model-zoo-imagenet-densenet.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/model-zoo-imagenet-densenet.md
rename to docs-site/website/versioned_docs/version-2.0.0/model-zoo-imagenet-densenet.md
diff --git a/website/versioned_docs/version-2.0.0/model-zoo-imagenet-googlenet.md b/docs-site/website/versioned_docs/version-2.0.0/model-zoo-imagenet-googlenet.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/model-zoo-imagenet-googlenet.md
rename to docs-site/website/versioned_docs/version-2.0.0/model-zoo-imagenet-googlenet.md
diff --git a/website/versioned_docs/version-2.0.0/model-zoo-imagenet-inception.md b/docs-site/website/versioned_docs/version-2.0.0/model-zoo-imagenet-inception.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/model-zoo-imagenet-inception.md
rename to docs-site/website/versioned_docs/version-2.0.0/model-zoo-imagenet-inception.md
diff --git a/website/versioned_docs/version-2.0.0/model-zoo-imagenet-resnet.md b/docs-site/website/versioned_docs/version-2.0.0/model-zoo-imagenet-resnet.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/model-zoo-imagenet-resnet.md
rename to docs-site/website/versioned_docs/version-2.0.0/model-zoo-imagenet-resnet.md
diff --git a/website/versioned_docs/version-2.0.0/model-zoo-imagenet-vgg.md b/docs-site/website/versioned_docs/version-2.0.0/model-zoo-imagenet-vgg.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/model-zoo-imagenet-vgg.md
rename to docs-site/website/versioned_docs/version-2.0.0/model-zoo-imagenet-vgg.md
diff --git a/website/versioned_docs/version-2.0.0/model-zoo-rbm-mnist.md b/docs-site/website/versioned_docs/version-2.0.0/model-zoo-rbm-mnist.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/model-zoo-rbm-mnist.md
rename to docs-site/website/versioned_docs/version-2.0.0/model-zoo-rbm-mnist.md
diff --git a/website/versioned_docs/version-2.0.0/onnx.md b/docs-site/website/versioned_docs/version-2.0.0/onnx.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/onnx.md
rename to docs-site/website/versioned_docs/version-2.0.0/onnx.md
diff --git a/website/versioned_docs/version-2.0.0/optimizer.md b/docs-site/website/versioned_docs/version-2.0.0/optimizer.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/optimizer.md
rename to docs-site/website/versioned_docs/version-2.0.0/optimizer.md
diff --git a/website/versioned_docs/version-2.0.0/releases/RELEASE_NOTES_0.1.0.md b/docs-site/website/versioned_docs/version-2.0.0/releases/RELEASE_NOTES_0.1.0.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/releases/RELEASE_NOTES_0.1.0.md
rename to docs-site/website/versioned_docs/version-2.0.0/releases/RELEASE_NOTES_0.1.0.md
diff --git a/website/versioned_docs/version-2.0.0/releases/RELEASE_NOTES_0.2.0.md b/docs-site/website/versioned_docs/version-2.0.0/releases/RELEASE_NOTES_0.2.0.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/releases/RELEASE_NOTES_0.2.0.md
rename to docs-site/website/versioned_docs/version-2.0.0/releases/RELEASE_NOTES_0.2.0.md
diff --git a/website/versioned_docs/version-2.0.0/releases/RELEASE_NOTES_0.3.0.md b/docs-site/website/versioned_docs/version-2.0.0/releases/RELEASE_NOTES_0.3.0.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/releases/RELEASE_NOTES_0.3.0.md
rename to docs-site/website/versioned_docs/version-2.0.0/releases/RELEASE_NOTES_0.3.0.md
diff --git a/website/versioned_docs/version-2.0.0/releases/RELEASE_NOTES_1.0.0.md b/docs-site/website/versioned_docs/version-2.0.0/releases/RELEASE_NOTES_1.0.0.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/releases/RELEASE_NOTES_1.0.0.md
rename to docs-site/website/versioned_docs/version-2.0.0/releases/RELEASE_NOTES_1.0.0.md
diff --git a/website/versioned_docs/version-2.0.0/releases/RELEASE_NOTES_1.1.0.md b/docs-site/website/versioned_docs/version-2.0.0/releases/RELEASE_NOTES_1.1.0.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/releases/RELEASE_NOTES_1.1.0.md
rename to docs-site/website/versioned_docs/version-2.0.0/releases/RELEASE_NOTES_1.1.0.md
diff --git a/website/versioned_docs/version-2.0.0/releases/RELEASE_NOTES_1.2.0.md b/docs-site/website/versioned_docs/version-2.0.0/releases/RELEASE_NOTES_1.2.0.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/releases/RELEASE_NOTES_1.2.0.md
rename to docs-site/website/versioned_docs/version-2.0.0/releases/RELEASE_NOTES_1.2.0.md
diff --git a/website/versioned_docs/version-2.0.0/releases/RELEASE_NOTES_2.0.0.md b/docs-site/website/versioned_docs/version-2.0.0/releases/RELEASE_NOTES_2.0.0.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/releases/RELEASE_NOTES_2.0.0.md
rename to docs-site/website/versioned_docs/version-2.0.0/releases/RELEASE_NOTES_2.0.0.md
diff --git a/website/versioned_docs/version-2.0.0/security.md b/docs-site/website/versioned_docs/version-2.0.0/security.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/security.md
rename to docs-site/website/versioned_docs/version-2.0.0/security.md
diff --git a/website/versioned_docs/version-2.0.0/software-stack.md b/docs-site/website/versioned_docs/version-2.0.0/software-stack.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/software-stack.md
rename to docs-site/website/versioned_docs/version-2.0.0/software-stack.md
diff --git a/website/versioned_docs/version-2.0.0/source-repository.md b/docs-site/website/versioned_docs/version-2.0.0/source-repository.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/source-repository.md
rename to docs-site/website/versioned_docs/version-2.0.0/source-repository.md
diff --git a/website/versioned_docs/version-2.0.0/team-list.md b/docs-site/website/versioned_docs/version-2.0.0/team-list.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/team-list.md
rename to docs-site/website/versioned_docs/version-2.0.0/team-list.md
diff --git a/website/versioned_docs/version-2.0.0/tensor.md b/docs-site/website/versioned_docs/version-2.0.0/tensor.md
similarity index 100%
rename from website/versioned_docs/version-2.0.0/tensor.md
rename to docs-site/website/versioned_docs/version-2.0.0/tensor.md
diff --git a/website/versioned_sidebars/version-2.0.0-sidebars.json b/docs-site/website/versioned_sidebars/version-2.0.0-sidebars.json
similarity index 100%
rename from website/versioned_sidebars/version-2.0.0-sidebars.json
rename to docs-site/website/versioned_sidebars/version-2.0.0-sidebars.json
diff --git a/website/versions.json b/docs-site/website/versions.json
similarity index 100%
rename from website/versions.json
rename to docs-site/website/versions.json
diff --git a/yarn.lock b/docs-site/yarn.lock
similarity index 100%
rename from yarn.lock
rename to docs-site/yarn.lock