-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgcloud_scripts.sh
53 lines (47 loc) · 2.16 KB
/
gcloud_scripts.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
# This experiment scripts need a Google Cloud cluster running Google Cloud
# Dataproc. The data sets are stored in a bucket named "experiments". And an
# experimenter library has been developed containing Approx-SMOTE and the
# "experimenter.scala" provided in this folder, which comes with the
# ClassificationExperimentLauncher.
# SUSY IR4
gcloud dataproc jobs submit spark \
--cluster asmote --region europe-west4 \
--class org.ubu.admirable.exec.ClassificationExperimentLauncher \
--jars gs://experiments/experimenter.jar \
-- gs://experiments/datasets/susy_ir4_nonorm.libsvm \
gs://experiments/results/susy_ir4/
# SUSY IR16
gcloud dataproc jobs submit spark \
--cluster asmote --region europe-west4 \
--class org.ubu.admirable.exec.ClassificationExperimentLauncher \
--jars gs://experiments/experimenter.jar \
-- gs://experiments/datasets/susy_ir16_nonorm.libsvm \
gs://experiments/results/susy_ir16/
# HIGGS IR4
gcloud dataproc jobs submit spark \
--cluster asmote --region europe-west4 \
--class org.ubu.admirable.exec.ClassificationExperimentLauncher \
--jars gs://experiments/experimenter.jar \
-- gs://experiments/datasets/higgs_ir4_nonorm.libsvm \
gs://experiments/results/higgs_ir4/
# HIGGS IR16
gcloud dataproc jobs submit spark \
--cluster asmote --region europe-west4 \
--class org.ubu.admirable.exec.ClassificationExperimentLauncher \
--jars gs://experiments/experimenter.jar \
-- gs://experiments/datasets/higgs_ir16_nonorm.libsvm \
gs://experiments/results/higgs_ir16/
# HEPMASS IR4
gcloud dataproc jobs submit spark \
--cluster asmote --region europe-west4 \
--class org.ubu.admirable.exec.ClassificationExperimentLauncher \
--jars gs://experiments/experimenter.jar \
-- gs://experiments/datasets/hepmass_ir4_nonorm.libsvm \
gs://experiments/results/hepmass_ir4/
# HEPMASS IR16
gcloud dataproc jobs submit spark \
--cluster asmote --region europe-west4 \
--class org.ubu.admirable.exec.ClassificationExperimentLauncher \
--jars gs://experiments/experimenter.jar \
-- gs://experiments/datasets/hepmass_ir16_nonorm.libsvm \
gs://experiments/results/hepmass_ir16/