Read data from memory in Vowpal Wabbit?

前端 未结 3 2070
别那么骄傲
别那么骄傲 2021-02-10 00:50

Is there a way to send data to train a model in Vowpal Wabbit without writing it to disk?

Here\'s what I\'m trying to do. I have a relatively large dataset in csv (aroun

3条回答
  •  天命终不由人
    2021-02-10 01:22

    I am also using R to transform data and output them to VowpalWabbit. There exists RVowpalWabbit package on CRAN which can be used to connect R with VowpalWabbit. However, it is only available on Linux.

    Also, to speed things up, I use fread function of data.table package. Transformations of data.table are also quicker than in data.frame, but one needs to learn a different syntax.

提交回复
热议问题