parser.add_argument("--dataset","-ds",required=True,help="Dataset. One of: boston, iris, rings.")
# architecture
parser.add_argument("--depths","-d",type=lambdas:[int(i)foriins.split(",")],default="0",help="List of depths (number of hidden layers) of the NNGP components in comma-separated format.")
parser.add_argument("--widths","-w",type=lambdas:[int(i)foriins.split(",")],default="",help="List of bottleneck widths in comma-separated format.")
parser.add_argument("--widths","-w",type=lambdas:[int(i)foriins.split(",")],default="",help="List of bottleneck widths in comma-separated format. A width of 0 will be interpreted as infinity.")
# initial variance hyperparameters
parser.add_argument('--vb','-vb',default=1.0,type=float,help="Initial value of hyperparameter v_b.")
parser.add_argument('--vw','-vw',default=1.0,type=float,help="Initial value of hyperparameter v_w.")