Ujjansh commited on
Commit
9150f81
·
verified ·
1 Parent(s): 5844718

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +20 -59
README.md CHANGED
@@ -1,69 +1,30 @@
1
  ---
2
  license: apache-2.0
3
  tags:
4
- - transformers
5
- - pytorch
6
- - causal-lm
7
- - smart-home
 
 
 
 
 
8
  - iot
9
- - finetuned
10
- - qlora
11
- - unsloth
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
- ## Example Usage
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
- prompt = "turn on bedroom light"
64
 
65
- inputs = tokenizer(prompt, return_tensors="pt")
66
 
67
- outputs = model.generate(**inputs, max_new_tokens=50)
 
 
 
 
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