foysalhaque commited on
Commit
9b82738
·
verified ·
1 Parent(s): fa53168

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +0 -29
README.md CHANGED
@@ -6,12 +6,9 @@ This is the implementation of the INFOCOM 25 Workshop's (DeepWireless 25) paper-
6
  MIMO Compressed Channel Feedback](https://ieeexplore.ieee.org/abstract/document/11152893)
7
 
8
 
9
- <br/>
10
-
11
  ### We present DeepCSIv2, a data-driven radio fingerprinting (RFP) algorithm to characterize Wi-Fi devices acting as stations (STAs) at the physical layer. DeepCSIv2 is based on a neural network architecture that automatically extracts the STA’s radio fingerprint from the feedback captured over the air and identifies the device.
12
 
13
  If you find the project useful and you use this code, please cite our paper:
14
- <br/>
15
 
16
  ```
17
 
@@ -36,30 +33,4 @@ python main_extract_batch.py '<trace_dir>' '<standard>' '<MIMO>' '<Antenna-confi
36
  ```
37
  Example: python main_extract_batch.py /data/pcap_traces AX MU 4x2 80 5000 /data/output/vmatrices /data/output/bfa
38
 
39
- ### Beamforming feedback matrices dataset creation
40
- The following script creates the datasets of beamforming feedback matrices.
41
- ```bash
42
- python create_dataset.py <'directory of input data'> <'number of different positions'> <'maximum number of samples to consider'> <'prefix to identify the data'> <'folder to save the dataset'> <'select random indices (`rand`) or subsample the data (`sampling`)'>
43
- ```
44
- e.g.,
45
- - python create_dataset.py ./input_files/ 3 6000 _ ./dataset/ sampling
46
-
47
- ### Train the learning algorithm for fingerprinting and test the performance
48
- The following script allows training and testing DeepCSIv2 on the scenarios identified in the reference paper based on the arguments passed as input.
49
- The fingerprinting is beamformee-specific: one model has to be trained using the feedback matrices collected from each of the beamformees.
50
- ```bash
51
- python learning.py <'directory of the beamforming feedback matrices dataset'> <'number of different positions'> <'name for the model to be saved'> <'number of transmitter antennas'> <'number of receiver antennas'> <'indices of the transmitter antennas to consider, comma separated'> <'indices of the receiver antennas to consider, comma separated'> <'bandwidth'> <'model type in {`convolutional`, `attention`}'> <'prefix to identify the data'> <'scenario considered in {S1, S2, S3, S4}'>
52
- ```
53
- e.g.,
54
- - python learning.py ./dataset/ 3 finger_ 4 2 0,1,2,3 0 160 attention _ S1
55
- - python learning.py ./dataset/ 3 finger_ 4 2 0,1,2,3 0 160 attention_hyper_selection-128,128,128,128-7,7,7,5 _ hyper
56
-
57
-
58
- ### Test the performance of the algorithm already trained
59
- ```bash
60
- python learning_test.py <'directory of the beamforming feedback matrices dataset'> <'number of different positions'> <'name for the model to be saved'> <'number of transmitter antennas'> <'number of receiver antennas'> <'indices of the transmitter antennas to consider, comma separated'> <'indices of the receiver antennas to consider, comma separated'> <'bandwidth'> <'model type in {`convolutional`, `attention`}'> <'prefix to identify the data'> <'scenario considered in {S1, S2, S3, S4}'>
61
- ```
62
- e.g., python learning_test.py ./dataset/ 3 finger_rev_ 4 2 0,1,2,3 0 160 attention _ S1
63
-
64
-
65
  #### For any question or query, please contact [Foysal Haque](https://kfoysalhaque.github.io/) at _**haque.k@northeastern.edu**
 
6
  MIMO Compressed Channel Feedback](https://ieeexplore.ieee.org/abstract/document/11152893)
7
 
8
 
 
 
9
  ### We present DeepCSIv2, a data-driven radio fingerprinting (RFP) algorithm to characterize Wi-Fi devices acting as stations (STAs) at the physical layer. DeepCSIv2 is based on a neural network architecture that automatically extracts the STA’s radio fingerprint from the feedback captured over the air and identifies the device.
10
 
11
  If you find the project useful and you use this code, please cite our paper:
 
12
 
13
  ```
14
 
 
33
  ```
34
  Example: python main_extract_batch.py /data/pcap_traces AX MU 4x2 80 5000 /data/output/vmatrices /data/output/bfa
35
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  #### For any question or query, please contact [Foysal Haque](https://kfoysalhaque.github.io/) at _**haque.k@northeastern.edu**