You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
rodrigocostacamargos
changed the title
recognize_features_type in util.py must recognize int32 and int 64
recognize_features_type in util.py must recognize int32 and int64
Feb 23, 2024
def recognize_features_type(df, class_name):
int_types = ['int64', 'int32'] # rodrigo
integer_features = list(df.select_dtypes(include=int_types).columns)
# integer_features = list(df.select_dtypes(include=['int64']).columns)
double_features = list(df.select_dtypes(include=['float64']).columns)
string_features = list(df.select_dtypes(include=['object']).columns)
type_features = {
'integer': integer_features,
'double': double_features,
'string': string_features,
}
The text was updated successfully, but these errors were encountered: