psiddh commited on
Commit
7da6cd0
·
verified ·
1 Parent(s): 8ed9159

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +42 -3
README.md CHANGED
@@ -1,3 +1,42 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ library_name: executorch
4
+ base_model: chriamue/bird-species-classifier
5
+ tags:
6
+ - image-classification
7
+ - bird-species
8
+ - executorch
9
+ - mobile
10
+ - edge-ai
11
+ - xnnpack
12
+ - pytorch
13
+ pipeline_tag: image-classification
14
+ ---
15
+
16
+ # Bird Species Classifier - ExecuTorch (.pte)
17
+
18
+ This is an ExecuTorch-optimized version of [chriamue/bird-species-classifier](https://huggingface.co/chriamue/bird-species-classifier) for deployment on mobile and edge devices.
19
+
20
+ ## Model Description
21
+
22
+ - **Base Model:** EfficientNet fine-tuned for bird species classification
23
+ - **Original Author:** [chriamue](https://huggingface.co/chriamue)
24
+ - **Format:** ExecuTorch (.pte) with XNNPACK backend
25
+ - **Input Size:** 224x224 RGB images
26
+ - **Use Case:** Mobile/edge deployment for bird species identification
27
+
28
+ ##Usage (Android/iOS)
29
+ // Android (Kotlin)
30
+ import org.pytorch.executorch.Module
31
+ import org.pytorch.executorch.Tensor
32
+
33
+ val module = Module.load("/path/to/bird_classifier.pte")
34
+ val inputTensor = Tensor.fromBlob(floatData, longArrayOf(1, 3, 224, 224))
35
+ val output = module.forward(EValue.from(inputTensor))
36
+
37
+ ## License
38
+ MIT License (inherited from base model)
39
+
40
+ ## Acknowledgments
41
+ Original model by chriamue
42
+ Converted using PyTorch ExecuTorch