Skip to content

Commit dba2f74

Browse files
author
Kevin Scott
committed
Update readme with demo
1 parent b319407 commit dba2f74

File tree

2 files changed

+14
-7
lines changed

2 files changed

+14
-7
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ ML Classifier is a machine learning engine for quickly training image classifica
44

55
This package is intended as a companion for [`ml-classifier-ui`](https://github.com/thekevinscott/ml-classifier-ui), which provides a web frontend in React for uploading data and seeing results.
66

7+
## Demo
8+
9+
An interactive demo can be found here.
10+
11+
![Demo](https://github.com/thekevinscott/ml-classifier-ui/raw/master/example/public/example.gif)
12+
*Screenshot of demo*
13+
714
## Getting Started
815

916
### Installation

src/index.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,19 @@ import {
2222

2323
interface IArgs {
2424
onLoadStart?: Function;
25-
onAddDataStart?: Function;
26-
onClearDataStart?: Function;
27-
onTrainStart?: Function;
28-
onEvaluateStart?: Function;
29-
onSaveStart?: Function;
30-
onPredictStart?: Function;
3125
onLoadComplete?: Function;
26+
onAddDataStart?: Function;
3227
onAddDataComplete?: Function;
28+
onClearDataStart?: Function;
3329
onClearDataComplete?: Function;
30+
onTrainStart?: Function;
3431
onTrainComplete?: Function;
32+
onPredictComplete?: Function;
33+
onPredictStart?: Function;
34+
onEvaluateStart?: Function;
3535
onEvaluateComplete?: Function;
36+
onSaveStart?: Function;
3637
onSaveComplete?: Function;
37-
onPredictComplete?: Function;
3838
}
3939

4040
// export { DataType } from './types';

0 commit comments

Comments
 (0)