File tree 1 file changed +12
-7
lines changed
1 file changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -18,19 +18,24 @@ Example matrix:
18
18
``` json
19
19
{
20
20
"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 " ]
22
22
}
23
23
```
24
24
25
25
Example releases:
26
26
27
27
```
28
28
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
+
31
32
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
34
39
```
35
40
36
41
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
70
75
import { Readable } from ' stream' ;
71
76
72
77
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' ,
74
79
{ responseType: ' arraybuffer' },
75
80
);
76
81
@@ -84,7 +89,7 @@ import os from 'os';
84
89
import path from ' path' ;
85
90
86
91
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' ),
88
93
);
89
94
```
90
95
You can’t perform that action at this time.
0 commit comments