├── .gitmodules └── README.md /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "dockerRML"] 2 | path = dockerRML 3 | url = https://github.com/sofwerx/dockerRML 4 | [submodule "radioML_dataset"] 5 | path = radioML_dataset 6 | url = https://github.com/sofwerx/radioML_dataset 7 | [submodule "radioML_examples"] 8 | path = radioML_examples 9 | url = https://github.com/sofwerx/radioML_examples 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # DEEPSIG DATASETS 2 | 3 | This repository is a collection of references and software regarding: 4 | 5 | - https://www.deepsig.io/datasets/ 6 | 7 | DeepSig has created a small corpus of standard datasets which can be used for original and reproducible research, experimentation, measurement and comparison by fellow scientists and engineers. 8 | 9 | These datasets allow machine learning researchers with new ideas to dive directly into an important technical area without the need for collecting or generating new datasets, and allows for direct comparison to efficacy of prior work. 10 | 11 | Please reference the above page or relevant academic papers when using these datasets. 12 | 13 | ## LICENSE NOTICE 14 | 15 | All datasets provided by Deepsig Inc. are licensed under the [Creative Commons Attribution - NonCommercial - ShareAlike 4.0 License (CC BY-NC-SA 4.0)](https://creativecommons.org/licenses/by-nc-sa/4.0/). If an alternative license is needed, please contact [info@deepsig.io](mailto:info@deepsig.io). 16 | 17 | # DEEPSIG DATASET: RADIOML 2016.10A 18 | 19 | A synthetic dataset, generated with GNU Radio, consisting of 11 modulations (8 digital and 3 analog) at varying signal-to-noise ratios. This dataset was first released at the 6th Annual GNU Radio Conference. 20 | 21 | This represents a cleaner and more normalized version of the 2016.04C dataset, which this supersedes. The file is formatted as a "pickle" file which can be open for example in python by using `cPickle.load(...)`. 22 | 23 | - Signal Generation Software: [https://github.com/radioML/dataset](https://github.com/radioML/dataset) 24 | - Dataset Download: [RML2016.10a.tar.bz2](http://opendata.deepsig.io/datasets/2016.10/RML2016.10a.tar.bz2) 25 | - Larger Version (including AM-SSB): [RML2016.10b.tar.bz2](http://opendata.deepsig.io/datasets/2016.10/RML2016.10b.tar.bz2) 26 | - Example ClassifierJupyter Notebook: [RML2016.10a_VTCNN2_example.ipynb](https://github.com/radioML/examples/blob/master/modulation_recognition/RML2016.10a_VTCNN2_example.ipynb) 27 | 28 | Note: That example ClassifierJupyter notebook requires [some fixes](https://github.com/chickenjohn/examples/commit/488bbe15c710e0c2520a24b23c3903bf301141a0) from a fork to run successfully. Those are merged here: 29 | 30 | - [sofwerx/radioML_examples](https://github.com/sofwerx/radioML_examples) 31 | 32 | There is also another fork with updated Keras 2 and Theanos that claims 84% accuracy: 33 | 34 | - [mas-dse-greina/examples](https://github.com/mas-dse-greina/examples) 35 | 36 | ## DEEPSIG DATASET: RADIOML 2016.04C 37 | 38 | A synthetic dataset, generated with GNU Radio, consisting of 11 modulations. This is a variable-SNR dataset with moderate LO drift, light fading, and numerous different labeled SNR increments for use in measuring performance across different signal and noise power scenarios. 39 | 40 | This dataset was used for the "[Convolutional Radio Modulation Recognition Networks](https://arxiv.org/abs/1602.04105)" and "[Unsupervised Representation Learning of Structured Radio Communications Signals](https://arxiv.org/abs/1604.07078)" papers, found on the [DeepSig Publications Page](https://www.deepsig.io/publications) 41 | 42 | There are three variations within this dataset with the following characteristics and labeling: 43 | 44 | Dataset Download: [2016.04C.multisnr.tar.bz2](http://opendata.deepsig.io/datasets/2016.04/2016.04C.multisnr.tar.bz2) 45 | 46 | ## Docker container 47 | 48 | The [dockerRML](https://github.com/sofwerx/dockerRML) container was used to generate the above dataset. 49 | --------------------------------------------------------------------------------