mlboydaisuke commited on
Commit
cbe17fb
·
verified ·
1 Parent(s): 0b1cc80

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +33 -0
README.md ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: bsd-3-clause
3
+ tags:
4
+ - executorch
5
+ - xnnpack
6
+ - pte
7
+ - on-device
8
+ - image-classification
9
+ ---
10
+ # efficientnet_b1 — ExecuTorch XNNPACK
11
+
12
+ `efficientnet_b1_xnnpack_fp32.pte` (31.2 MB, fp32, XNNPACK-delegated)
13
+
14
+ - **Source**: torchvision efficientnet_b1 IMAGENET1K_V2
15
+ - **License**: BSD-3-Clause
16
+ - **Input**: [[1, 3, 240, 240]] — RGB, ImageNet norm, 240x240
17
+ - **Output**: ImageNet logits [1,1000]
18
+
19
+ ## Verification (Mac arm64, executorch 1.4.0, torch 2.13.0)
20
+
21
+ Parity vs torch fp32 eager on random input:
22
+
23
+ | output | shape | max_abs_diff | corr |
24
+ |--------|-------|--------------|------|
25
+ | 0 | [1, 1000] | 6.676e-06 | 1.000000 |
26
+
27
+ Median latency over 10 runs (single Mac process, reference only — device numbers to follow):
28
+ ExecuTorch 9.2 ms vs torch eager 345.4 ms.
29
+
30
+ ## Conversion
31
+
32
+ torch.export -> to_edge_transform_and_lower(XnnpackPartitioner) -> .pte
33
+ (conversion scripts: `convert/` in the conversion repo)