Skip to content

Commit

Permalink
added script to run experiments for noisy kddcup dataset
Browse files Browse the repository at this point in the history
  • Loading branch information
chr-peters committed Jun 8, 2021
1 parent cfe9d54 commit 61b2e86
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions scripts/run_experiments_kddcup_noisy.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
from sketching.datasets import KDDCup_Sklearn, NoisyDataset
from sketching.utils import run_experiments

MIN_SIZE = 1000
MAX_SIZE = 30000
STEP_SIZE = 1000
NUM_RUNS = 21

dataset_noisy = NoisyDataset(dataset=KDDCup_Sklearn(), percentage=0.01, std=10)

run_experiments(
dataset=dataset_noisy,
min_size=MIN_SIZE,
max_size=MAX_SIZE,
step_size=STEP_SIZE,
num_runs=NUM_RUNS,
)

0 comments on commit 61b2e86

Please sign in to comment.