我正在尝试实现一个非常简单的ML学习问题,我使用文本来预测某些结果。在R中,一些基本的例子是:
导入一些虚假但有趣的文本数据
library(caret)
library(dplyr)
library(text2vec)
dataframe <- data_frame(id = c(1,2,3,4),
text = c("this is a this", "this is
another",'hello','what???'),
value = c(200,400,120,300),
output = c('win', 'lose','win','lose'))
> dataframe
# A tibble: 4 x 4
id text value output
<dbl> <chr> <dbl> <chr>
1 1 this is a this 200 win
2 2 this is another 400 lose
3 3 hello 120 win
4 4 what??? 300 lose
使用text2vec
获取文字的稀疏矩阵表示(另请参阅https://github.com/dselivanov/text2vec/blob/master/vignettes/text-vectorization.Rmd)
#these are text2vec functions to tokenize and lowercase the text
prep_fun = tolower
tok_fun = word_tokenizer
#create the tokens
train_tokens = dataframe$text %>%
prep_fun %>%
tok_fun
it_train = itoken(train_tokens)
vocab = create_vocabulary(it_train)
vectorizer = vocab_vectorizer(vocab)
dtm_train = create_dtm(it_train, vectorizer)
> dtm_train
4 x 6 sparse Matrix of class "dgCMatrix"
what hello another a is this
1 . . . 1 1 2
2 . . 1 . 1 1
3 . 1 . . . .
4 1 . . . . .
最后,训练算法(例如,使用caret
)使用我的稀疏矩阵预测output
。
mymodel <- train(x=dtm_train, y =dataframe$output, method="xgbTree")
> confusionMatrix(mymodel)
Bootstrapped (25 reps) Confusion Matrix
(entries are percentual average cell counts across resamples)
Reference
Prediction lose win
lose 17.6 44.1
win 29.4 8.8
Accuracy (average) : 0.264
我的问题是:
我了解如何使用h20
,spark_read_csv
和rsparkling
将数据导入as_h2o_frame
。
但是,对于上面的第2点和第3点,我完全迷失了。
有人可以给我一些提示或告诉我,h2o
是否可以采用这种方法吗?
非常感谢!!
答案 0 :(得分:1)
你可以用以下两种方法中的一种来解决这个问题 - 1.先在R中然后转移到H2O进行建模,或者2.完全在H2O中使用H2O的word2vec实现。
使用R data.frames和 text2vec ,然后将稀疏矩阵转换为H2O帧并在H2O中进行建模。
# Use same code as above to get to this point, then:
# Convert dgCMatrix to H2OFrame, cbind the response col
train <- as.h2o(dtm_train)
train$y <- as.h2o(dataframe$output)
# Train any H2O model (e.g GBM)
mymodel <- h2o.gbm(y = "y", training_frame = train,
distribution = "bernoulli", seed = 1)
或者您可以在H2O中训练word2vec嵌入,将其应用于您的文本以获得稀疏矩阵的等效值。然后训练一个H2O机器学习模型 (GBM)。我稍后会尝试使用您的数据编写一个工作示例来编辑此答案,但与此同时,这里有example演示在R中使用H2O的word2vec功能。