Instructions to use jazeelmohd/mobileo_android with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use jazeelmohd/mobileo_android with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="jazeelmohd/mobileo_android", filename="text_encoder.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use jazeelmohd/mobileo_android with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf jazeelmohd/mobileo_android # Run inference directly in the terminal: llama-cli -hf jazeelmohd/mobileo_android
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf jazeelmohd/mobileo_android # Run inference directly in the terminal: llama-cli -hf jazeelmohd/mobileo_android
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf jazeelmohd/mobileo_android # Run inference directly in the terminal: ./llama-cli -hf jazeelmohd/mobileo_android
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf jazeelmohd/mobileo_android # Run inference directly in the terminal: ./build/bin/llama-cli -hf jazeelmohd/mobileo_android
Use Docker
docker model run hf.co/jazeelmohd/mobileo_android
- LM Studio
- Jan
- Ollama
How to use jazeelmohd/mobileo_android with Ollama:
ollama run hf.co/jazeelmohd/mobileo_android
- Unsloth Studio
How to use jazeelmohd/mobileo_android with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for jazeelmohd/mobileo_android to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for jazeelmohd/mobileo_android to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for jazeelmohd/mobileo_android to start chatting
- Docker Model Runner
How to use jazeelmohd/mobileo_android with Docker Model Runner:
docker model run hf.co/jazeelmohd/mobileo_android
- Lemonade
How to use jazeelmohd/mobileo_android with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull jazeelmohd/mobileo_android
Run and chat with the model
lemonade run user.mobileo_android-{{QUANT_TAG}}List all available models
lemonade list
Add MobileO Android model files (0.5B)
Browse files- .gitattributes +11 -0
- connector.mnn +0 -0
- connector.mnn.weight +3 -0
- connector_edit.mnn +0 -0
- connector_edit.mnn.weight +3 -0
- merges.txt +0 -0
- mm_projector.mnn +3 -0
- scheduler_config.json +36 -0
- text_encoder.gguf +3 -0
- transformer.mnn +3 -0
- transformer.mnn.weight +3 -0
- transformer_dit_p1_edit_s300_v79.bin +3 -0
- transformer_dit_p1_edit_s300_v81.bin +3 -0
- transformer_dit_p1_s77_v79.bin +3 -0
- transformer_dit_p1_s77_v81.bin +3 -0
- transformer_dit_p2_edit_s300_v79.bin +3 -0
- transformer_dit_p2_edit_s300_v81.bin +3 -0
- transformer_dit_p2_s77_v79.bin +3 -0
- transformer_dit_p2_s77_v81.bin +3 -0
- transformer_edit.mnn +3 -0
- transformer_edit.mnn.weight +3 -0
- vae_decoder.mnn +3 -0
- vae_decoder.mnn.weight +3 -0
- vae_decoder_v79.bin +3 -0
- vae_decoder_v81.bin +3 -0
- vision_encoder.mnn +3 -0
- vision_encoder_v79.bin +3 -0
- vision_encoder_v81.bin +3 -0
- vocab.json +0 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,14 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
connector.mnn.weight filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
connector_edit.mnn.weight filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
mm_projector.mnn filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
text_encoder.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
transformer.mnn filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
transformer.mnn.weight filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
transformer_edit.mnn filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
transformer_edit.mnn.weight filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
vae_decoder.mnn filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
vae_decoder.mnn.weight filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
vision_encoder.mnn filter=lfs diff=lfs merge=lfs -text
|
connector.mnn
ADDED
|
Binary file (26.7 kB). View file
|
|
|
connector.mnn.weight
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:08017dcb45b1b156e1db63225ab15cd3f159053158a0ee3ec3f7d785e40f53b7
|
| 3 |
+
size 10051072
|
connector_edit.mnn
ADDED
|
Binary file (26.7 kB). View file
|
|
|
connector_edit.mnn.weight
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b3a60a5c2f9423755d890da4d485f03c5c0ae8d2e9b6c99e84f11730ece164af
|
| 3 |
+
size 10850304
|
merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
mm_projector.mnn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:66f52f4c2ea4a22e97e58a1684d82dfccd06037305ef711a3f556f046cc24883
|
| 3 |
+
size 7121996
|
scheduler_config.json
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "CustomScheduler",
|
| 3 |
+
"_diffusers_version": "0.32.0.dev0",
|
| 4 |
+
"algorithm_type": "custom_v1",
|
| 5 |
+
"beta_end": 0.02,
|
| 6 |
+
"beta_schedule": "linear",
|
| 7 |
+
"beta_start": 0.0001,
|
| 8 |
+
"dynamic_thresholding_ratio": 0.995,
|
| 9 |
+
"euler_at_final": false,
|
| 10 |
+
"final_sigmas_type": "zero",
|
| 11 |
+
"flow_shift": 3.0,
|
| 12 |
+
"lambda_min_clipped": -1000000.0,
|
| 13 |
+
"lower_order_final": true,
|
| 14 |
+
"num_train_timesteps": 1000,
|
| 15 |
+
"prediction_type": "flow_prediction",
|
| 16 |
+
"rescale_betas_zero_snr": false,
|
| 17 |
+
"sample_max_value": 1.0,
|
| 18 |
+
"solver_order": 3,
|
| 19 |
+
"solver_type": "multistep",
|
| 20 |
+
"steps_offset": 0,
|
| 21 |
+
"thresholding": false,
|
| 22 |
+
"timestep_spacing": "uniform_tau",
|
| 23 |
+
"trained_betas": null,
|
| 24 |
+
"use_beta_sigmas": false,
|
| 25 |
+
"use_exponential_sigmas": false,
|
| 26 |
+
"use_flow_sigmas": true,
|
| 27 |
+
"use_karras_sigmas": false,
|
| 28 |
+
"use_lu_lambdas": false,
|
| 29 |
+
"apply_flow_shift": false,
|
| 30 |
+
"variance_type": null,
|
| 31 |
+
"update_clamp_factor": 2.5,
|
| 32 |
+
"sigma_max": 1.0,
|
| 33 |
+
"sigma_min": 0.002,
|
| 34 |
+
"karras_rho": 7.0,
|
| 35 |
+
"use_heun_final_steps": 3
|
| 36 |
+
}
|
text_encoder.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8f07872c95486a6e0ac1ac0ec8801000bcbb14bc5da3d86f430dbc02e223f7e9
|
| 3 |
+
size 490013728
|
transformer.mnn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ff09382b45cde29719ca3b66816c624d51b32d39cd4fec99174ff6977a3ddb52
|
| 3 |
+
size 991552
|
transformer.mnn.weight
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4105efc3bf7e3db9eb07109fcdd0ee67b719742198ff07240670a56acb1438a0
|
| 3 |
+
size 2368037504
|
transformer_dit_p1_edit_s300_v79.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:71dc49fb537c6ec7e07b137509953728be8075b2535357da0d4ba452b86eafdb
|
| 3 |
+
size 622043136
|
transformer_dit_p1_edit_s300_v81.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a4ff0edadf86d27d77abf74762c20f036b5b2c0a67c2ba9f10c991629fcace23
|
| 3 |
+
size 622874624
|
transformer_dit_p1_s77_v79.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ca9e2e7f9d6ecf32b7b14801501658273530aa33c7d90a81a8177f64981d8a3d
|
| 3 |
+
size 622039040
|
transformer_dit_p1_s77_v81.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:484bac96da9085060cc300dade6c7b734e1e1f442f89ecb7925feb8caeeec65d
|
| 3 |
+
size 622776320
|
transformer_dit_p2_edit_s300_v79.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9b35ac88ec0dfaac78dd11f117acacbe9b0760f67156999650d7ad02c211eedb
|
| 3 |
+
size 595046400
|
transformer_dit_p2_edit_s300_v81.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c697868821570409dc481655bc33b48e786e87ed8d0f557725c1d46f17103a24
|
| 3 |
+
size 596045824
|
transformer_dit_p2_s77_v79.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2c9308c3343340a7e13fde72b5e477c790b248ec35e69dc83ceaeb4873e939b5
|
| 3 |
+
size 594993152
|
transformer_dit_p2_s77_v81.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1db95e12085642f472a14a03febc4fd2e62ec3841993715b189e069af846bbce
|
| 3 |
+
size 595959808
|
transformer_edit.mnn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8629c9f114c6bb4ede0ff6e851ce3932618afe8c58b35b6b8959d810fc4e443a
|
| 3 |
+
size 991552
|
transformer_edit.mnn.weight
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4105efc3bf7e3db9eb07109fcdd0ee67b719742198ff07240670a56acb1438a0
|
| 3 |
+
size 2368037504
|
vae_decoder.mnn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b3ba4f5188e2cf9385a66a2e533dcbdbff2de7b2ba373120529d2561caebc05a
|
| 3 |
+
size 126824
|
vae_decoder.mnn.weight
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b6b87e9307f448bc4a8dd392fcc5141e43f4479e80cc0e4ebea581529039cc37
|
| 3 |
+
size 268706724
|
vae_decoder_v79.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e25c9672cca03421cc98d6b4d92cc630a2d2fcc0907778704cb1fc63909520d5
|
| 3 |
+
size 273190912
|
vae_decoder_v81.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e166f4c20dbb4d73eed29254fbfae94cbb5067a74e50fb22dcc966d5d1c28fe3
|
| 3 |
+
size 200069120
|
vision_encoder.mnn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:69e5ff725b8d52b358e28d683758c422c587483bcff8c2adb95117750f69e5a9
|
| 3 |
+
size 245888984
|
vision_encoder_v79.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5346d8f41e5d029bd7fbc1239a9df073ae2f53f5a3ee62766e4eb6e3d48eda46
|
| 3 |
+
size 270426112
|
vision_encoder_v81.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f814dfd6e75400b90b56648e31f704c6d449c66e59eb10460fa6d3ad7c230538
|
| 3 |
+
size 270888960
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|