Esempio n. 1
0
def data_profile(path_data_train="", path_model="", n_sample=5000):
    from source.run_feature_profile import run_profile
    run_profile(
        path_data=path_data_train,
        path_output=path_model + "/profile/",
        n_sample=n_sample,
    )
Esempio n. 2
0
def data_profile(path_data="", path_output="", n_sample=284):
    from source.run_feature_profile import run_profile
    run_profile(
        path_data=path_data,
        path_output=path_output + "/profile/",
        n_sample=n_sample,
    )
Esempio n. 3
0
def data_profile(path_data="NO PATH", path_output="NO PATH@", n_sample=5000):
    from source.run_feature_profile import run_profile
    run_profile(
        path_data=path_data,
        path_output=path_output + "/profile/",
        n_sample=n_sample,
    )
Esempio n. 4
0
def data_profile2(config=''):
    """
    :param config:
    :return:
    """
    config_uri, config_name = get_config_path(config)
    from source.run_feature_profile import run_profile
    mdict = get_global_pars( config_uri)
    m     = mdict['global_pars']
    log(mdict)

    run_profile(path_data   = m['path_data_train'],
               path_output  = m['path_model'] + "/profile/",  
               n_sample     = 5000,
              )