Skip to content

Commit 55283d2

Browse files
authored
updated README.md
1 parent 845028b commit 55283d2

File tree

1 file changed

+28
-8
lines changed

1 file changed

+28
-8
lines changed

ANN/README.md

+28-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,30 @@
1-
# TensorFlow.js Example: Iris Classification using tfjs-data APIs
1+
## Artificial Neural Network
2+
This example uses a fully connected neural network to classify tabular data representing different flowers, running purely in the browser using TensorFlow.js. The goal is to predict what kind of flower it is based on those features of each data point. The data comes from the famous Iris flower data set. The hyperparameters and optimizer used in training the network can be changed and weights learned can be visualised.
3+
4+
## Features
5+
* The number of layers and number of neurons per layer can be changed and the architecture visualised.
6+
effect on the principal components generated.
7+
* Effect of hyperparamters like learning rate and batch size on training can be compared.
8+
* The oprimizer can be choosen from Adam RMSProp and SGD.
9+
* The trained model can be tested on a user defined datal point.
10+
* The weights of network can be visualised along with their magnitude.
11+
12+
## Running locally for development
13+
14+
To run it locally, you must install Python 3 or above and run the following command at the repository's root to set up a python server.
15+
16+
```python
17+
python -m http.server
18+
```
19+
20+
You can then browse to `localhost:8000` and select index.html to view the application.
21+
22+
## Contributors
23+
1. Shashwat Gupta
24+
2. Sahil Goyal
25+
3. Ishan Kumar
26+
27+
28+
229

3-
This example is identical to the
4-
[iris](https://github.com/tensorflow/tfjs-examples/tree/master/iris) example,
5-
except that it uses the [tfjs-data](https://github.com/tensorflow/tfjs-data)
6-
APIs.
730

8-
Please see the
9-
[iris](https://github.com/tensorflow/tfjs-examples/tree/master/iris) example for
10-
details and how to run.

0 commit comments

Comments
 (0)