-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
50 lines (42 loc) · 1.87 KB
/
main.py
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
import sys
from pathlib import Path
# Importing the configurations and experiments modules
# 'configs' provides utilities to parse program arguments
# 'experiments' contains implementations for various dataset-specific experiments
import configs
from LaFA.experiments import experiments
# Parse command-line arguments using the 'arg_parse' function from configs
prog_args = configs.arg_parse()
# Check if the dataset argument is provided and process accordingly
if prog_args.dataset is not None:
# If the dataset is "MNIST", run the MNIST-specific NMF experiment
if prog_args.dataset == "MNIST":
print("NMF on MNIST dataset")
# Dynamically select and execute the corresponding experiment
task = "experiments.mnist_exp"
eval(task)(prog_args)
# If the dataset is "Face", run the Face dataset NMF experiment
elif prog_args.dataset == "Face":
print("NMF on Face dataset")
task = "experiments.face_exp"
eval(task)(prog_args)
# If the dataset is "FaceDev", run the development version of the Face dataset experiment
elif prog_args.dataset == "FaceDev":
print("NMF on Face-dev dataset")
task = "experiments.face_exp_dev"
eval(task)(prog_args)
# If the dataset is "WTSI", run the WTSI dataset experiment
elif prog_args.dataset == "WTSI":
print("NMF on WTSI dataset")
task = "experiments.wtsi_exp"
eval(task)(prog_args)
# If the dataset is "swim", run the Swimmer dataset experiment
elif prog_args.dataset == "swim":
print("NMF on Swimmer dataset")
task = "experiments.swim_exp"
eval(task)(prog_args)
# If no specific dataset is matched, default to the synthetic (Gaussian) dataset experiment
else:
print("NMF on synthetic (Gaussian) dataset")
task = "experiments.syn_exp"
eval(task)(prog_args)