ja-thomas / autoxgboost

autoxgboost - Automatic tuning and fitting of xgboost
Other
122 stars 19 forks source link

API for passing Feature information #48

Closed ja-thomas closed 6 years ago

ja-thomas commented 6 years ago

We can do a lot of feature engineering (See #42) but we need a nice way to let the user pass the required information.

A list of lists might be to complicated

feature.sets = list(
   categ.sets = list(
      c("feat1", "feat7"),
      ....
   )
  timestamps = list(
     c("feat6")
   )
)
ja-thomas commented 6 years ago

Maybe a better idea is to add feature information to tasks and query them in autoxgboost

ja-thomas commented 6 years ago

postponed for now