TrevTron commited on
Commit
88b8b09
·
verified ·
1 Parent(s): 55a3e2f

Add YAML metadata to fix dataset card warnings

Browse files
Files changed (1) hide show
  1. README.md +57 -0
README.md CHANGED
@@ -1,3 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  # RTL-ML Dataset
2
 
3
  ## Dataset Summary
@@ -47,12 +67,39 @@ sample = np.load(f"{dataset_path}/datasets_validated/ADS_B_0.npy")
47
  print(f"Signal shape: {sample.shape}") # (1048576,) complex64
48
  ```
49
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
50
  ## Hardware
51
 
52
  - **SDR:** RTL-SDR Blog V4 ($39.95)
53
  - **Computer:** Indiedroid Nova 16GB ($179.95)
54
  - **Antenna:** Telescopic dipole (included)
55
 
 
 
 
 
 
 
 
56
  ## Citation
57
 
58
  ```bibtex
@@ -73,3 +120,13 @@ MIT License - Free for commercial and non-commercial use.
73
 
74
  - **Code:** [github.com/TrevTron/rtl-ml](https://github.com/TrevTron/rtl-ml)
75
  - **Blog:** RTL-SDR.com article (coming soon)
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - time-series-forecasting
5
+ - audio-classification
6
+ language:
7
+ - en
8
+ tags:
9
+ - rf-signals
10
+ - radio
11
+ - rtl-sdr
12
+ - signal-processing
13
+ - machine-learning
14
+ - telecommunications
15
+ - software-defined-radio
16
+ pretty_name: RTL-ML RF Signal Classification Dataset
17
+ size_categories:
18
+ - 100K<n<1M
19
+ ---
20
+
21
  # RTL-ML Dataset
22
 
23
  ## Dataset Summary
 
67
  print(f"Signal shape: {sample.shape}") # (1048576,) complex64
68
  ```
69
 
70
+ ## Dataset Structure
71
+
72
+ ```
73
+ rtl-ml-dataset/
74
+ └── datasets_validated/
75
+ ├── ADS_B_0.npy ... ADS_B_29.npy (30 files)
76
+ ├── APRS_0.npy ... APRS_29.npy (30 files)
77
+ ├── FM_broadcast_0.npy ... _29.npy (30 files)
78
+ ├── ISM_sensors_0.npy ... _29.npy (30 files)
79
+ ├── NOAA_APT_0.npy ... NOAA_APT_29.npy (30 files)
80
+ ├── NOAA_weather_0.npy ... _29.npy (30 files)
81
+ ├── noise_0.npy ... noise_29.npy (30 files)
82
+ └── pager_0.npy ... pager_29.npy (30 files)
83
+ ```
84
+
85
+ Each `.npy` file contains:
86
+ - **Shape:** (1048576,) - 1 second @ 1.024 MSPS
87
+ - **Dtype:** `complex64` (I/Q samples)
88
+ - **Size:** ~8.4 MB per file
89
+
90
  ## Hardware
91
 
92
  - **SDR:** RTL-SDR Blog V4 ($39.95)
93
  - **Computer:** Indiedroid Nova 16GB ($179.95)
94
  - **Antenna:** Telescopic dipole (included)
95
 
96
+ ## Model Performance
97
+
98
+ When trained with Random Forest (100 trees):
99
+ - **Overall Accuracy:** 87.5%
100
+ - **Perfect Classes:** ADS-B, FM, ISM, NOAA APT, Weather, Pager (100%)
101
+ - **Challenging:** APRS ↔ Noise confusion (sparse packets)
102
+
103
  ## Citation
104
 
105
  ```bibtex
 
120
 
121
  - **Code:** [github.com/TrevTron/rtl-ml](https://github.com/TrevTron/rtl-ml)
122
  - **Blog:** RTL-SDR.com article (coming soon)
123
+ - **Hardware Guide:** [Indiedroid Nova Setup](https://github.com/TrevTron/rtl-ml/blob/main/docs/HARDWARE_SETUP.md)
124
+
125
+ ## Contributions
126
+
127
+ Captured in Temecula, CA (Southern California) using:
128
+ - Clear line of sight to multiple signal sources
129
+ - Validated with spectral analysis and manual inspection
130
+ - All samples meet minimum SNR requirements (>10 dB for modulated signals)
131
+
132
+ For questions or improvements, see the [GitHub repository](https://github.com/TrevTron/rtl-ml).