Coder Social home page Coder Social logo

autofeat's Introduction

R build status Codecov test coverage Travis build status

Scalable Automatic Feature Engineering with autofeat package

Generate automatically new features based on older ones for further modelling, using SAFE algoritm proposed in a paper by Shi, Zhang, Li, Yang and Zhou. This is a direct implementation of the pseudo-algoritm proposed in the paper, with its conventions, denotements and flaws.

Install

# install.packages("remotes")
remotes::install_github("MrDomani/autofeat")

autofeat's People

Contributors

mrdomani avatar

Stargazers

DanielMao avatar  avatar icelander029 avatar Jeremy Ma avatar Quanttrophic avatar

Watchers

James Cloos avatar  avatar

autofeat's Issues

Does this package have a data leakage problem?

Hi! I'm interested in this package, and want to use this package for my project. However, it seems that this package uses both training set and testing set during the feature construction process. Won't this result in an over-fitting problem?

Error: ! Arguments in `...` must be passed by position, not name.

set.seed(1)
X <- matrix(rnorm(2000),ncol = 5)
colnames(X) <- paste0("V",1:ncol(X))

Y <- sample(0:1,size = nrow(X),replace = T) |> as.factor()

tr <- 1:200
ts <- 201:nrow(X)

library(autofeat)
s <- SAFE(X_train = X[tr,],
          y_train = Y[tr],
          X_valid = X[ts,],
          y_valid = Y[ts])
Error:
! Arguments in `...` must be passed by position, not name.
x Problematic arguments:
* V2 = <fct>
* V3 = <fct>
Run `rlang::last_trace()` to see where the error occurred.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.