Skip to content

hoozoi/Packet-Based-Website-Fingerprinting

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

79 Commits
 
 
 
 
 
 
 
 

Repository files navigation

🤖 How to Run

This is the method for running it in the Colab environment.

  1. Download the preprocessed necessary datasets from datasets directory.

  2. Upload the files to be used in the root directory of Google Drive.

  3. Mount Google Drive in Google Colab.

    from google.colab import drive
    drive.mount('/gdrive', force_remount=True)
  4. Retrieve a CSV file from Google Drive and split it into X and y values.

    import pandas as pd
    
    data = pd.read_csv('/gdrive/MyDrive/{file_name}')
    
    X = data.iloc[:, :-1]
    y = data.iloc[:, -1]
  5. Proceed with the experiment by executing the given code in sequence. Run the code

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors