This repository was archived by the owner on Aug 25, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +13
-10
lines changed
Expand file tree Collapse file tree 2 files changed +13
-10
lines changed Original file line number Diff line number Diff line change @@ -15,22 +15,14 @@ generation and model definition. So that we as developers and researchers can
1515quickly and easily plug and play various pieces of data with various model
1616implementations.
1717
18- Here's a quick demo showing how DFFML can be used to train on the iris dataset.
1918The more we build up the library of plugins (which anyone can maintain, they
2019don'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
2323Right now we've released a wrapper around the Tensorflow DNN estimator, and a
2424set 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
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments