Exemplo n.º 1
0
def synthetic_step_transfer_configs():
    c = configs_lib.DataProcessingConfigs()
    c.is_regression = True
    return c
Exemplo n.º 2
0
def boston_housing_configs():
    c = configs_lib.DataProcessingConfigs()
    c.is_regression = True
    return c
Exemplo n.º 3
0
def ng_configs():
    c = configs_lib.DataProcessingConfigs()
    c.is_regression = False
    return c
Exemplo n.º 4
0
def synthetic_classification_configs():
    c = configs_lib.DataProcessingConfigs()
    c.is_regression = False
    return c
Exemplo n.º 5
0
def hypothesis_transfer_configs(source_ids):
    c = configs_lib.DataProcessingConfigs()
    c.is_regression = False
    c.split_data_set_ids = np.zeros(1)
    c.data_set_ids_to_keep = np.asarray(source_ids)
    return c
Exemplo n.º 6
0
def regression_configs():
    c = configs_lib.DataProcessingConfigs()
    c.is_regression = True
    return c