utilities/Utils.py [74:87]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    feature_definitions = []

    for col, col_type in zip(df.columns, df.dtypes):
        feature = {'FeatureName': col}
        
        if col_type == 'float64':
            feature['FeatureType'] = 'Fractional'
        elif col_type == 'int64':
            feature['FeatureType'] = 'Integral'
        else:
            feature['FeatureType'] = 'String'
        
        feature_definitions.append(feature)    
    return feature_definitions
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



utilities/feature_store_helper.py [677:690]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        feature_definitions = []

        for col, col_type in zip(df.columns, df.dtypes):
            feature = {'FeatureName': col}

            if col_type == 'float64':
                feature['FeatureType'] = 'Fractional'
            elif col_type == 'int64':
                feature['FeatureType'] = 'Integral'
            else:
                feature['FeatureType'] = 'String'

            feature_definitions.append(feature)    
        return feature_definitions
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



