├── .idea ├── .gitignore ├── 1DCNN.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── 1d_cnn ├── __pycache__ │ ├── data.cpython-36.pyc │ ├── data.cpython-37.pyc │ ├── model.cpython-36.pyc │ └── model.cpython-37.pyc ├── cnn_1d_tensorflow.py ├── cnn_1d_torch.py ├── data.py ├── model.py └── test_data.py ├── README.md └── data ├── 12class ├── FlowAllLayers │ ├── MNIST │ │ ├── processed │ │ │ ├── test.pt │ │ │ └── training.pt │ │ └── raw │ │ │ ├── t10k-images-idx3-ubyte │ │ │ ├── t10k-images-idx3-ubyte.gz │ │ │ ├── t10k-labels-idx1-ubyte │ │ │ ├── t10k-labels-idx1-ubyte.gz │ │ │ ├── train-images-idx3-ubyte │ │ │ ├── train-images-idx3-ubyte.gz │ │ │ ├── train-labels-idx1-ubyte │ │ │ └── train-labels-idx1-ubyte.gz │ ├── t10k-images-idx3-ubyte.gz │ ├── t10k-labels-idx1-ubyte.gz │ ├── test-images-idx3-ubyte │ ├── test-labels-idx1-ubyte │ ├── train-images-idx3-ubyte │ ├── train-images-idx3-ubyte.gz │ ├── train-labels-idx1-ubyte │ └── train-labels-idx1-ubyte.gz ├── FlowL7 │ ├── t10k-images-idx3-ubyte.gz │ ├── t10k-labels-idx1-ubyte.gz │ ├── train-images-idx3-ubyte.gz │ └── train-labels-idx1-ubyte.gz ├── SessionAllLayers │ ├── t10k-images-idx3-ubyte.gz │ ├── t10k-labels-idx1-ubyte.gz │ ├── train-images-idx3-ubyte.gz │ └── train-labels-idx1-ubyte.gz ├── SessionL7 │ ├── t10k-images-idx3-ubyte.gz │ ├── t10k-labels-idx1-ubyte.gz │ ├── train-images-idx3-ubyte.gz │ └── train-labels-idx1-ubyte.gz └── convert.py ├── 2class ├── FlowAllLayers │ ├── t10k-images-idx3-ubyte.gz │ ├── t10k-labels-idx1-ubyte.gz │ ├── train-images-idx3-ubyte.gz │ └── train-labels-idx1-ubyte.gz ├── FlowL7 │ ├── t10k-images-idx3-ubyte.gz │ ├── t10k-labels-idx1-ubyte.gz │ ├── train-images-idx3-ubyte.gz │ └── train-labels-idx1-ubyte.gz ├── SessionAllLayers │ ├── t10k-images-idx3-ubyte.gz │ ├── t10k-labels-idx1-ubyte.gz │ ├── train-images-idx3-ubyte.gz │ └── train-labels-idx1-ubyte.gz └── SessionL7 │ ├── t10k-images-idx3-ubyte.gz │ ├── t10k-labels-idx1-ubyte.gz │ ├── train-images-idx3-ubyte.gz │ └── train-labels-idx1-ubyte.gz └── 6class ├── NovpnFlowAllLayers ├── t10k-images-idx3-ubyte.gz ├── t10k-labels-idx1-ubyte.gz ├── train-images-idx3-ubyte.gz └── train-labels-idx1-ubyte.gz ├── NovpnFlowL7 ├── t10k-images-idx3-ubyte.gz ├── t10k-labels-idx1-ubyte.gz ├── train-images-idx3-ubyte.gz └── train-labels-idx1-ubyte.gz ├── NovpnSessionAllLayers ├── t10k-images-idx3-ubyte.gz ├── t10k-labels-idx1-ubyte.gz ├── train-images-idx3-ubyte.gz └── train-labels-idx1-ubyte.gz ├── NovpnSessionL7 ├── t10k-images-idx3-ubyte.gz ├── t10k-labels-idx1-ubyte.gz ├── train-images-idx3-ubyte.gz └── train-labels-idx1-ubyte.gz ├── VpnFlowAllLayers ├── t10k-images-idx3-ubyte.gz ├── t10k-labels-idx1-ubyte.gz ├── train-images-idx3-ubyte.gz └── train-labels-idx1-ubyte.gz ├── VpnFlowL7 ├── t10k-images-idx3-ubyte.gz ├── t10k-labels-idx1-ubyte.gz ├── train-images-idx3-ubyte.gz └── train-labels-idx1-ubyte.gz ├── VpnSessionAllLayers ├── t10k-images-idx3-ubyte.gz ├── t10k-labels-idx1-ubyte.gz ├── train-images-idx3-ubyte.gz └── train-labels-idx1-ubyte.gz └── VpnSessionL7 ├── t10k-images-idx3-ubyte.gz ├── t10k-labels-idx1-ubyte.gz ├── train-images-idx3-ubyte.gz └── train-labels-idx1-ubyte.gz /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/1DCNN.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/.idea/1DCNN.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /1d_cnn/__pycache__/data.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/1d_cnn/__pycache__/data.cpython-36.pyc -------------------------------------------------------------------------------- /1d_cnn/__pycache__/data.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/1d_cnn/__pycache__/data.cpython-37.pyc -------------------------------------------------------------------------------- /1d_cnn/__pycache__/model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/1d_cnn/__pycache__/model.cpython-36.pyc -------------------------------------------------------------------------------- /1d_cnn/__pycache__/model.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/1d_cnn/__pycache__/model.cpython-37.pyc -------------------------------------------------------------------------------- /1d_cnn/cnn_1d_tensorflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/1d_cnn/cnn_1d_tensorflow.py -------------------------------------------------------------------------------- /1d_cnn/cnn_1d_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/1d_cnn/cnn_1d_torch.py -------------------------------------------------------------------------------- /1d_cnn/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/1d_cnn/data.py -------------------------------------------------------------------------------- /1d_cnn/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/1d_cnn/model.py -------------------------------------------------------------------------------- /1d_cnn/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/1d_cnn/test_data.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/README.md -------------------------------------------------------------------------------- /data/12class/FlowAllLayers/MNIST/processed/test.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/12class/FlowAllLayers/MNIST/processed/test.pt -------------------------------------------------------------------------------- /data/12class/FlowAllLayers/MNIST/processed/training.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/12class/FlowAllLayers/MNIST/processed/training.pt -------------------------------------------------------------------------------- /data/12class/FlowAllLayers/MNIST/raw/t10k-images-idx3-ubyte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/12class/FlowAllLayers/MNIST/raw/t10k-images-idx3-ubyte -------------------------------------------------------------------------------- /data/12class/FlowAllLayers/MNIST/raw/t10k-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/12class/FlowAllLayers/MNIST/raw/t10k-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/12class/FlowAllLayers/MNIST/raw/t10k-labels-idx1-ubyte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/12class/FlowAllLayers/MNIST/raw/t10k-labels-idx1-ubyte -------------------------------------------------------------------------------- /data/12class/FlowAllLayers/MNIST/raw/t10k-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/12class/FlowAllLayers/MNIST/raw/t10k-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /data/12class/FlowAllLayers/MNIST/raw/train-images-idx3-ubyte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/12class/FlowAllLayers/MNIST/raw/train-images-idx3-ubyte -------------------------------------------------------------------------------- /data/12class/FlowAllLayers/MNIST/raw/train-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/12class/FlowAllLayers/MNIST/raw/train-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/12class/FlowAllLayers/MNIST/raw/train-labels-idx1-ubyte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/12class/FlowAllLayers/MNIST/raw/train-labels-idx1-ubyte -------------------------------------------------------------------------------- /data/12class/FlowAllLayers/MNIST/raw/train-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/12class/FlowAllLayers/MNIST/raw/train-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /data/12class/FlowAllLayers/t10k-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/12class/FlowAllLayers/t10k-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/12class/FlowAllLayers/t10k-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/12class/FlowAllLayers/t10k-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /data/12class/FlowAllLayers/test-images-idx3-ubyte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/12class/FlowAllLayers/test-images-idx3-ubyte -------------------------------------------------------------------------------- /data/12class/FlowAllLayers/test-labels-idx1-ubyte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/12class/FlowAllLayers/test-labels-idx1-ubyte -------------------------------------------------------------------------------- /data/12class/FlowAllLayers/train-images-idx3-ubyte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/12class/FlowAllLayers/train-images-idx3-ubyte -------------------------------------------------------------------------------- /data/12class/FlowAllLayers/train-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/12class/FlowAllLayers/train-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/12class/FlowAllLayers/train-labels-idx1-ubyte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/12class/FlowAllLayers/train-labels-idx1-ubyte -------------------------------------------------------------------------------- /data/12class/FlowAllLayers/train-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/12class/FlowAllLayers/train-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /data/12class/FlowL7/t10k-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/12class/FlowL7/t10k-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/12class/FlowL7/t10k-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/12class/FlowL7/t10k-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /data/12class/FlowL7/train-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/12class/FlowL7/train-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/12class/FlowL7/train-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/12class/FlowL7/train-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /data/12class/SessionAllLayers/t10k-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/12class/SessionAllLayers/t10k-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/12class/SessionAllLayers/t10k-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/12class/SessionAllLayers/t10k-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /data/12class/SessionAllLayers/train-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/12class/SessionAllLayers/train-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/12class/SessionAllLayers/train-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/12class/SessionAllLayers/train-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /data/12class/SessionL7/t10k-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/12class/SessionL7/t10k-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/12class/SessionL7/t10k-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/12class/SessionL7/t10k-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /data/12class/SessionL7/train-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/12class/SessionL7/train-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/12class/SessionL7/train-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/12class/SessionL7/train-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /data/12class/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/12class/convert.py -------------------------------------------------------------------------------- /data/2class/FlowAllLayers/t10k-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/2class/FlowAllLayers/t10k-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/2class/FlowAllLayers/t10k-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/2class/FlowAllLayers/t10k-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /data/2class/FlowAllLayers/train-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/2class/FlowAllLayers/train-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/2class/FlowAllLayers/train-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/2class/FlowAllLayers/train-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /data/2class/FlowL7/t10k-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/2class/FlowL7/t10k-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/2class/FlowL7/t10k-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/2class/FlowL7/t10k-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /data/2class/FlowL7/train-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/2class/FlowL7/train-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/2class/FlowL7/train-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/2class/FlowL7/train-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /data/2class/SessionAllLayers/t10k-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/2class/SessionAllLayers/t10k-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/2class/SessionAllLayers/t10k-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/2class/SessionAllLayers/t10k-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /data/2class/SessionAllLayers/train-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/2class/SessionAllLayers/train-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/2class/SessionAllLayers/train-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/2class/SessionAllLayers/train-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /data/2class/SessionL7/t10k-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/2class/SessionL7/t10k-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/2class/SessionL7/t10k-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/2class/SessionL7/t10k-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /data/2class/SessionL7/train-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/2class/SessionL7/train-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/2class/SessionL7/train-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/2class/SessionL7/train-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /data/6class/NovpnFlowAllLayers/t10k-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/6class/NovpnFlowAllLayers/t10k-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/6class/NovpnFlowAllLayers/t10k-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/6class/NovpnFlowAllLayers/t10k-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /data/6class/NovpnFlowAllLayers/train-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/6class/NovpnFlowAllLayers/train-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/6class/NovpnFlowAllLayers/train-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/6class/NovpnFlowAllLayers/train-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /data/6class/NovpnFlowL7/t10k-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/6class/NovpnFlowL7/t10k-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/6class/NovpnFlowL7/t10k-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/6class/NovpnFlowL7/t10k-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /data/6class/NovpnFlowL7/train-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/6class/NovpnFlowL7/train-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/6class/NovpnFlowL7/train-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/6class/NovpnFlowL7/train-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /data/6class/NovpnSessionAllLayers/t10k-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/6class/NovpnSessionAllLayers/t10k-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/6class/NovpnSessionAllLayers/t10k-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/6class/NovpnSessionAllLayers/t10k-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /data/6class/NovpnSessionAllLayers/train-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/6class/NovpnSessionAllLayers/train-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/6class/NovpnSessionAllLayers/train-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/6class/NovpnSessionAllLayers/train-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /data/6class/NovpnSessionL7/t10k-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/6class/NovpnSessionL7/t10k-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/6class/NovpnSessionL7/t10k-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/6class/NovpnSessionL7/t10k-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /data/6class/NovpnSessionL7/train-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/6class/NovpnSessionL7/train-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/6class/NovpnSessionL7/train-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/6class/NovpnSessionL7/train-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /data/6class/VpnFlowAllLayers/t10k-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/6class/VpnFlowAllLayers/t10k-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/6class/VpnFlowAllLayers/t10k-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/6class/VpnFlowAllLayers/t10k-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /data/6class/VpnFlowAllLayers/train-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/6class/VpnFlowAllLayers/train-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/6class/VpnFlowAllLayers/train-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/6class/VpnFlowAllLayers/train-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /data/6class/VpnFlowL7/t10k-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/6class/VpnFlowL7/t10k-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/6class/VpnFlowL7/t10k-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/6class/VpnFlowL7/t10k-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /data/6class/VpnFlowL7/train-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/6class/VpnFlowL7/train-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/6class/VpnFlowL7/train-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/6class/VpnFlowL7/train-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /data/6class/VpnSessionAllLayers/t10k-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/6class/VpnSessionAllLayers/t10k-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/6class/VpnSessionAllLayers/t10k-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/6class/VpnSessionAllLayers/t10k-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /data/6class/VpnSessionAllLayers/train-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/6class/VpnSessionAllLayers/train-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/6class/VpnSessionAllLayers/train-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/6class/VpnSessionAllLayers/train-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /data/6class/VpnSessionL7/t10k-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/6class/VpnSessionL7/t10k-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/6class/VpnSessionL7/t10k-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/6class/VpnSessionL7/t10k-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /data/6class/VpnSessionL7/train-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/6class/VpnSessionL7/train-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/6class/VpnSessionL7/train-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lulu-cloud/Pytorch-Encrypted-Traffic-Classification-with-1D_CNN/HEAD/data/6class/VpnSessionL7/train-labels-idx1-ubyte.gz --------------------------------------------------------------------------------