SouravAnand commited on
Commit
9eed26c
·
verified ·
1 Parent(s): 9d2292f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +45 -0
README.md CHANGED
@@ -5,4 +5,49 @@ language:
5
  pretty_name: Synthetic On-Device Assistant Commands
6
  size_categories:
7
  - 10K<n<100K
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  ---
 
5
  pretty_name: Synthetic On-Device Assistant Commands
6
  size_categories:
7
  - 10K<n<100K
8
+ tags:
9
+ - nlp
10
+ - text-classification
11
+ - synthetic-data
12
+ - on-device-ai
13
+ - intent-recognition
14
+ - mobilebert
15
+ ---
16
+
17
+ ## Synthetic On-Device Assistant Commands (70K Records)
18
+
19
+ ### Overview
20
+ This dataset, comprising **70000 unique synthetic command phrases**, was created to train a robust, low-latency text classifier for an **offline, private AI assistant** application on Android.
21
+
22
+ It addresses the lack of publicly available, high-variability command datasets tailored for edge computing and low-latency intent recognition. The resulting model, optimized with post-training quantization, operates entirely on-device, prioritizing user privacy and speed.
23
+
24
+ ### Supported Tasks and Intents
25
+
26
+ The dataset is structured for a multi-class **Intent Classification** task across seven common mobile device actions.
27
+
28
+ | Intent Category | Count (Records) | Example Commands |
29
+ | :--- | :--- | :--- |
30
+ | **making_call** | 10,000 | "Make a call to Anand," "Ring up my doctor." |
31
+ | **setting_alarm** | 10,000 | "Set alarm for 7 AM," "Wake me up at 06:45." |
32
+ | **setting_reminder** | 10,000 | "Remind me to pay rent tomorrow," "Set a reminder for the meeting." |
33
+ | **playing_song** | 10,000 | "Play 'Bohemian Rhapsody'," "Shuffle my workout playlist." |
34
+ | **navigation** | 10,000 | "Navigate to the nearest gas station," "Start driving home." |
35
+ | **weather_report** | 10,000 | "What is the weather in Croatia," "Will it rain today?" |
36
+ | **general_question** | 10,000 | "What's the best food in Croatia," "Tell me about the history of Rome." |
37
+
38
+ ### Construction Methodology
39
+
40
+ The dataset was generated synthetically using **BERT (MobileBERT)** to create high-variability training samples.
41
+ 1. **Seed Phrase Generation:** 100 unique root phrases were manually created for each category (e.g., "Call [person]" or "Start navigation to [place]").
42
+ 2. **Variable Injection:** BERT was used to generate and inject unique, domain-specific entities (e.g., thousands of unique names for the `making_call` intent, and thousands of unique places for the `navigation` intent).
43
+ 3. **Combination:** This technique resulted in approximately 10,000 unique commands per category, yielding a final training set of **70,000 total records**.
44
+
45
+ ### Data Format
46
+
47
+ The dataset is provided in a single CSV file.
48
+
49
+ ### Usage Notes
50
+
51
+ This dataset is perfect for training lightweight transformer models (like MobileBERT) for applications in **Edge AI**, **on-device machine learning**, and **privacy-first application development**.
52
+
53
  ---