Skip to content

Commit 66d9f35

Browse files
bileschicaisq
authored andcommitted
(doc) Adds examples to table in README.md (#232)
* (doc) Adds data-csv, data-generator, iris-fitDataset, jena-weather to examples README. DOC
1 parent feeb5c0 commit 66d9f35

File tree

3 files changed

+59
-2
lines changed

3 files changed

+59
-2
lines changed

README.md

+55
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,39 @@ to another project.
7474
<td>Layers</td>
7575
<td></td>
7676
</tr>
77+
<tr>
78+
<td><a href="./data-csv">data-csv</a></td>
79+
<td><a href="https://storage.googleapis.com/tfjs-examples/data-csv/dist/index.html">🔗</a></td>
80+
<td></td>
81+
<td>How to build and work with a tf.data.Dataset from a remote CSV.</td>
82+
<td></td>
83+
<td></td>
84+
<td></td>
85+
<td></td>
86+
<td></td>
87+
</tr>
88+
<tr>
89+
<td><a href="./data-generator">data-generator</a></td>
90+
<td><a href="https://storage.googleapis.com/tfjs-examples/data-generator/dist/index.html">🔗</a></td>
91+
<td></td>
92+
<td>How to build and work with a tf.data.Dataset using the generator API.</td>
93+
<td>Regression</td>
94+
<td>Multilayer perceptron</td>
95+
<td>Browser</td>
96+
<td>Layers</td>
97+
<td></td>
98+
</tr>
99+
<tr>
100+
<td><a href="./date-conversion-attention">date-conversion-attention</a></td>
101+
<td></td>
102+
<td></td>
103+
<td>Attention RNN for text-to-text conversion</td>
104+
<td></td>
105+
<td></td>
106+
<td></td>
107+
<td></td>
108+
<td></td>
109+
</tr>
77110
<tr>
78111
<td><a href="./iris">iris</a></td>
79112
<td><a href="https://storage.googleapis.com/tfjs-examples/iris/dist/index.html">🔗</a></td>
@@ -85,6 +118,28 @@ to another project.
85118
<td>Layers</td>
86119
<td></td>
87120
</tr>
121+
<tr>
122+
<td><a href="./iris-fitDataset">iris-fitDataset</a></td>
123+
<td><a href="https://storage.googleapis.com/tfjs-examples/iris-fitDataset/dist/index.html">🔗</a></td>
124+
<td>Numeric</td>
125+
<td>Multiclass classification</td>
126+
<td>Multilayer perceptron</td>
127+
<td>Browser</td>
128+
<td>Browser</td>
129+
<td>Layers</td>
130+
<td></td>
131+
</tr>
132+
<tr>
133+
<td><a href="./jena-weather">jena-weather</a></td>
134+
<td><a href="https://storage.googleapis.com/tfjs-examples/jena-weather/dist/index.html">🔗</a></td>
135+
<td>Sequence</td>
136+
<td>Sequence-to-prediction</td>
137+
<td>MLP and RNNs</td>
138+
<td>Browser and Node</td>
139+
<td>Browser</td>
140+
<td>Layers</td>
141+
<td></td>
142+
</tr>
88143
<tr>
89144
<td><a href="./lstm-text-generation">lstm-text-generation</a></td>
90145
<td><a href="https://storage.googleapis.com/tfjs-examples/lstm-text-generation/dist/index.html">🔗</a></td>

data-csv/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
},
1111
"scripts": {
1212
"link-local": "yalc link",
13-
"watch": "cross-env NODE_ENV=development parcel index.html --no-hmr --open"
13+
"watch": "cross-env NODE_ENV=development parcel index.html --no-hmr --open",
14+
"build": "cross-env NODE_ENV=production parcel build index.html --no-minify --public-url ./"
1415
},
1516
"devDependencies": {
1617
"babel-core": "^6.26.3",

data-generator/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
},
1212
"scripts": {
1313
"link-local": "yalc link",
14-
"watch": "cross-env NODE_ENV=development parcel index.html --no-hmr --open"
14+
"watch": "cross-env NODE_ENV=development parcel index.html --no-hmr --open",
15+
"build": "cross-env NODE_ENV=production parcel build index.html --no-minify --public-url ./"
1516
},
1617
"devDependencies": {
1718
"babel-core": "^6.26.3",

0 commit comments

Comments
 (0)