Skip to content

Commit 934fe9b

Browse files
committed
docs: ✏️ update example versions
1 parent 790ca9d commit 934fe9b

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

README.md

+12-7
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,24 @@ Example matrix:
1818
```json
1919
{
2020
"lambda": ["nodejs10.x", "nodejs12.x", "nodejs14.x"],
21-
"tensorflow": ["1.7.4", "2.8.5", "3.0.0"]
21+
"tensorflow": ["1.7.4", "2.8.6", "3.6.1"]
2222
}
2323
```
2424

2525
Example releases:
2626

2727
```
2828
nodejs10.x-tf1.7.4.br
29-
nodejs10.x-tf2.8.5.br
30-
nodejs10.x-tf3.0.0.br
29+
nodejs10.x-tf2.8.6.br
30+
nodejs10.x-tf3.6.1.br
31+
3132
nodejs12.x-tf1.7.4.br
32-
nodejs12.x-tf2.8.5.br
33-
nodejs12.x-tf3.0.0.br
33+
nodejs12.x-tf2.8.6.br
34+
nodejs12.x-tf3.6.1.br
35+
36+
nodejs14.x-tf1.7.4.br
37+
nodejs14.x-tf2.8.6.br
38+
nodejs14.x-tf3.6.1.br
3439
```
3540

3641
Using GitHub actions, these versions are updated daily around midnight. Lock your versions with the `--save-exact` flag.
@@ -70,7 +75,7 @@ In development, `loadTf` will run your locally installed version of `@tensorflow
7075
import { Readable } from 'stream';
7176

7277
const response = await axios.get(
73-
'https://github.com/jlarmstrongiv/tfjs-node-lambda/releases/download/v1.5.0/nodejs12.x-tf2.7.0.br',
78+
'https://github.com/jlarmstrongiv/tfjs-node-lambda/releases/download/v2.0.10/nodejs12.x-tf2.8.6.br',
7479
{ responseType: 'arraybuffer' },
7580
);
7681

@@ -84,7 +89,7 @@ import os from 'os';
8489
import path from 'path';
8590

8691
const readStream = fs.createReadStream(
87-
path.join(os.tmpdir(), 'nodejs12.x-tf2.7.0.br'),
92+
path.join(os.tmpdir(), 'nodejs12.x-tf2.8.6.br'),
8893
);
8994
```
9095

0 commit comments

Comments
 (0)