You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+20Lines changed: 20 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,24 @@
1
1
# Changelog
2
+
## [0.1.2] - 2020-04-12
3
+
### Added
4
+
* Improvements on `README` file
5
+
6
+
### Fixed
7
+
* Loading model error `response.arrayBuffer is not a function` found in issue [#3](https://github.com/bonastreyair/node-red-contrib-teachable-machine/issues/3)
8
+
9
+
## [0.1.1] - 2020-04-11
10
+
### Added
11
+
* Comments in the code
12
+
13
+
### Changed
14
+
* Downgraded `@tensorflow/tfjs-node` from version `v1.4.0` to `v1.3.1` for better compatibility
15
+
* Output has changed from `checkbox` to a `list`, you can now select `Best predictions` or `All predictions`
16
+
* Code cleaning
17
+
18
+
### Fixed
19
+
* WebGL loading error in JSDOM
20
+
* When installing the node -> `npm WARN @teachablemachine/image@0.8.4 requires a peer of @tensorflow/tfjs@1.3.1 but none is installed`
A TensorFlow.js node for Node-RED that enables to run custom trained Teachable Machineimage classification online models.
2
+
A Node-RED](https://nodered.org) node based in [tensorFlow.js](https://www.tensorflow.org/js)that enables to run custom trained models using [Teachable Machine](https://teachablemachine.withgoogle.com/train/image) tool.
3
3
4
-
More content to be generated...
4
+
## Install
5
+
Use `Manage Palette` option in `Node-RED` Menu or run the following command in your `Node-RED` user directory (typically `~/.node-red`).
6
+
```
7
+
npm install node-red-contrib-teachable-machine
8
+
```
5
9
6
-
Inspired by [@dceejay](https://github.com/dceejay) with [node-red-contrib-tfjs-coco-ssd](https://github.com/dceejay/tfjs-coco-ssd/)
10
+
## Node usage
11
+
### Step 1
12
+
Go to [Teachable Machine](https://teachablemachine.withgoogle.com/train/image) and follow the steps to train your custom classification model.
13
+
14
+
### Step 2
15
+
Once trained the model, click on the `Export Model` button and select `Tensorflow.js` format. Then upload your trained model for free and copy the generated URL.
* Supported OS: MacOSX Catalina, Windows 10, Ubuntu 18.04
28
+
29
+
**NOTE**: This not is not working using official `docker nodered/node-red`[image](https://hub.docker.com/r/nodered/node-red/) since it is based on Alpine and it has an incompatibility found in this [issue](https://github.com/tensorflow/tfjs/issues/1425).
30
+
31
+
Inspired by [@dceejay](https://github.com/dceejay) with [node-red-contrib-tfjs-coco-ssd](https://github.com/dceejay/tfjs-coco-ssd/).
0 commit comments