-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbaselines.sh
73 lines (55 loc) · 3.51 KB
/
baselines.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#!/bin/bash
core_counter=$1
begin=$2
end=$3
ds="LED_a"
./baselines_synth_data.sh $ds "ConceptDriftStream -s (generators.LEDGeneratorDrift -d 1 -i JJ) -d (ConceptDriftStream -s (generators.LEDGeneratorDrift -d 3 -i JJ) -d (ConceptDriftStream -s (generators.LEDGeneratorDrift -d 5 -i JJ) -d (generators.LEDGeneratorDrift -d 7 -i JJ) -w 50 -p 250000) -w 50 -p 250000) -w 50 -p 250000" ${core_counter} $begin $end &
((core_counter=core_counter+1))
ds="LED_g"
./baselines_synth_data.sh $ds "ConceptDriftStream -s (generators.LEDGeneratorDrift -d 1 -i JJ) -d (ConceptDriftStream -s (generators.LEDGeneratorDrift -d 3 -i JJ) -d (ConceptDriftStream -s (generators.LEDGeneratorDrift -d 5 -i JJ) -d (generators.LEDGeneratorDrift -d 7 -i JJ) -w 50000 -p 250000) -w 50000 -p 250000) -w 50000 -p 250000" ${core_counter} $begin $end &
((core_counter=core_counter+1))
ds="LED"
./baselines_synth_data.sh $ds "generators.LEDGenerator -i JJ" ${core_counter} $begin $end &
((core_counter=core_counter+1))
ds="AGR_a"
./baselines_synth_data.sh $ds "ConceptDriftStream -s (generators.AgrawalGenerator -f 1 -i JJ) -d (ConceptDriftStream -s (generators.AgrawalGenerator -f 2 -i JJ) -d (ConceptDriftStream -s (generators.AgrawalGenerator -f 3 -i JJ) -d (generators.AgrawalGenerator -f 4 -i JJ) -w 50 -p 250000) -w 50 -p 250000) -w 50 -p 250000" ${core_counter} $begin $end &
((core_counter=core_counter+1))
ds="AGR_g"
./baselines_synth_data.sh $ds "ConceptDriftStream -s (generators.AgrawalGenerator -f 1 -i JJ) -d (ConceptDriftStream -s (generators.AgrawalGenerator -f 2 -i JJ) -d (ConceptDriftStream -s (generators.AgrawalGenerator -f 3 -i JJ) -d (generators.AgrawalGenerator -f 4 -i JJ) -w 50000 -p 250000) -w 50000 -p 250000) -w 50000 -p 250000" ${core_counter} $begin $end &
((core_counter=core_counter+1))
ds="AGR"
./baselines_synth_data.sh $ds "generators.AgrawalGenerator -i JJ" ${core_counter} $begin $end &
((core_counter=core_counter+1))
ds="RBF"
./baselines_synth_data.sh $ds "generators.RandomRBFGenerator -r JJ" ${core_counter} $begin $end &
((core_counter=core_counter+1))
ds="RBF_s"
./baselines_synth_data.sh $ds "generators.RandomRBFGeneratorDrift -s .00001 -i JJ" ${core_counter} $begin $end &
((core_counter=core_counter+1))
ds="RBF_m"
./baselines_synth_data.sh $ds "generators.RandomRBFGeneratorDrift -s .0001 -i JJ" ${core_counter} $begin $end &
((core_counter=core_counter+1))
ds="RBF_f"
./baselines_synth_data.sh $ds "generators.RandomRBFGeneratorDrift -s .001 -i JJ" ${core_counter} $begin $end &
((core_counter=core_counter+1))
ds="HPlane"
./baselines_synth_data.sh $ds "generators.HyperplaneGenerator -i JJ -k 0" ${core_counter} $begin $end &
((core_counter=core_counter+1))
ds="HPlane_s"
./baselines_synth_data.sh $ds "generators.HyperplaneGenerator -i JJ -t .00001" ${core_counter} $begin $end &
((core_counter=core_counter+1))
ds="HPlane_m"
./baselines_synth_data.sh $ds "generators.HyperplaneGenerator -i JJ -t .0001" ${core_counter} $begin $end &
((core_counter=core_counter+1))
ds="HPlane_f"
./baselines_synth_data.sh $ds "generators.HyperplaneGenerator -i JJ -t .001" ${core_counter} $begin $end &
((core_counter=core_counter+1))
ds="Wave"
./baselines_synth_data.sh $ds "generators.WaveformGenerator -i JJ" ${core_counter} $begin $end &
((core_counter=core_counter+1))
ds="Wform_d5n"
./baselines_synth_data.sh $ds "generators.WaveformGeneratorDrift -d 5 -i JJ -n" ${core_counter} $begin $end &
((core_counter=core_counter+1))
ds="RTG"
./baselines_synth_data.sh $ds "generators.RandomTreeGenerator -i JJ" ${core_counter} $begin $end &
((core_counter=core_counter+1))