Instructions to use Saeedno/edgeagent-models with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- LiteRT-LM
How to use Saeedno/edgeagent-models with LiteRT-LM:
# LiteRT-LM runs on various platforms (Android, iOS, Windows, Linux, macOS, IoT, Web/WASM) # and supports many APIs (C++, Python, Kotlin, Swift, JavaScript, Flutter). # For platform-specific integration guides, please refer to the official developer website: # https://ai.google.dev/edge/litert-lm # To try LiteRT-LM, the easiest way is to use our CLI tool. # 1. Install the LiteRT-LM CLI tool: pip install -U litert-lm # 2. Download and run this model locally: # See: https://ai.google.dev/edge/litert-lm/cli litert-lm run \ --from-huggingface-repo=Saeedno/edgeagent-models \ --prompt="Write me a poem"
- Notebooks
- Google Colab
- Kaggle
docs: Gemma licence notice
Browse files
README.md
CHANGED
|
@@ -1,3 +1,43 @@
|
|
| 1 |
---
|
| 2 |
license: gemma
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: gemma
|
| 3 |
+
tags:
|
| 4 |
+
- on-device
|
| 5 |
+
- android
|
| 6 |
+
- litert-lm
|
| 7 |
+
- gemma
|
| 8 |
+
base_model:
|
| 9 |
+
- google/gemma-3-1b-it
|
| 10 |
+
- google/gemma-3n-E2B-it
|
| 11 |
---
|
| 12 |
+
|
| 13 |
+
# EdgeAgent models
|
| 14 |
+
|
| 15 |
+
Mirror of three Gemma models in `.litertlm` format, used by the EdgeAgent Android app, where every
|
| 16 |
+
AI feature runs on the phone. Nothing here is modified — these are the published weights, re-hosted
|
| 17 |
+
so the app has a stable download URL.
|
| 18 |
+
|
| 19 |
+
## Licence
|
| 20 |
+
|
| 21 |
+
Gemma is provided under and subject to the **Gemma Terms of Use**:
|
| 22 |
+
<https://ai.google.dev/gemma/terms>
|
| 23 |
+
|
| 24 |
+
Prohibited uses: <https://ai.google.dev/gemma/prohibited_use_policy>
|
| 25 |
+
|
| 26 |
+
By downloading these files you agree to the Gemma Terms of Use. If you redistribute them, or a
|
| 27 |
+
model derived from them, you must pass this notice on and include the same use restrictions.
|
| 28 |
+
|
| 29 |
+
## Files
|
| 30 |
+
|
| 31 |
+
| File | Size | Upstream | SHA-256 |
|
| 32 |
+
| --- | --- | --- | --- |
|
| 33 |
+
| `gemma3-1b-it-int4.litertlm` | 584 MB | `litert-community/Gemma3-1B-IT` | `1325ae366d31950f137c9c357b9fa89448b176d76998180c08ceaca78bba98be` |
|
| 34 |
+
| `functiongemma-mobile-actions.litertlm` | 284 MB | `litert-community/functiongemma-mobile-actions_q8_ekv1024.litertlm` | `92109695f911d1872fa8ae07c1e3ff0ed70f2c3d1690d410ec6db8587c2ab409` |
|
| 35 |
+
| `gemma3n-e2b-it-int4.litertlm` | 3.6 GB | `google/gemma-3n-E2B-it-litert-lm` | `2ed7bc3a0026c93d5b8a4544b352d9d00cd66ff0bac3ef6a20ac3d2cba4010d6` |
|
| 36 |
+
|
| 37 |
+
The app checks every download against these digests and refuses anything that does not match, so a
|
| 38 |
+
corrupted or substituted file fails loudly instead of loading quietly.
|
| 39 |
+
|
| 40 |
+
## Use
|
| 41 |
+
|
| 42 |
+
These files are for the **LiteRT-LM** runtime on Android. They are not PyTorch checkpoints and will
|
| 43 |
+
not load with `transformers`.
|