File size: 1,224 Bytes
7da6cd0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
---
license: mit
library_name: executorch
base_model: chriamue/bird-species-classifier
tags:
  - image-classification
  - bird-species
  - executorch
  - mobile
  - edge-ai
  - xnnpack
  - pytorch
pipeline_tag: image-classification
---

# Bird Species Classifier - ExecuTorch (.pte)

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.

## Model Description

- **Base Model:** EfficientNet fine-tuned for bird species classification
- **Original Author:** [chriamue](https://huggingface.co/chriamue)
- **Format:** ExecuTorch (.pte) with XNNPACK backend
- **Input Size:** 224x224 RGB images
- **Use Case:** Mobile/edge deployment for bird species identification

##Usage (Android/iOS)
// Android (Kotlin)
import org.pytorch.executorch.Module
import org.pytorch.executorch.Tensor

val module = Module.load("/path/to/bird_classifier.pte")
val inputTensor = Tensor.fromBlob(floatData, longArrayOf(1, 3, 224, 224))
val output = module.forward(EValue.from(inputTensor))

## License
MIT License (inherited from base model)

## Acknowledgments
Original model by chriamue
Converted using PyTorch ExecuTorch