Instructions to use Ujjansh/Smarttalk with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use Ujjansh/Smarttalk with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf Ujjansh/Smarttalk:Q4_K_M # Run inference directly in the terminal: llama cli -hf Ujjansh/Smarttalk:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf Ujjansh/Smarttalk:Q4_K_M # Run inference directly in the terminal: llama cli -hf Ujjansh/Smarttalk:Q4_K_M
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 Ujjansh/Smarttalk:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Ujjansh/Smarttalk:Q4_K_M
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 Ujjansh/Smarttalk:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Ujjansh/Smarttalk:Q4_K_M
Use Docker
docker model run hf.co/Ujjansh/Smarttalk:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use Ujjansh/Smarttalk with Ollama:
ollama run hf.co/Ujjansh/Smarttalk:Q4_K_M
- Unsloth Desktop
- Docker Model Runner
How to use Ujjansh/Smarttalk with Docker Model Runner:
docker model run hf.co/Ujjansh/Smarttalk:Q4_K_M
- Lemonade
How to use Ujjansh/Smarttalk with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Ujjansh/Smarttalk:Q4_K_M
Run and chat with the model
lemonade run user.Smarttalk-Q4_K_M
List all available models
lemonade list
- Atomic Chat
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,69 +1,30 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
tags:
|
| 4 |
-
-
|
| 5 |
-
-
|
| 6 |
-
-
|
| 7 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
- iot
|
| 9 |
-
-
|
| 10 |
-
-
|
| 11 |
-
-
|
| 12 |
-
language:
|
| 13 |
-
- en
|
| 14 |
-
---
|
| 15 |
-
|
| 16 |
-
# SmartTalk IoT Model (Fine-Tuned LLM)
|
| 17 |
-
|
| 18 |
-
## Model Name
|
| 19 |
-
SmartTalk - Lightweight Smart Home Assistant
|
| 20 |
-
|
| 21 |
-
---
|
| 22 |
-
|
| 23 |
-
## Models Description
|
| 24 |
-
|
| 25 |
-
This model is a fine-tuned lightweight causal language model designed for **smart-home IoT control tasks**.
|
| 26 |
-
|
| 27 |
-
It can understand natural language commands and convert them into structured smart-home actions such as:
|
| 28 |
-
|
| 29 |
-
- turning lights on/off
|
| 30 |
-
- adjusting brightness
|
| 31 |
-
- activating modes (movie, sleep, morning)
|
| 32 |
-
- controlling home appliances
|
| 33 |
-
|
| 34 |
-
---
|
| 35 |
-
|
| 36 |
-
## Model Type
|
| 37 |
-
|
| 38 |
-
- Base Model: `YOUR_BASE_MODEL_NAME` (e.g., Yi-1.5-6B / Qwen / LLaMA)
|
| 39 |
-
- Fine-tuning Method: QLoRA / LoRA / Full Fine-tune
|
| 40 |
-
- Precision: FP16
|
| 41 |
-
- Framework: Hugging Face Transformers + PyTorch
|
| 42 |
-
|
| 43 |
-
---
|
| 44 |
-
|
| 45 |
-
## Training Details
|
| 46 |
-
|
| 47 |
-
- Dataset: Smart home command dataset (custom / synthetic / real-world IoT commands)
|
| 48 |
-
- Samples: 100k examples
|
| 49 |
-
- Epochs: 2
|
| 50 |
-
|
| 51 |
---
|
| 52 |
|
| 53 |
-
#
|
| 54 |
-
|
| 55 |
-
```python
|
| 56 |
-
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 57 |
-
|
| 58 |
-
model_id = "YOUR_USERNAME/YOUR_MODEL_NAME"
|
| 59 |
-
|
| 60 |
-
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
| 61 |
-
model = AutoModelForCausalLM.from_pretrained(model_id)
|
| 62 |
|
| 63 |
-
|
| 64 |
|
| 65 |
-
|
| 66 |
|
| 67 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 68 |
|
| 69 |
-
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
tags:
|
| 4 |
+
- gguf
|
| 5 |
+
- llama.cpp
|
| 6 |
+
- qwen
|
| 7 |
+
- llama
|
| 8 |
+
- gemma
|
| 9 |
+
- phi
|
| 10 |
+
- smollm
|
| 11 |
+
- quantized
|
| 12 |
+
- edge-ai
|
| 13 |
- iot
|
| 14 |
+
- smart-home
|
| 15 |
+
- llm
|
| 16 |
+
- inference
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
---
|
| 18 |
|
| 19 |
+
# Lightweight GGUF LLM Collection (Edge AI / IoT Ready)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
|
| 21 |
+
## Overview
|
| 22 |
|
| 23 |
+
This repository contains a collection of **quantized GGUF models** optimized for **edge devices, CPU inference, and IoT applications**.
|
| 24 |
|
| 25 |
+
These models are designed for:
|
| 26 |
+
- Smart home assistants
|
| 27 |
+
- Lightweight chat systems
|
| 28 |
+
- Offline inference
|
| 29 |
+
- Jetson / Raspberry Pi / CPU-only environments
|
| 30 |
|
|
|