Skip to content
This repository was archived by the owner on Aug 25, 2024. It is now read-only.

Commit 0c2ee86

Browse files
author
John Andersen
committed
scripts: gh-pages deployment script
Signed-off-by: John Andersen <[email protected]>
1 parent 917e193 commit 0c2ee86

File tree

2 files changed

+13
-10
lines changed

2 files changed

+13
-10
lines changed

docs/index.rst

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,14 @@ generation and model definition. So that we as developers and researchers can
1515
quickly and easily plug and play various pieces of data with various model
1616
implementations.
1717

18-
Here's a quick demo showing how DFFML can be used to train on the iris dataset.
1918
The more we build up the library of plugins (which anyone can maintain, they
2019
don't have to be contributed upstream unless you want to) the more variations on
21-
model implementations and feature data generators we all have to work with.
20+
model implementations, feature data generators, and database backend
21+
abstractions, we all have to work with.
2222

2323
Right now we've released a wrapper around the Tensorflow DNN estimator, and a
2424
set of feature generators which gather data from git repositories.
2525

26-
## Example Usage
27-
28-
To start using `dffml` for data set generation with a single CLI command see
29-
[DFFML Features for Git Version Control](feature/git/README.md).
30-
31-
To start using `dffml` for machine learning on existing CSV data (Iris demo)
32-
see [DFFML Models for Tensorflow Library](model/tensorflow/README.md).
33-
3426
.. toctree::
3527
:glob:
3628
:maxdepth: 2

scripts/docs-deploy.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/usr/bin/env sh
2+
set -e
3+
4+
rm -rf pages/.git
5+
cp -r .git pages/.git
6+
cd pages/
7+
git branch -D gh-pages
8+
git checkout --orphan gh-pages
9+
git add -A
10+
git commit -sam 'gh-pages'
11+
git push -u origin -f gh-pages

0 commit comments

Comments
 (0)