Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Llama3.2-3B
|
| 2 |
+
Run **Llama3.2-3B** optimized for **Qualcomm NPUs** with [nexaSDK](https://sdk.nexa.ai).
|
| 3 |
+
|
| 4 |
+
## Quickstart
|
| 5 |
+
|
| 6 |
+
1. **Install nexaSDK** and create a free account at [sdk.nexa.ai](https://sdk.nexa.ai)
|
| 7 |
+
2. **Activate your device** with your access token:
|
| 8 |
+
```bash
|
| 9 |
+
nexa config set license '<access_token>'
|
| 10 |
+
```
|
| 11 |
+
3. Run the model on Qualcomm NPU in one line:
|
| 12 |
+
```bash
|
| 13 |
+
nexa infer NexaAI/Llama3.2-3B-NPU-Turbo
|
| 14 |
+
```
|
| 15 |
+
|
| 16 |
+
## Model Description
|
| 17 |
+
**Llama3.2-3B** is a 3-billion-parameter language model from Meta’s Llama 3.2 series.
|
| 18 |
+
It is designed to provide a balance of efficiency and capability, making it suitable for deployment on a wide range of devices while maintaining strong performance on core language understanding and generation tasks.
|
| 19 |
+
|
| 20 |
+
Trained on diverse, high-quality datasets, Llama3.2-3B supports multiple languages and is optimized for scalability, fine-tuning, and real-world applications.
|
| 21 |
+
|
| 22 |
+
## Features
|
| 23 |
+
- **Lightweight yet capable**: delivers strong performance with a smaller memory footprint.
|
| 24 |
+
- **Conversational AI**: context-aware dialogue for assistants and agents.
|
| 25 |
+
- **Content generation**: text completion, summarization, code comments, and more.
|
| 26 |
+
- **Reasoning & analysis**: step-by-step problem solving and explanation.
|
| 27 |
+
- **Multilingual**: supports understanding and generation in multiple languages.
|
| 28 |
+
- **Customizable**: can be fine-tuned for domain-specific or enterprise use.
|
| 29 |
+
|
| 30 |
+
## Use Cases
|
| 31 |
+
- Personal and enterprise chatbots
|
| 32 |
+
- On-device AI applications
|
| 33 |
+
- Document and report summarization
|
| 34 |
+
- Education and tutoring tools
|
| 35 |
+
- Specialized models in verticals (e.g., healthcare, finance, legal)
|
| 36 |
+
|
| 37 |
+
## Inputs and Outputs
|
| 38 |
+
**Input**:
|
| 39 |
+
- Text prompts or conversation history (tokenized input sequences).
|
| 40 |
+
|
| 41 |
+
**Output**:
|
| 42 |
+
- Generated text: responses, explanations, or creative content.
|
| 43 |
+
- Optionally: raw logits/probabilities for advanced downstream tasks.
|
| 44 |
+
|
| 45 |
+
## License
|
| 46 |
+
- Licensed under: [Meta Llama 3.2 License](https://huggingface.co/meta-llama/Llama-3.2-3B/blob/main/LICENSE)
|
| 47 |
+
|
| 48 |
+
## References
|
| 49 |
+
- [Meta AI – Llama Models](https://ai.meta.com/research/publications/llama/)
|
| 50 |
+
- [Hugging Face Model Card](https://huggingface.co/meta-llama/Llama-3.2-3B)
|