msluszniak commited on
Commit
5469131
·
verified ·
1 Parent(s): d34c823

Add backend config (ExecuTorch 1.4.1)

Browse files
Files changed (1) hide show
  1. mlx/config.json +44 -0
mlx/config.json ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "$schema": "https://huggingface.co/software-mansion/react-native-executorch-spec/resolve/main/config.schema.json",
3
+ "model": "lraspp_mobilenet_v3_large",
4
+ "family": "lraspp",
5
+ "capabilities": [
6
+ "semantic-segmentation"
7
+ ],
8
+ "backend": "mlx",
9
+ "license": "bsd-3-clause",
10
+ "variants": [
11
+ {
12
+ "file": "lraspp_mobilenet_v3_large_mlx_fp32.pte",
13
+ "precision": "fp32",
14
+ "quantized": false,
15
+ "default": true,
16
+ "methods": {
17
+ "forward": {
18
+ "inputs": [
19
+ {
20
+ "shape": [
21
+ 1,
22
+ 3,
23
+ 520,
24
+ 520
25
+ ],
26
+ "dtype": "float32"
27
+ }
28
+ ],
29
+ "outputs": [
30
+ {
31
+ "shape": [
32
+ 1,
33
+ 21,
34
+ 520,
35
+ 520
36
+ ],
37
+ "dtype": "float32"
38
+ }
39
+ ]
40
+ }
41
+ }
42
+ }
43
+ ]
44
+ }